From: Michael Vogt Date: Thu, 10 Jul 2014 18:53:20 +0000 (+0200) Subject: Merge remote-tracking branch 'mvo/feature/README' into debian/sid X-Git-Tag: 1.0.7~19 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/67c160fb95359506bca3e2899ea4851abdb157c4?hp=c4d749b78a46e69887ec9662851f180e587f2d34 Merge remote-tracking branch 'mvo/feature/README' into debian/sid --- diff --git a/COMPILING b/COMPILING index 1076c6366..93e628037 100644 --- a/COMPILING +++ b/COMPILING @@ -53,7 +53,7 @@ Debian GNU Linux 'potato' Debian GNU Linux 'woody' * All Archs - Works flawlessly - - You will want to have debiandoc-sgml and docbook2man installed to get + - You will want to have docbook-xml and docbook2man installed to get best results. - No IPv6 Support in glibc's < 2.1. diff --git a/Makefile b/Makefile index 394149bf1..6e1edbd5f 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ endif default: startup all .PHONY: headers library clean veryclean all binary program doc test update-po -all headers library clean veryclean binary program doc manpages debiandoc test update-po startup dirs: +all headers library clean veryclean binary program doc manpages docbook test update-po startup dirs: $(MAKE) -C vendor $@ $(MAKE) -C apt-pkg $@ $(MAKE) -C apt-inst $@ @@ -23,7 +23,7 @@ all headers library clean veryclean binary program doc manpages debiandoc test u $(MAKE) -C po $@ $(MAKE) -C test $@ -all headers library clean veryclean binary program doc manpages debiandoc test update-po: startup dirs +all headers library clean veryclean binary program doc manpages docbook test update-po: startup dirs dirs: startup diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 0178456a8..0911d11b7 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -932,8 +932,6 @@ pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, } CompressionExtension = comprExt; - Verify = true; - Init(URI, URIDesc, ShortDesc); } pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, IndexTarget const *Target, @@ -957,13 +955,6 @@ pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, IndexTarget const *Target, if (CompressionExtension.empty() == false) CompressionExtension.erase(CompressionExtension.end()-1); - // only verify non-optional targets, see acquire-item.h for a FIXME - // to make this more flexible - if (Target->IsOptional()) - Verify = false; - else - Verify = true; - Init(Target->URI, Target->Description, Target->ShortDesc); } /*}}}*/ @@ -1056,23 +1047,24 @@ void pkgAcqIndex::Done(string Message,unsigned long long Size,string Hash, return; } - /* Verify the index file for correctness (all indexes must - * have a Package field) (LP: #346386) (Closes: #627642) */ - if (Verify == true) + // FIXME: this can go away once we only ever download stuff that + // has a valid hash and we never do GET based probing + // + /* Always verify the index file for correctness (all indexes must + * have a Package field) (LP: #346386) (Closes: #627642) + */ + FileFd fd(DestFile, FileFd::ReadOnly); + // Only test for correctness if the file is not empty (empty is ok) + if (fd.FileSize() > 0) { - FileFd fd(DestFile, FileFd::ReadOnly); - // Only test for correctness if the file is not empty (empty is ok) - if (fd.FileSize() > 0) - { - pkgTagSection sec; - pkgTagFile tag(&fd); - - // all our current indexes have a field 'Package' in each section - if (_error->PendingError() == true || tag.Step(sec) == false || sec.Exists("Package") == false) - { - RenameOnError(InvalidFormat); - return; - } + pkgTagSection sec; + pkgTagFile tag(&fd); + + // all our current indexes have a field 'Package' in each section + if (_error->PendingError() == true || tag.Step(sec) == false || sec.Exists("Package") == false) + { + RenameOnError(InvalidFormat); + return; } } diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index f48d2a0d7..06537bf2c 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -685,15 +685,8 @@ class pkgAcqIndex : public pkgAcquire::Item */ bool Erase; - /** \brief Verify for correctness by checking if a "Package" - * tag is found in the index. This can be set to - * false for optional index targets - * - */ - // FIXME: instead of a bool it should use a verify string that will - // then be used in the pkgAcqIndex::Done method to ensure that - // the downloaded file contains the expected tag - bool Verify; + // Unused, used to be used to verify that "Packages: " header was there + bool __DELME_ON_NEXT_ABI_BREAK_Verify; /** \brief The download request that is currently being * processed. diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index a187a00ae..057bc24cd 100644 --- a/apt-pkg/acquire.cc +++ b/apt-pkg/acquire.cc @@ -486,6 +486,9 @@ bool pkgAcquire::Clean(string Dir) if (DirectoryExists(Dir) == false) return true; + if(Dir == "/") + return _error->Error(_("Clean of %s is not supported"), Dir.c_str()); + DIR *D = opendir(Dir.c_str()); if (D == 0) return _error->Errno("opendir",_("Unable to read %s"),Dir.c_str()); diff --git a/apt-pkg/clean.cc b/apt-pkg/clean.cc index 0ee3b765d..37128e9aa 100644 --- a/apt-pkg/clean.cc +++ b/apt-pkg/clean.cc @@ -34,7 +34,10 @@ bool pkgArchiveCleaner::Go(std::string Dir,pkgCache &Cache) { bool CleanInstalled = _config->FindB("APT::Clean-Installed",true); - + + if(Dir == "/") + return _error->Error(_("Clean of %s is not supported"), Dir.c_str()); + DIR *D = opendir(Dir.c_str()); if (D == 0) return _error->Errno("opendir",_("Unable to read %s"),Dir.c_str()); diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index 2100ee47b..ce69c7a02 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -434,23 +434,30 @@ string TimeToStr(unsigned long Sec) /* This replaces all occurrences of Subst with Contents in Str. */ string SubstVar(const string &Str,const string &Subst,const string &Contents) { + if (Subst.empty() == true) + return Str; + string::size_type Pos = 0; string::size_type OldPos = 0; string Temp; - - while (OldPos < Str.length() && + + while (OldPos < Str.length() && (Pos = Str.find(Subst,OldPos)) != string::npos) { - Temp += string(Str,OldPos,Pos) + Contents; - OldPos = Pos + Subst.length(); + if (OldPos != Pos) + Temp.append(Str, OldPos, Pos - OldPos); + if (Contents.empty() == false) + Temp.append(Contents); + OldPos = Pos + Subst.length(); } - + if (OldPos == 0) return Str; - + + if (OldPos >= Str.length()) + return Temp; return Temp + string(Str,OldPos); } - string SubstVar(string Str,const struct SubstVar *Vars) { for (; Vars->Subst != 0; Vars++) diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index a1bcfb710..02b9cb239 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -145,7 +145,8 @@ unsigned char debListParser::ParseMultiArch(bool const showErrors) /*{{{*/ bool debListParser::NewVersion(pkgCache::VerIterator &Ver) { // Parse the section - Ver->Section = UniqFindTagWrite("Section"); + unsigned long const idxSection = UniqFindTagWrite("Section"); + Ver->Section = idxSection; Ver->MultiArch = ParseMultiArch(true); // Archive Size Ver->Size = Section.FindULL("Size"); @@ -260,7 +261,10 @@ bool debListParser::UsePackage(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver) { if (Pkg->Section == 0) - Pkg->Section = UniqFindTagWrite("Section"); + { + unsigned long const idxSection = UniqFindTagWrite("Section"); + Pkg->Section = idxSection; + } string const static myArch = _config->Find("APT::Architecture"); // Possible values are: "all", "native", "installed" and "none" diff --git a/apt-pkg/edsp.cc b/apt-pkg/edsp.cc index 6d1b68c23..0d0418e06 100644 --- a/apt-pkg/edsp.cc +++ b/apt-pkg/edsp.cc @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include @@ -50,7 +51,12 @@ bool EDSP::WriteScenario(pkgDepCache &Cache, FILE* output, OpProgress *Progress) if (Progress != NULL) Progress->SubProgress(Cache.Head().VersionCount, _("Send scenario to solver")); unsigned long p = 0; + std::vector archs = APT::Configuration::getArchitectures(); for (pkgCache::PkgIterator Pkg = Cache.PkgBegin(); Pkg.end() == false; ++Pkg) + { + std::string const arch = Pkg.Arch(); + if (std::find(archs.begin(), archs.end(), arch) == archs.end()) + continue; for (pkgCache::VerIterator Ver = Pkg.VersionList(); Ver.end() == false; ++Ver, ++p) { WriteScenarioVersion(Cache, output, Pkg, Ver); @@ -59,6 +65,7 @@ bool EDSP::WriteScenario(pkgDepCache &Cache, FILE* output, OpProgress *Progress) if (Progress != NULL && p % 100 == 0) Progress->Progress(p); } + } return true; } /*}}}*/ diff --git a/apt-pkg/upgrade.cc b/apt-pkg/upgrade.cc index 7926845c2..29b11937b 100644 --- a/apt-pkg/upgrade.cc +++ b/apt-pkg/upgrade.cc @@ -143,6 +143,12 @@ static bool pkgAllUpgradeNoNewPackages(pkgDepCache &Cache) */ static bool pkgAllUpgradeWithNewPackages(pkgDepCache &Cache) { + std::string const solver = _config->Find("APT::Solver", "internal"); + if (solver != "internal") { + OpTextProgress Prog(*_config); + return EDSP::ResolveExternal(solver.c_str(), Cache, true, false, false, &Prog); + } + pkgDepCache::ActionGroup group(Cache); pkgProblemResolver Fix(&Cache); diff --git a/apt-private/private-install.cc b/apt-private/private-install.cc index a365d4294..e08cd8057 100644 --- a/apt-private/private-install.cc +++ b/apt-private/private-install.cc @@ -19,6 +19,7 @@ #include #include #include +#include #include #include @@ -524,15 +525,14 @@ static bool DoAutomaticRemove(CacheFile &Cache) static const unsigned short MOD_REMOVE = 1; static const unsigned short MOD_INSTALL = 2; -bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache) +bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache, int UpgradeMode) { std::map verset; - return DoCacheManipulationFromCommandLine(CmdL, Cache, verset); + return DoCacheManipulationFromCommandLine(CmdL, Cache, verset, UpgradeMode); } bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache, - std::map &verset) + std::map &verset, int UpgradeMode) { - // Enter the special broken fixing mode if the user specified arguments bool BrokenFix = false; if (Cache->BrokenCount() != 0) @@ -617,7 +617,17 @@ bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache, if (Fix != NULL) { // Call the scored problem resolver - if (Fix->Resolve(true) == false && Cache->BrokenCount() == 0) + bool resolver_fail = false; + if (UpgradeMode == 0) + { + if (strcmp(CmdL.FileList[0], "dist-upgrade") == 0 || strcmp(CmdL.FileList[0], "full-upgrade") == 0) + resolver_fail = APT::Upgrade::Upgrade(Cache, 0); + else + resolver_fail = Fix->Resolve(true); + } else + resolver_fail = APT::Upgrade::Upgrade(Cache, UpgradeMode); + + if (resolver_fail == false && Cache->BrokenCount() == 0) return false; } @@ -676,7 +686,7 @@ bool DoInstall(CommandLine &CmdL) std::map verset; - if(!DoCacheManipulationFromCommandLine(CmdL, Cache, verset)) + if(!DoCacheManipulationFromCommandLine(CmdL, Cache, verset, 0)) return false; /* Print out a list of packages that are going to be installed extra diff --git a/apt-private/private-install.h b/apt-private/private-install.h index 828163e40..8daa4a776 100644 --- a/apt-private/private-install.h +++ b/apt-private/private-install.h @@ -21,8 +21,8 @@ class pkgProblemResolver; APT_PUBLIC bool DoInstall(CommandLine &Cmd); bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache, - std::map &verset); -bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache); + std::map &verset, int UpgradeMode); +bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache, int UpgradeMode); APT_PUBLIC bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true, bool Safety = true); diff --git a/apt-private/private-output.cc b/apt-private/private-output.cc index 8f190a551..7f8922138 100644 --- a/apt-private/private-output.cc +++ b/apt-private/private-output.cc @@ -118,7 +118,7 @@ static std::string GetFlagsStr(pkgCacheFile &CacheFile, pkgCache::PkgIterator P) std::string flags_str; if (state.NowBroken()) flags_str = "B"; - if (P.CurrentVer() && state.Upgradable()) + if (P.CurrentVer() && state.Upgradable() && state.CandidateVer != NULL) flags_str = "g"; else if (P.CurrentVer() != NULL) flags_str = "i"; @@ -229,7 +229,8 @@ void ListSingleVersion(pkgCacheFile &CacheFile, pkgRecords &records, /*{{{*/ std::string CandidateVerStr = GetCandidateVersion(CacheFile, P); std::string InstalledVerStr = GetInstalledVersion(CacheFile, P); std::string StatusStr; - if(P.CurrentVer() == V && state.Upgradable()) { + if(P.CurrentVer() == V && state.Upgradable() && state.CandidateVer != NULL) + { strprintf(StatusStr, _("[installed,upgradable to: %s]"), CandidateVerStr.c_str()); } else if (P.CurrentVer() == V) { @@ -344,129 +345,141 @@ bool ShowList(ostream &out,string Title,string List,string VersionsList) Depends: libldap2 (>= 2.0.2-2) but it is not going to be installed Depends: libsasl7 but it is not going to be installed */ -void ShowBroken(ostream &out,CacheFile &Cache,bool Now) +static void ShowBrokenPackage(ostream &out, pkgCacheFile * const Cache, pkgCache::PkgIterator const &Pkg, bool const Now) { - if (Cache->BrokenCount() == 0) + if (Now == true) + { + if ((*Cache)[Pkg].NowBroken() == false) + return; + } + else + { + if ((*Cache)[Pkg].InstBroken() == false) + return; + } + + // Print out each package and the failed dependencies + out << " " << Pkg.FullName(true) << " :"; + unsigned const Indent = Pkg.FullName(true).size() + 3; + bool First = true; + pkgCache::VerIterator Ver; + + if (Now == true) + Ver = Pkg.CurrentVer(); + else + Ver = (*Cache)[Pkg].InstVerIter(*Cache); + + if (Ver.end() == true) + { + out << endl; return; + } - out << _("The following packages have unmet dependencies:") << endl; - for (unsigned J = 0; J < Cache->Head().PackageCount; J++) + for (pkgCache::DepIterator D = Ver.DependsList(); D.end() == false;) { - pkgCache::PkgIterator I(Cache,Cache.List[J]); - + // Compute a single dependency element (glob or) + pkgCache::DepIterator Start; + pkgCache::DepIterator End; + D.GlobOr(Start,End); // advances D + + if ((*Cache)->IsImportantDep(End) == false) + continue; + if (Now == true) { - if (Cache[I].NowBroken() == false) + if (((*Cache)[End] & pkgDepCache::DepGNow) == pkgDepCache::DepGNow) continue; } else { - if (Cache[I].InstBroken() == false) + if (((*Cache)[End] & pkgDepCache::DepGInstall) == pkgDepCache::DepGInstall) continue; } - - // Print out each package and the failed dependencies - out << " " << I.FullName(true) << " :"; - unsigned const Indent = I.FullName(true).size() + 3; - bool First = true; - pkgCache::VerIterator Ver; - - if (Now == true) - Ver = I.CurrentVer(); - else - Ver = Cache[I].InstVerIter(Cache); - - if (Ver.end() == true) - { - out << endl; - continue; - } - - for (pkgCache::DepIterator D = Ver.DependsList(); D.end() == false;) + + bool FirstOr = true; + while (1) { - // Compute a single dependency element (glob or) - pkgCache::DepIterator Start; - pkgCache::DepIterator End; - D.GlobOr(Start,End); // advances D + if (First == false) + for (unsigned J = 0; J != Indent; J++) + out << ' '; + First = false; - if (Cache->IsImportantDep(End) == false) - continue; - - if (Now == true) + if (FirstOr == false) { - if ((Cache[End] & pkgDepCache::DepGNow) == pkgDepCache::DepGNow) - continue; + for (unsigned J = 0; J != strlen(End.DepType()) + 3; J++) + out << ' '; } else + out << ' ' << End.DepType() << ": "; + FirstOr = false; + + out << Start.TargetPkg().FullName(true); + + // Show a quick summary of the version requirements + if (Start.TargetVer() != 0) + out << " (" << Start.CompType() << " " << Start.TargetVer() << ")"; + + /* Show a summary of the target package if possible. In the case + of virtual packages we show nothing */ + pkgCache::PkgIterator Targ = Start.TargetPkg(); + if (Targ->ProvidesList == 0) { - if ((Cache[End] & pkgDepCache::DepGInstall) == pkgDepCache::DepGInstall) - continue; - } - - bool FirstOr = true; - while (1) - { - if (First == false) - for (unsigned J = 0; J != Indent; J++) - out << ' '; - First = false; + out << ' '; + pkgCache::VerIterator Ver = (*Cache)[Targ].InstVerIter(*Cache); + if (Now == true) + Ver = Targ.CurrentVer(); - if (FirstOr == false) + if (Ver.end() == false) { - for (unsigned J = 0; J != strlen(End.DepType()) + 3; J++) - out << ' '; + if (Now == true) + ioprintf(out,_("but %s is installed"),Ver.VerStr()); + else + ioprintf(out,_("but %s is to be installed"),Ver.VerStr()); } else - out << ' ' << End.DepType() << ": "; - FirstOr = false; - - out << Start.TargetPkg().FullName(true); - - // Show a quick summary of the version requirements - if (Start.TargetVer() != 0) - out << " (" << Start.CompType() << " " << Start.TargetVer() << ")"; - - /* Show a summary of the target package if possible. In the case - of virtual packages we show nothing */ - pkgCache::PkgIterator Targ = Start.TargetPkg(); - if (Targ->ProvidesList == 0) { - out << ' '; - pkgCache::VerIterator Ver = Cache[Targ].InstVerIter(Cache); - if (Now == true) - Ver = Targ.CurrentVer(); - - if (Ver.end() == false) + if ((*Cache)[Targ].CandidateVerIter(*Cache).end() == true) { - if (Now == true) - ioprintf(out,_("but %s is installed"),Ver.VerStr()); + if (Targ->ProvidesList == 0) + out << _("but it is not installable"); else - ioprintf(out,_("but %s is to be installed"),Ver.VerStr()); - } + out << _("but it is a virtual package"); + } else - { - if (Cache[Targ].CandidateVerIter(Cache).end() == true) - { - if (Targ->ProvidesList == 0) - out << _("but it is not installable"); - else - out << _("but it is a virtual package"); - } - else - out << (Now?_("but it is not installed"):_("but it is not going to be installed")); - } + out << (Now?_("but it is not installed"):_("but it is not going to be installed")); } - - if (Start != End) - out << _(" or"); - out << endl; - - if (Start == End) - break; - ++Start; - } - } - } + } + + if (Start != End) + out << _(" or"); + out << endl; + + if (Start == End) + break; + ++Start; + } + } +} +void ShowBroken(ostream &out, CacheFile &Cache, bool const Now) +{ + if (Cache->BrokenCount() == 0) + return; + + out << _("The following packages have unmet dependencies:") << endl; + for (unsigned J = 0; J < Cache->Head().PackageCount; J++) + { + pkgCache::PkgIterator const I(Cache,Cache.List[J]); + ShowBrokenPackage(out, &Cache, I, Now); + } +} +void ShowBroken(ostream &out, pkgCacheFile &Cache, bool const Now) +{ + if (Cache->BrokenCount() == 0) + return; + + out << _("The following packages have unmet dependencies:") << endl; + for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); Pkg.end() == false; ++Pkg) + ShowBrokenPackage(out, &Cache, Pkg, Now); } /*}}}*/ // ShowNew - Show packages to newly install /*{{{*/ diff --git a/apt-private/private-output.h b/apt-private/private-output.h index 9633d0c37..6f3a964d7 100644 --- a/apt-private/private-output.h +++ b/apt-private/private-output.h @@ -28,7 +28,8 @@ void ListSingleVersion(pkgCacheFile &CacheFile, pkgRecords &records, // helper to describe global state -APT_PUBLIC void ShowBroken(std::ostream &out,CacheFile &Cache,bool Now); +APT_PUBLIC void ShowBroken(std::ostream &out, CacheFile &Cache, bool const Now); +APT_PUBLIC void ShowBroken(std::ostream &out, pkgCacheFile &Cache, bool const Now); APT_PUBLIC bool ShowList(std::ostream &out, std::string Title, std::string List, std::string VersionsList); diff --git a/apt-private/private-update.cc b/apt-private/private-update.cc index a843d6f86..860d84b86 100644 --- a/apt-private/private-update.cc +++ b/apt-private/private-update.cc @@ -83,10 +83,10 @@ bool DoUpdate(CommandLine &CmdL) for (pkgCache::PkgIterator I = Cache->PkgBegin(); I.end() != true; ++I) { pkgDepCache::StateCache &state = Cache[I]; - if (I->CurrentVer != 0 && state.Upgradable()) + if (I->CurrentVer != 0 && state.Upgradable() && state.CandidateVer != NULL) upgradable++; } - const char *msg = ngettext( + const char *msg = P_( "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n", "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n", upgradable); diff --git a/apt-private/private-upgrade.cc b/apt-private/private-upgrade.cc index 68b2c5e00..31f067576 100644 --- a/apt-private/private-upgrade.cc +++ b/apt-private/private-upgrade.cc @@ -23,18 +23,10 @@ static bool UpgradeHelper(CommandLine &CmdL, int UpgradeFlags) return false; c0out << _("Calculating upgrade... ") << std::flush; - if (APT::Upgrade::Upgrade(Cache, UpgradeFlags) == false) - { - c0out << _("Failed") << std::endl; - ShowBroken(c1out,Cache,false); - return _error->Error(_("Internal error, Upgrade broke stuff")); - } + if(!DoCacheManipulationFromCommandLine(CmdL, Cache, UpgradeFlags)) + return false; c0out << _("Done") << std::endl; - // parse additional cmdline pkg manipulation switches - if(!DoCacheManipulationFromCommandLine(CmdL, Cache)) - return false; - return InstallPackages(Cache,true); } diff --git a/buildlib/debiandoc.mak b/buildlib/debiandoc.mak deleted file mode 100644 index 7e22467cf..000000000 --- a/buildlib/debiandoc.mak +++ /dev/null @@ -1,60 +0,0 @@ -# -*- make -*- - -# This processes debian-doc sgml to produce html and plain text output - -# Input -# $(SOURCE) - The documents to use - -# All output is writtin to files in the build doc directory - -# See defaults.mak for information about LOCAL - -# Some local definitions -LOCAL := debiandoc-$(firstword $(SOURCE)) -$(LOCAL)-HTML := $(addsuffix .html,$(addprefix $(DOC)/,$(basename $(SOURCE)))) -$(LOCAL)-TEXT := $(addsuffix .text,$(addprefix $(DOC)/,$(basename $(SOURCE)))) - -debiandoc: - -#--------- - -# Rules to build HTML documentations -ifdef DEBIANDOC_HTML - -# Install generation hooks -debiandoc: $($(LOCAL)-HTML) -veryclean: veryclean/html/$(LOCAL) - -vpath %.sgml $(SUBDIRS) -$(DOC)/%.html: %.sgml - echo Creating html for $< to $@ - -rm -rf $@ - (HERE=`pwd`; cd $(@D) && $(DEBIANDOC_HTML) $(DEBIANDOC_HTML_OPTIONS) $$HERE/$<) || exit 199 - -# Clean rule -.PHONY: veryclean/html/$(LOCAL) -veryclean/html/$(LOCAL): - -rm -rf $($(@F)-HTML) - -endif - -#--------- - -# Rules to build Text documentations -ifdef DEBIANDOC_TEXT - -# Install generation hooks -debiandoc: $($(LOCAL)-TEXT) -veryclean: veryclean/text/$(LOCAL) - -vpath %.sgml $(SUBDIRS) -$(DOC)/%.text: %.sgml - echo Creating text for $< to $@ - $(DEBIANDOC_TEXT) -O $< > $@ || exit 198 - -# Clean rule -.PHONY: veryclean/text/$(LOCAL) -veryclean/text/$(LOCAL): - -rm -rf $($(@F)-TEXT) - -endif diff --git a/buildlib/defaults.mak b/buildlib/defaults.mak index 599b9ed85..c7931c504 100644 --- a/buildlib/defaults.mak +++ b/buildlib/defaults.mak @@ -76,7 +76,7 @@ PO_DOMAINS := $(BUILD)/po/domains # Module types LIBRARY_H = $(BASE)/buildlib/library.mak -DEBIANDOC_H = $(BASE)/buildlib/debiandoc.mak +DOCBOOK_H = $(BASE)/buildlib/docbook.mak MANPAGE_H = $(BASE)/buildlib/manpage.mak PROGRAM_H = $(BASE)/buildlib/program.mak PYTHON_H = $(BASE)/buildlib/python.mak @@ -121,7 +121,7 @@ MKDIRS := $(BIN) all: dirs binary doc binary: library program maintainer-clean dist-clean distclean pristine sanity: veryclean -startup headers library clean veryclean program test update-po manpages debiandoc: +startup headers library clean veryclean program test update-po manpages docbook: veryclean: echo Very Clean done for $(SUBDIR) diff --git a/buildlib/docbook.mak b/buildlib/docbook.mak new file mode 100644 index 000000000..272475721 --- /dev/null +++ b/buildlib/docbook.mak @@ -0,0 +1,74 @@ +# -*- make -*- + +# This processes DocBook XML to produce html and plain text output + +# Input +# $(SOURCE) - The documents to use + +# All output is written to files in the build doc directory + +# See defaults.mak for information about LOCAL + +# Some local definitions +LOCAL := docbook-$(firstword $(SOURCE)) +$(LOCAL)-HTML := $(addsuffix .html,$(addprefix $(DOC)/,$(basename $(SOURCE)))) +$(LOCAL)-TEXT := $(addsuffix .text,$(addprefix $(DOC)/,$(basename $(SOURCE)))) + +docbook: + + +#--------- + +# Rules to build HTML documentations +ifdef XSLTPROC + +DOCBOOK_HTML_STYLESHEET := docbook-html-style.xsl + +# Install generation hooks +docbook: $($(LOCAL)-HTML) +veryclean: veryclean/html/$(LOCAL) + +vpath %.dbk $(SUBDIRS) +vpath $(DOCBOOK_HTML_STYLESHEET) $(SUBDIRS) +$(DOC)/%.html: %.dbk $(DOCBOOK_HTML_STYLESHEET) + echo Creating html for $< to $@ + -rm -rf $@ + mkdir -p $@ + $(DOCBOOK) \ + --stringparam base.dir $@/ \ + --stringparam l10n.gentext.default.language $(LC) \ + $( $@ || exit 198 + +# Clean rule +.PHONY: veryclean/text/$(LOCAL) +veryclean/text/$(LOCAL): + -rm -rf $($(@F)-TEXT) + +endif diff --git a/buildlib/environment.mak.in b/buildlib/environment.mak.in index c1bf29672..b0a8d9d35 100644 --- a/buildlib/environment.mak.in +++ b/buildlib/environment.mak.in @@ -28,15 +28,17 @@ RANLIB:=@RANLIB@ GCC3DEP = @GCC3DEP@ INLINEDEPFLAG = -MD -# Debian doc stuff -DEBIANDOC_HTML = @DEBIANDOC_HTML@ -DEBIANDOC_TEXT = @DEBIANDOC_TEXT@ - DOXYGEN = @DOXYGEN@ +W3M = @W3M@ -# xsltproc for the man pages +# xsltproc for the man pages and documentation XSLTPROC := @XSLTPROC@ +# DocBook XML +DOCBOOK = $(XSLTPROC) --nonet --novalid --xinclude +DOCBOOK2TEXT = $(W3M) -o display_charset=UTF-8 -no-graph -T text/html \ + -cols 78 -dump + # po4a for the man pages PO4A := @PO4A@ diff --git a/buildlib/po4a_manpage.mak b/buildlib/po4a_manpage.mak index b3d586b2f..0f53a8600 100644 --- a/buildlib/po4a_manpage.mak +++ b/buildlib/po4a_manpage.mak @@ -15,6 +15,9 @@ INCLUDES = apt.ent apt-verbatim.ent apt-vendor.ent manpages: +%.xsl: ../%.xsl + cp -a $< . + # Do not use XMLTO, build the manpages directly with XSLTPROC ifdef XSLTPROC @@ -34,13 +37,11 @@ apt-verbatim.ent: ../apt-verbatim.ent apt-vendor.ent: ../apt-vendor.ent cp -a ../apt-vendor.ent . -manpage-style.xsl: ../manpage-style.xsl - sed "// i\ -" ../manpage-style.xsl > manpage-style.xsl - $($(LOCAL)-LIST) :: % : %.xml $(STYLESHEET) $(INCLUDES) echo Creating man page $@ - $(XSLTPROC) -o $@ $(STYLESHEET) $< || exit 200 # why xsltproc doesn't respect the -o flag here??? + $(XSLTPROC) \ + --stringparam l10n.gentext.default.language $(LC) \ + -o $@ $(STYLESHEET) $< || exit 200 # why xsltproc doesn't respect the -o flag here??? test -f $(subst .$(LC),,$@) || echo 'FIXME: xsltproc respects the -o flag now, workaround can be removed' mv -f $(subst .$(LC),,$@) $@ @@ -69,7 +70,6 @@ ifneq ($(words $(SOURCE)),0) include $(MANPAGE_H) endif -# Debian Doc SGML Documents -SOURCE := $(wildcard *.$(LC).sgml) -DEBIANDOC_HTML_OPTIONS=-l $(LC).UTF-8 -include $(DEBIANDOC_H) +# DocBook XML Documents +SOURCE := $(wildcard *.$(LC).dbk) +include $(DOCBOOK_H) diff --git a/cmdline/apt-internal-solver.cc b/cmdline/apt-internal-solver.cc index e4cdf6381..5fda7b6a0 100644 --- a/cmdline/apt-internal-solver.cc +++ b/cmdline/apt-internal-solver.cc @@ -24,9 +24,11 @@ #include #include #include +#include #include #include +#include #include #include #include @@ -168,18 +170,20 @@ int main(int argc,const char *argv[]) /*{{{*/ EDSP::WriteProgress(60, "Call problemresolver on current scenario…", output); + std::string failure; if (upgrade == true) { - if (pkgAllUpgrade(CacheFile) == false) { - EDSP::WriteError("ERR_UNSOLVABLE_UPGRADE", "An upgrade error occurred", output); - return 0; - } + if (pkgAllUpgrade(CacheFile) == false) + failure = "ERR_UNSOLVABLE_UPGRADE"; } else if (distUpgrade == true) { - if (pkgDistUpgrade(CacheFile) == false) { - EDSP::WriteError("ERR_UNSOLVABLE_DIST_UPGRADE", "An dist-upgrade error occurred", output); - return 0; - } - } else if (Fix.Resolve() == false) { - EDSP::WriteError("ERR_UNSOLVABLE", "An error occurred", output); + if (pkgDistUpgrade(CacheFile) == false) + failure = "ERR_UNSOLVABLE_DIST_UPGRADE"; + } else if (Fix.Resolve() == false) + failure = "ERR_UNSOLVABLE"; + + if (failure.empty() == false) { + std::ostringstream broken; + ShowBroken(broken, CacheFile, false); + EDSP::WriteError(failure.c_str(), broken.str(), output); return 0; } diff --git a/cmdline/makefile b/cmdline/makefile index c4a249cd6..b7c35ddd1 100644 --- a/cmdline/makefile +++ b/cmdline/makefile @@ -8,49 +8,49 @@ include ../buildlib/defaults.mak # The apt program PROGRAM=apt SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) -LIB_MAKES = apt-pkg/makefile +LIB_MAKES = apt-pkg/makefile apt-private/makefile SOURCE = apt.cc include $(PROGRAM_H) # The apt-cache program PROGRAM=apt-cache SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) -LIB_MAKES = apt-pkg/makefile +LIB_MAKES = apt-pkg/makefile apt-private/makefile SOURCE = apt-cache.cc include $(PROGRAM_H) # The apt-get program PROGRAM=apt-get SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) -LIB_MAKES = apt-pkg/makefile +LIB_MAKES = apt-pkg/makefile apt-private/makefile SOURCE = apt-get.cc include $(PROGRAM_H) # The apt-config program PROGRAM=apt-config SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) -LIB_MAKES = apt-pkg/makefile +LIB_MAKES = apt-pkg/makefile apt-private/makefile SOURCE = apt-config.cc include $(PROGRAM_H) # The apt-cdrom program PROGRAM=apt-cdrom SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) -LIB_MAKES = apt-pkg/makefile +LIB_MAKES = apt-pkg/makefile apt-private/makefile SOURCE = apt-cdrom.cc include $(PROGRAM_H) # The apt-mark program PROGRAM=apt-mark SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) -LIB_MAKES = apt-pkg/makefile +LIB_MAKES = apt-pkg/makefile apt-private/makefile SOURCE = apt-mark.cc include $(PROGRAM_H) # The apt-helper PROGRAM=apt-helper SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) -LIB_MAKES = apt-pkg/makefile +LIB_MAKES = apt-pkg/makefile apt-private/makefile SOURCE = apt-helper.cc include $(PROGRAM_H) @@ -75,14 +75,14 @@ include $(PROGRAM_H) # The apt-extracttemplates program PROGRAM=apt-extracttemplates SLIBS = -lapt-pkg -lapt-inst $(INTLLIBS) -LIB_MAKES = apt-pkg/makefile +LIB_MAKES = apt-pkg/makefile apt-inst/makefile SOURCE = apt-extracttemplates.cc include $(PROGRAM_H) # The internal solver acting as an external PROGRAM=apt-internal-solver -SLIBS = -lapt-pkg $(INTLLIBS) -LIB_MAKES = apt-pkg/makefile +SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) +LIB_MAKES = apt-pkg/makefile apt-private/makefile SOURCE = apt-internal-solver.cc include $(PROGRAM_H) diff --git a/configure.ac b/configure.ac index 5cb13ff10..e605528f4 100644 --- a/configure.ac +++ b/configure.ac @@ -6,10 +6,10 @@ dnl code more portable dnl You MUST have an environment that has all the POSIX functions and dnl some of the more popular bsd/sysv ones (like select). You'll also -dnl need a C++ compiler that is semi-standard conformant, exceptions are +dnl need a C++ compiler that is semi-standard conformant, exceptions are dnl not used but STL is. -dnl 'make -f Makefile startup' will generate the configure file from +dnl 'make -f Makefile startup' will generate the configure file from dnl configure.ac correctly and can be run at any time AC_PREREQ(2.50) @@ -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="1.0.4" +PACKAGE_VERSION="1.0.6" PACKAGE_MAIL="APT Development Team " AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") @@ -53,7 +53,7 @@ AC_SEARCH_LIBS(connect,socket) SOCKETLIBS="$LIBS" AC_SUBST(SOCKETLIBS) LIBS="$SAVE_LIBS" - + dnl Checks for pthread -- disabled due to glibc bugs jgg dnl AC_CHECK_LIB(pthread, pthread_create,[AC_DEFINE(HAVE_PTHREAD) PTHREADLIB="-lpthread"]) AC_SUBST(PTHREADLIB) @@ -89,6 +89,13 @@ AC_CHECK_LIB(curl, curl_easy_init, AC_MSG_ERROR([failed: I need CURL due https support]), ) +AC_LANG_PUSH([C++]) +AC_CHECK_HEADER(gtest/gtest.h,, + AC_MSG_ERROR([failed: I need gtest to build tests]), +) +AC_LANG_POP([C++]) + + AC_SUBST(BDBLIB) HAVE_ZLIB=no @@ -160,20 +167,17 @@ dnl HP-UX needs -d_XOPEN_SOURCE_EXTENDED for h_errno AC_MSG_CHECKING(for h_errno) AC_EGREP_HEADER(h_errno, netdb.h, [AC_MSG_RESULT(normal)], [CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" - AC_EGREP_HEADER(h_errno, netdb.h, + AC_EGREP_HEADER(h_errno, netdb.h, [AC_MSG_RESULT(needs _XOPEN_SOURCE_EXTENDED)], [AC_MSG_ERROR("not found.")]) ]) -dnl Check for debiandoc -AC_PATH_PROG(DEBIANDOC_HTML,debiandoc2html) -AC_PATH_PROG(DEBIANDOC_TEXT,debiandoc2text) - dnl Check for doxygen AC_PATH_PROG(DOXYGEN, doxygen) dnl Check for the XSLTProc tool needed to build man pages together with po4a AC_PATH_PROG(XSLTPROC,xsltproc) +AC_PATH_PROG(W3M, w3m) dnl Check for the po4a tool needed to build man pages AC_PATH_PROG(PO4A,po4a) diff --git a/debian/changelog b/debian/changelog index f03f73b83..cf838bc40 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,77 @@ +apt (1.0.6) unstable; urgency=medium + + [ Chris Leick ] + * German translation reviewed by Erik Pfannenstein + + [ Michael Vogt ] + * methods/http.cc: use Req.str() in debug output + * Do not try to parse invalid translation files (LP: #756317) + * Do not clean "/" in pkgAcquire::Clean/pkgArchiveCleaner (Closes: #753531) + * Only show packages as upgradable if the have a CandidateVer != 0 + (Closes: #753297) + + [ Trần Ngọc Quân ] + * l10n: vi.po: Update 3 new messages + + [ Joe Hansen ] + * Danish program translation update (Closes: 753979) + + [ David Kalnischkies ] + * handle moved mmap after UniqFindTagWrite call (Closes: #753941) + + [ Michele Orrù ] + * use printf instead of echo in testing framework + + [ Cédric Barboiron ] + * Improve description how to turn off the caches (Closes: #753531) + + [ Guillem Jover ] + * po: Fill or add missing Language field + * po: Remove fuzzy from file msgid header + * po: Fill Project-Id-Version with correct project id and version + * po: Fix Plural-Forms fields + * po: Fix or add missing email addresses + * po: Fix encoding issues + * po: Fix format specifier order in translation + * build: Set the XSL parameter through the command line instead of sed + * build: Convert from DebianDoc SGML to DocBook XML + * doc: Convert from DebianDoc SGML to DocBook XML + * doc: Unfuzzy DocBook translations + + -- Michael Vogt Thu, 10 Jul 2014 11:46:07 +0200 + +apt (1.0.5) unstable; urgency=low + + [ Michael Vogt ] + * fix autopkgtest tests + * fix test-apt-ftparchive-cachedb-lp1274466 and apt-internal-solver tests + * test/integration/test-essential-force-loopbreak: fix on non-amd64 systems + * Tell the user if no updates are available after apt update (Closes: #751388) + + [ Michele Orrù ] + * Check for gtest's header before building. + + [ Chris Leick ] + * Updated translation of german documentation + + [ Konstantin Manna ] + * fix two german manpage spelling mistakes (Closes: 751635) + * add missing comma in SEE ALSO of apt-secure manpage (Closes: 748506) + + [ Fredrik Fornwall ] + * use P_ instead of ngettext to compiling with --disable-nls (Closes: 751857) + + [ David Kalnischkies ] + * don't send pkg from an unknown architecture via EDSP + * fix SubstVar to be usable as a replace_all method + * show our broken packages message in 'apt' solver + * do not call resolver twice on (dist-)upgrade + + [ Stefano Zacchiroli ] + * EDSP doc: clarify that Install/Remove packages are arch-qualified + + -- Michael Vogt Wed, 18 Jun 2014 13:35:13 +0200 + apt (1.0.4) unstable; urgency=low [ Michael Vogt ] diff --git a/debian/control b/debian/control index ff984db75..0437aa737 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ Build-Depends: dpkg-dev (>= 1.15.8), debhelper (>= 8.1.3~), libdb-dev, zlib1g-dev, libbz2-dev, liblzma-dev, xsltproc, docbook-xsl, docbook-xml, po4a (>= 0.34-2), autotools-dev, autoconf, automake, libgtest-dev -Build-Depends-Indep: doxygen, debiandoc-sgml, graphviz +Build-Depends-Indep: doxygen, w3m, graphviz Build-Conflicts: autoconf2.13, automake1.4 Vcs-Git: git://anonscm.debian.org/apt/apt.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=apt/apt.git diff --git a/debian/rules b/debian/rules index f8b392986..c7b5aa304 100755 --- a/debian/rules +++ b/debian/rules @@ -70,7 +70,7 @@ LIBAPT_INST=libapt-inst$(LIBAPTINST_MAJOR) export DPKG_GENSYMBOLS_CHECK_LEVEL=0 build-binary: build/build-binary-stamp -build-debiandoc: build/build-debiandoc-stamp +build-docbook: build/build-docbook-stamp build-manpages: build/build-manpages-stamp # Note that this is unconditionally done first as part of loading environment.mak @@ -101,9 +101,9 @@ else endif touch $@ -build/build-debiandoc-stamp: build/configure-stamp +build/build-docbook-stamp: build/configure-stamp # Add here commands to compile the package. - $(MAKE) debiandoc + $(MAKE) docbook touch $@ build/build-manpages-stamp: build/configure-stamp @@ -126,7 +126,7 @@ debian/%.install: debian/%.install.in sed 's/@DEB_HOST_MULTIARCH@/$(DEB_HOST_MULTIARCH)/g' $< > $@ # Build architecture-independent files here. -libapt-pkg-doc: build-debiandoc +libapt-pkg-doc: build-docbook dh_testdir -p$@ dh_testroot -p$@ dh_prep -p$@ @@ -153,7 +153,7 @@ libapt-pkg-doc: build-debiandoc dh_md5sums -p$@ dh_builddeb -p$@ -apt-doc: build-debiandoc +apt-doc: build-docbook dh_testdir -p$@ dh_testroot -p$@ dh_prep -p$@ @@ -351,7 +351,7 @@ binary-arch: $(LIBAPT_PKG) $(LIBAPT_INST) apt libapt-pkg-dev apt-utils apt-trans binary-indep: apt-doc libapt-pkg-doc binary: binary-indep binary-arch build-arch: build-binary -build-indep: build-manpages build-debiandoc +build-indep: build-manpages build-docbook build: build-indep build-arch .PHONY: build clean binary-indep binary-arch binary diff --git a/debian/tests/control b/debian/tests/control index 209f16bfd..ecaa089d8 100644 --- a/debian/tests/control +++ b/debian/tests/control @@ -1,3 +1,3 @@ Tests: run-tests Restrictions: allow-stderr -Depends: @, build-essential, fakeroot, wget, dpkg-dev, debhelper, libdb-dev, gettext, libcurl4-gnutls-dev, zlib1g-dev, libbz2-dev, xsltproc, docbook-xsl, docbook-xml, po4a, autotools-dev, autoconf, automake, doxygen, debiandoc-sgml, stunnel4, libdb-dev +Depends: @, build-essential, fakeroot, wget, dpkg-dev, debhelper, libdb-dev, gettext, libcurl4-gnutls-dev, zlib1g-dev, libbz2-dev, xsltproc, docbook-xsl, docbook-xml, po4a, autotools-dev, autoconf, automake, doxygen, stunnel4, libdb-dev, db-util diff --git a/debian/tests/run-tests b/debian/tests/run-tests index e6bc5e0d1..308031e9d 100644 --- a/debian/tests/run-tests +++ b/debian/tests/run-tests @@ -12,6 +12,7 @@ make -C test/interactive-helper/ APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR=$(pwd)/build/bin \ APT_INTEGRATION_TESTS_METHODS_DIR=/usr/lib/apt/methods \ APT_INTEGRATION_TESTS_LIBEXEC_DIR=/usr/lib/apt/ \ +APT_INTEGRATION_TESTS_INTERNAL_SOLVER=/usr/lib/apt/solvers/apt \ APT_INTEGRATION_TESTS_BUILD_DIR=/usr/bin \ APT_INTEGRATION_TESTS_LIBRARY_PATH=/dev/null/does/not/exist \ ./test/integration/run-tests diff --git a/doc/apt-secure.8.xml b/doc/apt-secure.8.xml index 981351615..15a73476d 100644 --- a/doc/apt-secure.8.xml +++ b/doc/apt-secure.8.xml @@ -193,7 +193,7 @@ See Also &apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, -&debsign; &debsig-verify;, &gpg; +&debsign;, &debsig-verify;, &gpg; For more background information you might want to review the diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index 51ad08b83..b9d3d11da 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -225,7 +225,7 @@ "> - + diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index fcbf20dac..ffecc6ceb 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -608,10 +608,11 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; information, such as the two package caches srcpkgcache and pkgcache as well as the location to place downloaded archives, Dir::Cache::archives. Generation of caches can be turned off - by setting their names to the empty string. This will slow down startup but - save disk space. It is probably preferable to turn off the pkgcache rather - than the srcpkgcache. Like Dir::State the default - directory is contained in Dir::Cache + by setting pkgcache or srcpkgcache to + "". This will slow down startup but save disk space. It + is probably preferable to turn off the pkgcache rather than the srcpkgcache. + Like Dir::State the default directory is contained in + Dir::Cache Dir::Etc contains the location of configuration files, sourcelist gives the location of the sourcelist and diff --git a/doc/design.dbk b/doc/design.dbk new file mode 100644 index 000000000..06743c8af --- /dev/null +++ b/doc/design.dbk @@ -0,0 +1,438 @@ + + + %aptverbatiment; +]> + + + +The APT project design document + + + + + + Manoj Srivastavasrivasta@debian.org + + + +Version &apt-product-version; + + + +This document is an overview of the specifications and design goals of the APT +project. It also attempts to give a broad description of the implementation +as well. + + + +1997Manoj Srivastava + + +License Notice + +APT, including this document, is free software; you may redistribute it and/or +modify it under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2, or (at your option) any later +version. + + +This is distributed in the hope that it will be useful, but without +any warranty; without even the implied warranty of merchantability +or fitness for a particular purpose. See the GNU General Public License for +more details. + + +You should have received a copy of the GNU General Public License with your +Debian system, in /usr/share/common-licenses/GPL, or with +the debiandoc-sgml source package as the file +COPYING. If not, write to the Free Software Foundation, +Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + + + + +Introduction + +APT is supposed to be a replacement for dselect, and not a replacement for +dpkg. However, since addition functionality has been required for APT, and +given the fact that this is very closely related to dpkg, it is not +unreasonable to expect that additional functionality in the underlying dpkg +would also be requested. + + +Deity/dselect are the first introduction that people have to Debian, and +unfortunately this first impression contributes greatly to the public +perception of the distribution. It is imperative that this be a showcase for +Debian, rather than frighten novices away (which has been an accusation often +levelled at the current system) + + + +Requirements + + + +APT should be a replacement for dselect. Therefore it should have all the +functionality that dselect has currently. This is the primary means of +interaction between the user and the package management system, and it should +be able to handle all tasks involved in installing, upgrading, and routine +management without having the users take recourse to the underlying management +system. + + + + +It should be easier to use and less confusing for novice users. The primary +stimulus for the creation of APT was the perceived intractability, complexity, +and non-intuitive behavior of the existing user interface, and as such, human +factors must be a primary mandate of APT. + + + + +It should be able to group packages more flexibly, and possibly allow +operations based on a group. One should be able to select, or deselect, +a coherent group of related packages simultaneously, allowing one to add, +remove, or upgrade functionality to a machine as one step. + + + + +This would allow APT to handle standard installations, +namely, one could then install a set of packages to enable a machine to +fulfill specific tasks. Define a few standard installations, and which +packages are included therein. The packages should be internally consistent. + + + + +Make use of a keywords field in package headers; provide a standard list of +keywords for people to use. This could be the underpinning to allow the +previous two requirements to work (though the developers are not constrained +to implement the previous requirements using keywords) + + + + +Use dependencies, conflicts, and reverse dependencies to properly order +packages for installation and removal. This has been a complaint in the past +that the installation methods do not really understand dependencies, causing +the upgrade process to break, or allowing the removal of packages that left the +system in an untenable state by breaking the dependencies on packages that were +dependent on the package being removed. A special emphasis is placed on +handling pre-dependencies correctly; the target of a predependency has to be +fully configured before attempting to install the pre-dependent package. Also, +configure immediately requests mentioned below should be +handled. + + + + +Handle replacement of a package providing a virtual package with another (for +example, it has been very difficult replacing sendmail with +smail, or vice versa), making sure that the dependencies are +still satisfied. + + + + +Handle source lists for updates from multiple sources. APT should also be able +to handle diverse methods of acquiring new packages; local filesystem, +mountable CD-ROM drives, FTP accessible repositories are some of the methods +that come to mind. Also, the source lists can be separated into categories, +such as main, contrib, non-us, non-local, non-free, my-very-own, etc. APT +should be set up to retrieve the Packages files from these multiple source +lists, as well as retrieving the packages themselves. + + + + +Handle base of source and acquire all Packages files underneath. (possibly +select based on architecture), this should be a simple extension of the +previous requirement. + + + + +Handle remote installation (to be implemented maybe in a future version, it +still needs to be designed). This would ease the burden of maintaining +multiple Debian machines on a site. In the authors opinion this is a killer +difference for the distribution, though it may be too hard a problem to be +implemented with the initial version of APT. However, some thought must be +given to this to enable APT to retain hooks for future functionality, or at +least to refrain from methods that may preclude remote activity. It is +desirable that adding remote installation not require a redesign of APT from +the ground up. + + + + +Be scalable. Dselect worked a lot better with 400 packages, but at last count +the number of packages was around twelve hundred and climbing. This also +requires APT to pay attention to the needs of small machines which are low on +memory (though this requirement shall diminish as we move towards bigger +machines, it would still be nice if Debian worked on all old machines where +Linux itself would work). + + + + +Handle install immediately requests. Some packages, like watchdog, are +required to be working for the stability of the machine itself. There are +others which may be required for the correct functioning of a production +machine, or which are mission critical applications. APT should, in these +cases, upgrade the packages with minimal downtime; allowing these packages to +be one of potentially hundreds of packages being upgraded concurrently may +not satisfy the requirements of the package or the site. (Watchdog, for +example, if not restarted quickly, may cause the machine to reboot in the +midst of installation, which may cause havoc on the machine) + + + + + +Procedural description + + +Set Options + + +This process handles setting of user or site options, and configuration of all +aspects of APT. It allows the user to set the location and order of package +sources, allowing them to set up source list details, like ftp site locations, +passwords, etc. Display options may also be set. + + + + +Updates + + +Build a list of available packages, using source lists or a base location and +trawling for Packages files (needs to be aware of architecture). This may +involve finding and retrieving Packages files, storing them locally for +efficiency, and parsing the data for later use. This would entail contacting +various underlying access modules (ftp, cdrom mounts, etc) Use a backing store +for speed. This may also require downloading the actual package files locally +for speed. + + + + +Local status + + +Build up a list of packages already installed. This requires reading and +writing the local?? status file. For remote installation, this should +probably use similar mechanisms as the Packages file retrieval does. Use +the backing store for speed. One should consider multiple backing stores, +one for each machine. + + + + +Relationship determination + + +Determine forward and reverse dependencies. All known dependency fields should +be acted upon, since it is fairly cheap to do so. Update the backing store +with this information. + + + + +Selection + + +Present the data to the user. Look at Behan Webster's documentation for the +user interface procedures. (Note: In the authors opinion deletions and reverse +dependencies should also be presented to the user, in a strictly symmetric +fashion; this may make it easier to prevent a package being removed that breaks +dependencies) + + + + +Ordering of package installations and configuration + + +Build a list of events. Simple topological sorting gives order of packages +in dependency order. At certain points in this ordering, +predependencies/immediate configure directives cause an break in normal +ordering. We need to insert the uninstall/purge directive in the stream +(default: as early as possible). + + + + +Action + + +Take the order of installations and removals and build up a stream of events +to send to the packaging system (dpkg). Execute the list of events if +successful. Do not partially install packages and leave system in broken +state. Go to The Selection step as needed. + + + + + + +Modules and interfaces + + +The user interface module + + +Look at Behan Webster's documentation. + + + + +Widget set + + +Related closely to above Could some one present design decisions of the widget +set here? + + + + +pdate Module + + +Distinct versions of the same package are recorded separately, but if multiple +Packages files contain the same version of a package, then only the first one +is recorded. For this reason, the least expensive update source should be +listed first (local file system is better than a remote ftp site) + + +This module should interact with the user interface module to set and change +configuration parameters for the modules listed below. It needs to record that +information in an on disk data file, to be read on future invocations. + + + + +FTP methods + + + + +mount and file traversal module(s)? + + + + +Other methods ??? + + + + + + +Status file parser/generator + + +The status file records the current state of the system, listing the packages +installed, etc. The status file is also one method of communicating with dpkg, +since it is perfectly permissible for the user to use APT to request packages +be updated, put others on hold, mark other for removal, etc, and then run +dpkg -BORGiE on a file system. + + + + +Package file parser/generator + + +Related to above. Handle multiple Packages files, from different +sources. Each package contains a link back to the packages file structure +that contains details about the origin of the data. + + + + +Dependency module + + + + +dependency/conflict determination and linking + + + + +reverse dependency generator. Maybe merged with above + + + + + + +Package ordering Module + + +Create an ordering of the actions to be taken. + + + + +Event generator + + +module to interact with dpkg + + + + + + +Data flow and conversions analysis. + + ____________ + __\|ftp modules| + / /|___________| + _ ____________ / ________________ + | update | / |mount/local file| + |==========================>| module |/_____\| traversals | + | |_____________| /|________________| + | ^ ^ + | | | ______________ + ______|_______ _ _____ ______ | _____v________ \| | + |Configuration | |configuration| | |Packages Files| ===|Status file | + | module |<=>| data | | |______________| / /|____________| + |______________| |_____________| | ^ / + ^ | | / + | | _______v_______|/_ + | | | | ________________ + | | | |/_\| Dependency | + | | |backing store |\ /| Module | + | | |______________| _|_______________| + | \ ^ /| ^ + | \ | / | + | _\|____v_______|/__ ____v_______ + |_____________________________\| User interaction| | dpkg | + /|_________________|<==> Invoker | + |___________| + + +dpkg also interacts with status and available files. + + +The backing store and the associated data structures are the core of APT. All +modules essentially revolve around the backing store, feeding it data, adding +and manipulating links and relationships between data in the backing store, +allowing the user to interact with and modify the data in the backing store, +and finally writing it out as the status file and possibly issuing directives +to dpkg. + + +The other focal point for APT is the user interface. + + + + diff --git a/doc/design.sgml b/doc/design.sgml deleted file mode 100644 index 67406aa01..000000000 --- a/doc/design.sgml +++ /dev/null @@ -1,411 +0,0 @@ - - - - - The APT project design document - - Manoj Srivastava - srivasta@debian.org - - $Id: design.sgml,v 1.4 2003/02/12 15:05:45 doogie Exp $ - - This document is an overview of the specifications and design - goals of the APT project. It also attempts to give a broad - description of the implementation as well. - - - Copyright ©1997 Manoj Srivastava - -

- APT, including this document, is free software; you may - redistribute it and/or modify it under the terms of the GNU - General Public License as published by the Free Software - Foundation; either version 2, or (at your option) any later - version.

-

- This is distributed in the hope that it will be useful, but - without any warranty; without even the implied - warranty of merchantability or fitness for a particular - purpose. See the GNU General Public License for more - details.

- -

- You should have received a copy of the GNU General Public - License with your Debian system, in - /usr/share/common-licenses/GPL, or with the - COPYING. If not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, - USA.

-
-
- - Introduction -

APT is supposed to be a replacement for dselect, and not a - replacement for dpkg. However, since addition functionality - has been required for APT, and given the fact that this is - very closely related to dpkg, it is not unreasonable to expect - that additional functionality in the underlying dpkg would - also be requested.

- -

Deity/dselect are the first introduction that people have to - Debian, and unfortunately this first impression contributes - greatly to the public perception of the distribution. It is - imperative that this be a showcase for Debian, rather than - frighten novices away (which has been an accusation often - levelled at the current system)

-
- - Requirements -

- - -

- APT should be a replacement for dselect. Therefore it - should have all the functionality that dselect has - currently. This is the primary means of interaction - between the user and the package management system, and - it should be able to handle all tasks involved in - installing, upgrading, and routine management without - having the users take recourse to the underlying - management system.

- - -

- It should be easier to use and less confusing for novice - users. The primary stimulus for the creation of APT - was the perceived intractability, complexity, and - non-intuitive behavior of the existing user interface, - and as such, human factors must be a primary mandate of - APT.

-
- -

- It should be able to group packages more flexibly, and - possibly allow operations based on a group. One should - be able to select, or deselect, a coherent group of - related packages simultaneously, allowing one to add, - remove, or upgrade functionality to a machine as one - step. -

-
- -

- This would allow APT to handle standard - installations, namely, one could then install a - set of packages to enable a machine to fulfill specific - tasks. Define a few standard installations, and which - packages are included therein. The packages should be - internally consistent.

-
- -

- Make use of a keywords field in package headers; provide - a standard list of keywords for people to use. This - could be the underpinning to allow the previous two - requirements to work (though the developers are not - constrained to implement the previous requirements using - keywords) -

-
- -

- Use dependencies, conflicts, and reverse dependencies to - properly order packages for installation and - removal. This has been a complaint in the past that the - installation methods do not really understand - dependencies, causing the upgrade process to break, or - allowing the removal of packages that left the system in - an untenable state by breaking the dependencies on - packages that were dependent on the package being - removed. A special emphasis is placed on handling - pre-dependencies correctly; the target of a - predependency has to be fully configured before - attempting to install the pre-dependent package. Also, - configure immediately requests mentioned below - should be handled.

-
- -

- Handle replacement of a package providing a virtual - package with another (for example, it has been very - difficult replacing sendmail with - smail, or vice versa), making sure that the - dependencies are still satisfied.

-
- -

- Handle source lists for updates from multiple - sources. APT should also be able to handle diverse - methods of acquiring new packages; local filesystem, - mountable CD-ROM drives, FTP accessible repositories are - some of the methods that come to mind. Also, the source - lists can be separated into categories, such as main, - contrib, non-us, non-local, non-free, my-very-own, - etc. APT should be set up to retrieve the Packages - files from these multiple source lists, as well as - retrieving the packages themselves.

-
- -

- Handle base of source and acquire all Packages files - underneath. (possibly select based on architecture), - this should be a simple extension of the previous - requirement.

-
- -

- Handle remote installation (to be implemented maybe in a - future version, it still needs to be designed). This - would ease the burden of maintaining multiple Debian - machines on a site. In the authors opinion this is a - killer difference for the distribution, though it may be - too hard a problem to be implemented with the initial - version of APT. However, some thought must be given to - this to enable APT to retain hooks for future - functionality, or at least to refrain from methods that - may preclude remote activity. It is desirable that - adding remote installation not require a redesign of - APT from the ground up.

-
- -

- Be scalable. Dselect worked a lot better with 400 - packages, but at last count the number of packages was - around twelve hundred and climbing. This also requires - APT to pay attention to the needs of small machines - which are low on memory (though this requirement shall - diminish as we move towards bigger machines, it would - still be nice if Debian worked on all old machines where - Linux itself would work).

-
- -

- Handle install immediately requests. Some packages, like - watchdog, are required to be working for the stability - of the machine itself. There are others which may be - required for the correct functioning of a production - machine, or which are mission critical - applications. APT should, in these cases, upgrade the - packages with minimal downtime; allowing these packages - to be one of potentially hundreds of packages being - upgraded concurrently may not satisfy the requirements - of the package or the site. (Watchdog, for example, if - not restarted quickly, may cause the machine to reboot - in the midst of installation, which may cause havoc on - the machine)

-
- -

-
- - Procedural description -

- Set Options - -

- This process handles setting of user or - site options, and configuration of all aspects of - APT. It allows the user to set the location and order - of package sources, allowing them to set up source list - details, like ftp site locations, passwords, - etc. Display options may also be set.

- - Updates - -

- Build a list of available packages, using - source lists or a base location and trawling for - Packages files (needs to be aware of architecture). This - may involve finding and retrieving Packages files, - storing them locally for efficiency, and parsing the - data for later use. This would entail contacting various - underlying access modules (ftp, cdrom mounts, etc) Use a - backing store for speed. This may also require - downloading the actual package files locally for - speed.

-
- Local status - -

- Build up a list of packages already - installed. This requires reading and writing the local?? - status file. For remote installation, this should - probably use similar mechanisms as the Packages file - retrieval does. Use the backing store for speed. One - should consider multiple backing stores, one for each - machine. -

-
- Relationship determination - -

- Determine forward and reverse dependencies. All known - dependency fields should be acted upon, since it is - fairly cheap to do so. Update the backing store with - this information.

-
- Selection - -

- Present the data to the user. Look at Behan Webster's - documentation for the user interface procedures. (Note: - In the authors opinion deletions and reverse - dependencies should also be presented to the user, in a - strictly symmetric fashion; this may make it easier to - prevent a package being removed that breaks - dependencies) -

-
- Ordering of package installations and configuration - -

- Build a list of events. Simple topological sorting gives - order of packages in dependency order. At certain points - in this ordering, predependencies/immediate configure - directives cause an break in normal ordering. We need to - insert the uninstall/purge directive in the stream - (default: as early as possible).

-
- Action - -

- Take the order of installations and removals and build - up a stream of events to send to the packaging system - (dpkg). Execute the list of events if successful. Do not - partially install packages and leave system in broken - state. Go to The Selection step as needed.

-
- - -

-
- - Modules and interfaces -

- The user interface module - -

Look at Behan Webster's documentation.

- - Widget set - -

- Related closely to above Could some one present design - decisions of the widget set here?

-
- pdate Module - -

- Distinct versions of the same package are recorded - separately, but if multiple Packages files contain the - same version of a package, then only the first one is - recorded. For this reason, the least expensive update - source should be listed first (local file system is - better than a remote ftp site)

-

- This module should interact with the user interface - module to set and change configuration parameters for - the modules listed below. It needs to record that - information in an on disk data file, to be read on - future invocations.

-

- -

FTP methods

-
- -

mount and file traversal module(s)?

-
- -

Other methods ???

-
- -

- - Status file parser/generator - -

- The status file records the current state of the system, - listing the packages installed, etc. The status file is - also one method of communicating with dpkg, since it is - perfectly permissible for the user to use APT to - request packages be updated, put others on hold, mark - other for removal, etc, and then run dpkg - -BORGiE on a file system.

-
- Package file parser/generator - -

- Related to above. Handle multiple Packages files, from - different sources. Each package contains a link back to - the packages file structure that contains details about - the origin of the data.

-
- Dependency module - -

- -

dependency/conflict determination and linking

-
- -

reverse dependency generator. Maybe merged with above

-
-
-

- - Package ordering Module - -

Create an ordering of the actions to be taken.

-
- Event generator - -

module to interact with dpkg

-
- - - - Data flow and conversions analysis. -

- - ____________ - __\|ftp modules| - / /|___________| - _ ____________ / ________________ - | update | / |mount/local file| - |==========================>| module |/_____\| traversals | - | |_____________| /|________________| - | ^ ^ - | | | ______________ - ______|_______ _ _____ ______ | _____v________ \| | - |Configuration | |configuration| | |Packages Files| ===|Status file | - | module |<=>| data | | |______________| / /|____________| - |______________| |_____________| | ^ / - ^ | | / - | | _______v_______|/_ - | | | | ________________ - | | | |/_\| Dependency | - | | |backing store |\ /| Module | - | | |______________| _|_______________| - | \ ^ /| ^ - | \ | / | - | _\|____v_______|/__ ____v_______ - |_____________________________\| User interaction| | dpkg | - /|_________________|<==>| Invoker | - |___________| - - -

dpkg also interacts with status and available files.

- - -

- The backing store and the associated data structures are the - core of APT. All modules essentially revolve around the - backing store, feeding it data, adding and manipulating links - and relationships between data in the backing store, allowing - the user to interact with and modify the data in the backing - store, and finally writing it out as the status file and - possibly issuing directives to dpkg.

- -

The other focal point for APT is the user interface.

-
- - diff --git a/doc/docbook-html-style.xsl b/doc/docbook-html-style.xsl new file mode 100644 index 000000000..e4af9f557 --- /dev/null +++ b/doc/docbook-html-style.xsl @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + +
+
+ + index + + + + + + + + + + + + + + + + + + +
diff --git a/doc/docbook-text-style.xsl b/doc/docbook-text-style.xsl new file mode 100644 index 000000000..376dded52 --- /dev/null +++ b/doc/docbook-text-style.xsl @@ -0,0 +1,70 @@ + + + + + + + + + + + + + +
+
+ +
+
+
+
+ +
+ +
+
+ + +
+ +
+
+
+ + + +
    + +
+
+ + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
diff --git a/doc/dpkg-tech.dbk b/doc/dpkg-tech.dbk new file mode 100644 index 000000000..e7d150cee --- /dev/null +++ b/doc/dpkg-tech.dbk @@ -0,0 +1,895 @@ + + + %aptverbatiment; +]> + + + +dpkg technical manual + + + + + + Tom Leestom@lpsg.demon.co.uk + + + +Version &apt-product-version; + + + +This document describes the minimum necessary workings for the APT dselect +replacement. It gives an overall specification of what its external interface +must look like for compatibility, and also gives details of some internal +quirks. + + + +1997Tom Lees + + +License Notice + +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. + + +For more details, on Debian systems, see the file +/usr/share/common-licenses/GPL for the full license. + + + + + +Quick summary of dpkg's external interface + +
Control files + +The basic dpkg package control file supports the following major features:- + + + + +5 types of dependencies:- + + + + +Pre-Depends, which must be satisfied before a package may be unpacked + + + + +Depends, which must be satisfied before a package may be configured + + + + +Recommends, to specify a package which if not installed may severely limit the +usefulness of the package + + + + +Suggests, to specify a package which may increase the productivity of the +package + + + + +Conflicts, to specify a package which must NOT be installed in order for the +package to be configured + + + + +Breaks, to specify a package which is broken by the package and which should +therefore not be configured while broken + + + + +Each of these dependencies can specify a version and a depedency on that +version, for example "<= 0.5-1", "== 2.7.2-1", etc. The comparators +available are:- + + + + +"<<" - less than + + + + +"<=" - less than or equal to + + + + +">>" - greater than + + + + +">=" - greater than or equal to + + + + +"==" - equal to + + + + + + +The concept of "virtual packages", which many other packages may provide, +using the Provides mechanism. An example of this is the "httpd" virtual +package, which all web servers should provide. Virtual package names may be +used in dependency headers. However, current policy is that virtual packages +do not support version numbers, so dependencies on virtual packages with +versions will always fail. + + + + +Several other control fields, such as Package, Version, Description, Section, +Priority, etc., which are mainly for classification purposes. The package +name must consist entirely of lowercase characters, plus the characters '+', +'-', and '.'. Fields can extend across multiple lines - on the second and +subsequent lines, there is a space at the beginning instead of a field name +and a ':'. Empty lines must consist of the text " .", which will be ignored, +as will the initial space for other continuation lines. This feature is +usually only used in the Description field. + + + +
+ +
The dpkg status area + +The "dpkg status area" is the term used to refer to the directory where dpkg +keeps its various status files (GNU would have you call it the dpkg shared +state directory). This is always, on Debian systems, /var/lib/dpkg. However, +the default directory name should not be hard-coded, but #define'd, so that +alteration is possible (it is available via configure in dpkg 1.4.0.9 and +above). Of course, in a library, code should be allowed to override the +default directory, but the default should be part of the library (so that +the user may change the dpkg admin dir simply by replacing the library). + + +Dpkg keeps a variety of files in its status area. These are discussed later +on in this document, but a quick summary of the files is here:- + + + + +available - this file contains a concatenation of control information from all +the packages which dpkg knows about. This is updated using the dpkg commands +"--update-avail <file>", "--merge-avail <file>", and +"--clear-avail". + + + + +status - this file contains information on the following things for every +package:- + + + + +Whether it is installed, not installed, unpacked, removed, failed +configuration, or half-installed (deconfigured in favour of another package). + + + + +Whether it is selected as install, hold, remove, or purge. + + + + +If it is "ok" (no installation problems), or "not-ok". + + + + +It usually also contains the section and priority (so that dselect may classify +packages not in available) + + + + +For packages which did not initially appear in the "available" file when they +were installed, the other control information for them. + + + + +The exact format for the "Status:" field is: + + + Status: Want Flag Status + + +Where Want may be one of +unknown, install, +hold, deinstall, +purge. Flag may +be one of ok, reinstreq, +hold, +hold-reinstreq. Status may +be one of not-installed, unpacked, +half-configured, installed, +half-installed config-files, +post-inst-failed, removal-failed. +The states are as follows:- + + + +not-installed + + +No files are installed from the package, it has no config files left, it +uninstalled cleanly if it ever was installed. + + + + +unpacked + + +The basic files have been unpacked (and are listed in +/var/lib/dpkg/info/[package].list. There are config files present, but the +postinst script has _NOT_ been run. + + + + +half-configured + + +The package was installed and unpacked, but the postinst script failed in some +way. + + + + +installed + + +All files for the package are installed, and the configuration was also +successful. + + + + +half-installed + + +An attempt was made to remove the packagem but there was a failure in the +prerm script. + + + + +config-files + + +The package was "removed", not "purged". The config files are left, but +nothing else. + + + + +post-inst-failed + + +Old name for half-configured. Do not use. + + + + +removal-failed + + +Old name for half-installed. Do not use. + + + + + +The two last items are only left in dpkg for compatibility - they are +understood by it, but never written out in this form. + + +Please see the dpkg source code, lib/parshelp.c, +statusinfos, eflaginfos and +wantinfos for more details. + + + + +info - this directory contains files from the control archive of every +package currently installed. They are installed with a prefix of +"<packagename>.". In addition to this, it also contains a file +called <package>.list for every package, which contains a list +of files. Note also that the control file is not copied into here; it +is instead found as part of status or available. + + + + +methods - this directory is reserved for "method"-specific files - each +"method" has a subdirectory underneath this directory (or at least, +it can have). In addition, there is another subdirectory "mnt", where +misc. filesystems (floppies, CD-ROMs, etc.) are mounted. + + + + +alternatives - directory used by the "update-alternatives" program. It +contains one file for each "alternatives" interface, which contains +information about all the needed symlinked files for each alternative. + + + + +diversions - file used by the "dpkg-divert" program. Each diversion takes +three lines. The first is the package name (or ":" for user diversion), the +second the original filename, and the third the diverted filename. + + + + +updates - directory used internally by dpkg. This is discussed later, in the +section . + + + + +parts - temporary directory used by dpkg-split + + + +
+ +
The dpkg library files + +These files are installed under /usr/lib/dpkg (usually), but +/usr/local/lib/dpkg is also a possibility (as Debian policy dictates). Under +this directory, there is a "methods" subdirectory. The methods subdirectory in +turn contains any number of subdirectories for each general method processor +(note that one set of method scripts can, and is, used for more than one of +the methods listed under dselect). + + +The following files may be found in each of these subdirectories:- + + + + +names - One line per method, two-digit priority to appear on menu at +beginning, followed by a space, the name, and then another space and +the short description. + + + + +desc.<name> - Contains the long description displayed by dselect +when the cursor is put over the <name> method. + + + + +setup - Script or program which sets up the initial values to be used +by this method. Called with first argument as the status area directory +(/var/lib/dpkg), second argument as the name of the method (as in the +directory name), and the third argument as the option (as in the names file). + + + + +install - Script/program called when the "install" option of dselect is run +with this method. Same arguments as for setup. + + + + +update - Script/program called when the "update" option of dselect is +run. Same arguments as for setup/install. + + + +
+ +
The "dpkg" command-line utility + +
"Documented" command-line interfaces + +As yet unwritten. You can refer to the other manuals for now. See +dpkg8. + +
+ +
Environment variables which dpkg responds to + + + +DPKG_NO_TSTP - if set to a non-null value, this variable causes dpkg to run a +child shell process instead of sending itself a SIGTSTP, when the user selects +to background the dpkg process when it asks about conffiles. + + + + +SHELL - used to determine which shell to run in the case when DPKG_NO_TSTP +is set. + + + + +CC - used as the C compiler to call to determine the target architecture. The +default is "gcc". + + + + +PATH - dpkg checks that it can find at least the following files in the path +when it wants to run package installation scripts, and gives an error if it +cannot find all of them:- + + + + +ldconfig + + + + +start-stop-daemon + + + + +install-info + + + + +update-rc.d + + + + + +
+ +
Assertions + +The dpkg utility itself is required for quite a number of packages, even if +they have been installed with a tool totally separate from dpkg. The reason +for this is that some packages, in their pre-installation scripts, check that +your version of dpkg supports certain features. This was broken from the +start, and it should have actually been a control file header "Dpkg-requires", +or similar. What happens is that the configuration scripts will abort or +continue according to the exit code of a call to dpkg, which will stop them +from being wrongly configured. + + +These special command-line options, which simply return as true or false are +all prefixed with "--assert-". Here is a list of them (without the prefix):- + + + + +support-predepends - Returns success or failure according to whether a version +of dpkg which supports predepends properly (1.1.0 or above) is installed, +according to the database. + + + + +working-epoch - Return success or failure according to whether a version of +dpkg which supports epochs in version properly (1.4.0.7 or above) is installed, +according to the database. + + + + +Both these options check the status database to see what version of the +"dpkg" package is installed, and check it against a known working version. + +
+ +
--predep-package + +This strange option is described as follows in the source code: + + +/* Print a single package which: + * (a) is the target of one or more relevant predependencies. + * (b) has itself no unsatisfied pre-dependencies. + * If such a package is present output is the Packages file entry, + * which can be massaged as appropriate. + * Exit status: + * 0 = a package printed, OK + * 1 = no suitable package available + * 2 = error + */ + + +On further inspection of the source code, it appears that what is does is +this:- + + + + +Looks at the packages in the database which are selected as "install", +and are installed. + + + + +It then looks at the Pre-Depends information for each of these packages +from the available file. When it find a package for which any of the +pre-dependencies are not satisfied, it breaks from the loop through the +packages. + + + + +It then looks through the unsatisfied pre-dependencies, and looks for +packages which would satisfy this pre-dependency, stopping on the first +it finds. If it finds none, it bombs out with an error. + + + + +It then continues this for every dependency of the initial package. + + + + +Eventually, it writes out the record of all the packages to satisfy the +pre-dependencies. This is used by the disk method to make sure that its +dependency ordering is correct. What happens is that all pre-depending +packages are first installed, then it runs dpkg -iGROEB on the directory, +which installs in the order package files are found. Since pre-dependencies +mean that a package may not even be unpacked unless they are satisfied, it +is necessary to do this (usually, since all the package files are unpacked +in one phase, the configured in another, this is not needed). + +
+ +
+ +
+ +dpkg-deb and .deb file internals + +This chapter describes the internals to the "dpkg-deb" tool, which is used by +"dpkg" as a back-end. dpkg-deb has its own tar extraction functions, which is +the source of many problems, as it does not support long filenames, using +extension blocks. + + +
The .deb archive format + +The main principal of the new-format Debian archive (I won't describe the old +format - for that have a look at deb-old.5), is that the archive really is an +archive - as used by "ar" and friends. However, dpkg-deb uses this format +internally, rather than calling "ar". Inside this archive, there are usually +the following members:- + + + + +debian-binary + + + + +control.tar.gz + + + + +data.tar.gz + + + + +The debian-binary member consists simply of the string "2.0", indicating +the format version. control.tar.gz contains the control files (and scripts), +and the data.tar.gz contains the actual files to populate the filesystem +with. Both tarfiles extract straight into the current directory. Information +on the tar formats can be found in the GNU tar info page. Since dpkg-deb +calls "tar -cf" to build packages, the Debian packages use the GNU extensions. + +
+ +
The dpkg-deb command-line + +dpkg-deb documents itself thoroughly with its '--help' command-line +option. However, I am including a reference to these for +completeness. dpkg-deb supports the following options:- + + + + +--build (-b) <dir> - builds a .deb archive, takes a directory which +contains all the files as an argument. Note that the directory +<dir>/DEBIAN will be packed separately into the control archive. + + + + +--contents (-c) <debfile> - Lists the contents of the "data.tar.gz" +member. + + + + +--control (-e) <debfile> - Extracts the control archive into a directory +called DEBIAN. Alternatively, with another argument, it will extract it into a +different directory. + + + + +--info (-I) <debfile> - Prints the contents of the "control" file in the +control archive to stdout. Alternatively, giving it other arguments will cause +it to print the contents of those files instead. + + + + +--field (-f) <debfile> <field> ... - Prints any number of fields +from the "control" file. Giving it extra arguments limits the fields it prints +to only those specified. With no command-line arguments other than a filename, +it is equivalent to -I and just the .deb filename. + + + + +--extract (-x) <debfile> <dir> - Extracts the data archive of a +debian package under the directory <dir>. + + + + +--vextract (-X) <debfile> <dir> - Same as --extract, except it +is equivalent of giving tar the '-v' option - it prints the filenames as it +extracts them. + + + + +--fsys-tarfile <debfile> - This option outputs a gunzip'd version of +data.tar.gz to stdout. + + + + +--new - sets the archive format to be used to the new Debian format + + + + +--old - sets the archive format to be used to the old Debian format + + + + +--debug - Tells dpkg-deb to produce debugging output + + + + +--nocheck - Tells dpkg-deb not to check the sanity of the control file + + + + +--help (-h) - Gives a help message + + + + +--version - Shows the version number + + + + +--licence/--license (UK/US spellings) - Shows a brief outline of the GPL + + + + +
Internal checks used by dpkg-deb when building packages + +Here is a list of the internal checks used by dpkg-deb when building +packages. It is in the order they are done. + + + + +First, the output Debian archive argument, if it is given, is checked using +stat. If it is a directory, an internal flag is set. This check is only made +if the archive name is specified explicitly on the command-line. If the +argument was not given, the default is the directory name, with ".deb" +appended. + + + + +Next, the control file is checked, unless the --nocheck flag was specified on +the command-line. dpkg-deb will bomb out if the second argument to --build was +a directory, and --nocheck was specified. Note that dpkg-deb will not be able +to determine the name of the package in this case. In the control file, the +following things are checked:- + + + + +The package name is checked to see if it contains any invalid characters (see + for this). + + + + +The priority field is checked to see if it uses standard values, and +user-defined values are warned against. However, note that this check is now +redundant, since the control file no longer contains the priority - the +changes file now does this. + + + + +The control file fields are then checked against the standard list of fields +which appear in control files, and any "user-defined" fields are reported as +warnings. + + + + +dpkg-deb then checks that the control file contains a valid version number. + + + + + + +After this, in the case where a directory was specified to build the .deb file +in, the filename is created as "directory/pkg_ver.deb" or +"directory/pkg_ver_arch.deb", depending on whether the control file contains +an architecture field. + + + + +Next, dpkg-deb checks for the <dir>/DEBIAN directory. It complains if it +doesn't exist, or if it has permissions < 0755, or > 0775. + + + + +It then checks that all the files in this subdir are either symlinks or plain +files, and have permissions between 0555 and 0775. + + + + +The conffiles file is then checked to see if the filenames are too +long. Warnings are produced for each that is. After this, it checks +that the package provides initial copies of each of these conffiles, +and that they are all plain files. + + + +
+ +
+ +
+ +dpkg internals + +This chapter describes the internals of dpkg itself. Although the low-level +formats are quite simple, what dpkg does in certain cases often does not make +sense. + + +
Updates + +This describes the /var/lib/dpkg/updates directory. The function of this +directory is somewhat strange, and seems only to be used internally. A +function called cleanupdates is called whenever the database is scanned. This +function in turn uses +scandir3, +to sort the files in this directory. Files who names do not consist entirely +of digits are discarded. dpkg also causes a fatal error if any of the +filenames are different lengths. + + +After having scanned the directory, dpkg in turn parses each file the same way +it parses the status file (they are sorted by the scandir to be in numerical +order). After having done this, it then writes the status information back to +the "status" file, and removes all the "updates" files. + + +These files are created internally by dpkg's "checkpoint" function, and are +cleaned up when dpkg exits cleanly. + + +Juding by the use of the updates directory I would call it a Journal. Inorder +to efficiently ensure the complete integrity of the status file dpkg will +"checkpoint" or journal all of it's activities in the updates directory. By +merging the contents of the updates directory (in order!!) against the original +status file it can get the precise current state of the system, even in the +event of a system failure while dpkg is running. + + +The other option would be to sync-rewrite the status file after each operation, +which would kill performance. + + +It is very important that any program that uses the status file abort if the +updates directory is not empty! The user should be informed to run dpkg +manually (what options though??) to correct the situation. + +
+ +
What happens when dpkg reads the database + +First, the status file is read. This gives dpkg an initial idea of the +packages that are there. Next, the updates files are read in, overriding the +status file, and if necessary, the status file is re-written, and updates files +are removed. Finally, the available file is read. The available file is read +with flags which preclude dpkg from updating any status information from it, +though - installed version, etc., and is also told to record that the packages +it reads this time are available, not installed. + + +More information on updates is given above. + +
+ +
How dpkg compares version numbers + +Version numbers consist of three parts: the epoch, the upstream version, and +the Debian revision. Dpkg compares these parts in that order. If the epochs +are different, it returns immediately, and so on. + + +However, the important part is how it compares the versions which are +essentially stored as just strings. These are compared in two distinct +parts: those consisting of numerical characters (which are evaluated, and +then compared), and those consisting of other characters. When comparing +non-numerical parts, they are compared as the character values (ASCII), +but non-alphabetical characters are considered "greater than" alphabetical +ones. Also note that longer strings (after excluding differences where +numerical values are equal) are considered "greater than" shorter ones. + + +Here are a few examples of how these rules apply:- + + +15 > 10 +0010 == 10 + +d.r > dsr +32.d.r == 0032.d.r +d.rnr < d.rnrn + +
+ +
+ +
diff --git a/doc/dpkg-tech.sgml b/doc/dpkg-tech.sgml deleted file mode 100644 index ce0c5fa83..000000000 --- a/doc/dpkg-tech.sgml +++ /dev/null @@ -1,511 +0,0 @@ - - -dpkg technical manual - -Tom Lees tom@lpsg.demon.co.uk -$Id: dpkg-tech.sgml,v 1.3 2003/02/12 15:05:45 doogie Exp $ - - -This document describes the minimum necessary workings for the APT dselect -replacement. It gives an overall specification of what its external interface -must look like for compatibility, and also gives details of some internal -quirks. - - - -Copyright © Tom Lees, 1997. -

-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. - -

-For more details, on Debian systems, see the file -/usr/share/common-licenses/GPL for the full license. - - - - -Quick summary of dpkg's external interface -Control files - -

-The basic dpkg package control file supports the following major features:- - - -5 types of dependencies:- - - Pre-Depends, which must be satisfied before a package may be - unpacked - Depends, which must be satisfied before a package may be - configured - Recommends, to specify a package which if not installed may - severely limit the usefulness of the package - Suggests, to specify a package which may increase the - productivity of the package - Conflicts, to specify a package which must NOT be installed - in order for the package to be configured - Breaks, to specify a package which is broken by the - package and which should therefore not be configured while broken - -Each of these dependencies can specify a version and a depedency on that -version, for example "<= 0.5-1", "== 2.7.2-1", etc. The comparators available -are:- - - "<<" - less than - "<=" - less than or equal to - ">>" - greater than - ">=" - greater than or equal to - "==" - equal to - -The concept of "virtual packages", which many other packages may provide, -using the Provides mechanism. An example of this is the "httpd" virtual package, -which all web servers should provide. Virtual package names may be used in -dependency headers. However, current policy is that virtual packages do not -support version numbers, so dependencies on virtual packages with versions -will always fail. -Several other control fields, such as Package, Version, Description, -Section, Priority, etc., which are mainly for classification purposes. The -package name must consist entirely of lowercase characters, plus the characters -'+', '-', and '.'. Fields can extend across multiple lines - on the second -and subsequent lines, there is a space at the beginning instead of a field -name and a ':'. Empty lines must consist of the text " .", which will be -ignored, as will the initial space for other continuation lines. This feature -is usually only used in the Description field. - - -The dpkg status area - -

-The "dpkg status area" is the term used to refer to the directory where dpkg -keeps its various status files (GNU would have you call it the dpkg shared -state directory). This is always, on Debian systems, /var/lib/dpkg. However, -the default directory name should not be hard-coded, but #define'd, so that -alteration is possible (it is available via configure in dpkg 1.4.0.9 and -above). Of course, in a library, code should be allowed to override the -default directory, but the default should be part of the library (so that -the user may change the dpkg admin dir simply by replacing the library). - -

-Dpkg keeps a variety of files in its status area. These are discussed later -on in this document, but a quick summary of the files is here:- - - -available - this file contains a concatenation of control information -from all the packages which dpkg knows about. This is updated using the dpkg -commands "--update-avail <file>", "--merge-avail <file>", and -"--clear-avail". -status - this file contains information on the following things for -every package:- - - Whether it is installed, not installed, unpacked, removed, - failed configuration, or half-installed (deconfigured in - favour of another package). - Whether it is selected as install, hold, remove, or purge. - If it is "ok" (no installation problems), or "not-ok". - It usually also contains the section and priority (so that - dselect may classify packages not in available) - For packages which did not initially appear in the "available" - file when they were installed, the other control information - for them. - -

- The exact format for the "Status:" field is: - - Status: Want Flag Status - - Where Want may be one of unknown, install, - hold, deinstall, purge. Flag - may be one of ok, reinstreq, hold, - hold-reinstreq. - Status may be one of not-installed, unpacked, - half-configured, installed, half-installed - config-files, post-inst-failed, removal-failed. - The states are as follows:- - - not-installed - No files are installed from the package, it has no config files - left, it uninstalled cleanly if it ever was installed. - unpacked - The basic files have been unpacked (and are listed in - /var/lib/dpkg/info/[package].list. There are config files present, - but the postinst script has _NOT_ been run. - half-configured - The package was installed and unpacked, but the postinst script - failed in some way. - installed - All files for the package are installed, and the configuration - was also successful. - half-installed - An attempt was made to remove the packagem but there was a failure - in the prerm script. - config-files - The package was "removed", not "purged". The config files are left, - but nothing else. - post-inst-failed - Old name for half-configured. Do not use. - removal-failed - Old name for half-installed. Do not use. - - The two last items are only left in dpkg for compatibility - they are - understood by it, but never written out in this form. - -

- Please see the dpkg source code, lib/parshelp.c, - statusinfos, eflaginfos and wantinfos for more - details. - -info - this directory contains files from the control archive of every -package currently installed. They are installed with a prefix of "<packagename>.". -In addition to this, it also contains a file called <package>.list for every -package, which contains a list of files. Note also that the control file is -not copied into here; it is instead found as part of status or available. -methods - this directory is reserved for "method"-specific files - each -"method" has a subdirectory underneath this directory (or at least, it can -have). In addition, there is another subdirectory "mnt", where misc. -filesystems (floppies, CD-ROMs, etc.) are mounted. -alternatives - directory used by the "update-alternatives" program. It -contains one file for each "alternatives" interface, which contains information -about all the needed symlinked files for each alternative. -diversions - file used by the "dpkg-divert" program. Each diversion takes -three lines. The first is the package name (or ":" for user diversion), the -second the original filename, and the third the diverted filename. -updates - directory used internally by dpkg. This is discussed later, -in the section . -parts - temporary directory used by dpkg-split - - -The dpkg library files - -

-These files are installed under /usr/lib/dpkg (usually), but -/usr/local/lib/dpkg is also a possibility (as Debian policy dictates). Under -this directory, there is a "methods" subdirectory. The methods subdirectory -in turn contains any number of subdirectories for each general method -processor (note that one set of method scripts can, and is, used for more than -one of the methods listed under dselect). - -

-The following files may be found in each of these subdirectories:- - - -names - One line per method, two-digit priority to appear on menu -at beginning, followed by a space, the name, and then another space and the -short description. -desc.<name> - Contains the long description displayed by dselect -when the cursor is put over the <name> method. -setup - Script or program which sets up the initial values to be used -by this method. Called with first argument as the status area directory -(/var/lib/dpkg), second argument as the name of the method (as in the directory -name), and the third argument as the option (as in the names file). -install - Script/program called when the "install" option of dselect is -run with this method. Same arguments as for setup. -update - Script/program called when the "update" option of dselect is -run. Same arguments as for setup/install. - - -The "dpkg" command-line utility - -"Documented" command-line interfaces - -

-As yet unwritten. You can refer to the other manuals for now. See -. - -Environment variables which dpkg responds to - -

- -DPKG_NO_TSTP - if set to a non-null value, this variable causes dpkg to -run a child shell process instead of sending itself a SIGTSTP, when the user -selects to background the dpkg process when it asks about conffiles. -SHELL - used to determine which shell to run in the case when -DPKG_NO_TSTP is set. -CC - used as the C compiler to call to determine the target architecture. -The default is "gcc". -PATH - dpkg checks that it can find at least the following files in the -path when it wants to run package installation scripts, and gives an error if -it cannot find all of them:- - - ldconfig - start-stop-daemon - install-info - update-rc.d - - - -Assertions - -

-The dpkg utility itself is required for quite a number of packages, even if -they have been installed with a tool totally separate from dpkg. The reason for -this is that some packages, in their pre-installation scripts, check that your -version of dpkg supports certain features. This was broken from the start, and -it should have actually been a control file header "Dpkg-requires", or similar. -What happens is that the configuration scripts will abort or continue according -to the exit code of a call to dpkg, which will stop them from being wrongly -configured. - -

-These special command-line options, which simply return as true or false are -all prefixed with "--assert-". Here is a list of them (without the prefix):- - - -support-predepends - Returns success or failure according to whether -a version of dpkg which supports predepends properly (1.1.0 or above) is -installed, according to the database. -working-epoch - Return success or failure according to whether a version -of dpkg which supports epochs in version properly (1.4.0.7 or above) is -installed, according to the database. - - -

-Both these options check the status database to see what version of the "dpkg" -package is installed, and check it against a known working version. - ---predep-package - -

-This strange option is described as follows in the source code: - - -/* Print a single package which: - * (a) is the target of one or more relevant predependencies. - * (b) has itself no unsatisfied pre-dependencies. - * If such a package is present output is the Packages file entry, - * which can be massaged as appropriate. - * Exit status: - * 0 = a package printed, OK - * 1 = no suitable package available - * 2 = error - */ - - -

-On further inspection of the source code, it appears that what is does is -this:- - - -Looks at the packages in the database which are selected as "install", -and are installed. -It then looks at the Pre-Depends information for each of these packages -from the available file. When it find a package for which any of the -pre-dependencies are not satisfied, it breaks from the loop through the packages. -It then looks through the unsatisfied pre-dependencies, and looks for -packages which would satisfy this pre-dependency, stopping on the first it -finds. If it finds none, it bombs out with an error. -It then continues this for every dependency of the initial package. - - -Eventually, it writes out the record of all the packages to satisfy the -pre-dependencies. This is used by the disk method to make sure that its -dependency ordering is correct. What happens is that all pre-depending -packages are first installed, then it runs dpkg -iGROEB on the directory, -which installs in the order package files are found. Since pre-dependencies -mean that a package may not even be unpacked unless they are satisfied, it is -necessary to do this (usually, since all the package files are unpacked in one -phase, the configured in another, this is not needed). - -dpkg-deb and .deb file internals - -

-This chapter describes the internals to the "dpkg-deb" tool, which is used -by "dpkg" as a back-end. dpkg-deb has its own tar extraction functions, which -is the source of many problems, as it does not support long filenames, using -extension blocks. - -The .deb archive format - -

-The main principal of the new-format Debian archive (I won't describe the old -format - for that have a look at deb-old.5), is that the archive really is -an archive - as used by "ar" and friends. However, dpkg-deb uses this format -internally, rather than calling "ar". Inside this archive, there are usually -the following members:- - - -debian-binary -control.tar.gz -data.tar.gz - - -

-The debian-binary member consists simply of the string "2.0", indicating the -format version. control.tar.gz contains the control files (and scripts), and -the data.tar.gz contains the actual files to populate the filesystem with. -Both tarfiles extract straight into the current directory. Information on the -tar formats can be found in the GNU tar info page. Since dpkg-deb calls -"tar -cf" to build packages, the Debian packages use the GNU extensions. - -The dpkg-deb command-line - -

-dpkg-deb documents itself thoroughly with its '--help' command-line option. -However, I am including a reference to these for completeness. dpkg-deb -supports the following options:- - - ---build (-b) <dir> - builds a .deb archive, takes a directory which -contains all the files as an argument. Note that the directory -<dir>/DEBIAN will be packed separately into the control archive. ---contents (-c) <debfile> - Lists the contents of the "data.tar.gz" -member. ---control (-e) <debfile> - Extracts the control archive into a -directory called DEBIAN. Alternatively, with another argument, it will extract -it into a different directory. ---info (-I) <debfile> - Prints the contents of the "control" file -in the control archive to stdout. Alternatively, giving it other arguments will -cause it to print the contents of those files instead. ---field (-f) <debfile> <field> ... - Prints any number of -fields from the "control" file. Giving it extra arguments limits the fields it -prints to only those specified. With no command-line arguments other than a -filename, it is equivalent to -I and just the .deb filename. ---extract (-x) <debfile> <dir> - Extracts the data archive -of a debian package under the directory <dir>. ---vextract (-X) <debfile> <dir> - Same as --extract, except -it is equivalent of giving tar the '-v' option - it prints the filenames as -it extracts them. ---fsys-tarfile <debfile> - This option outputs a gunzip'd version -of data.tar.gz to stdout. ---new - sets the archive format to be used to the new Debian format ---old - sets the archive format to be used to the old Debian format ---debug - Tells dpkg-deb to produce debugging output ---nocheck - Tells dpkg-deb not to check the sanity of the control file ---help (-h) - Gives a help message ---version - Shows the version number ---licence/--license (UK/US spellings) - Shows a brief outline of the GPL - - -Internal checks used by dpkg-deb when building packages - -

-Here is a list of the internal checks used by dpkg-deb when building packages. -It is in the order they are done. - - -First, the output Debian archive argument, if it is given, is checked -using stat. If it is a directory, an internal flag is set. This check is only -made if the archive name is specified explicitly on the command-line. If the -argument was not given, the default is the directory name, with ".deb" -appended. -Next, the control file is checked, unless the --nocheck flag was -specified on the command-line. dpkg-deb will bomb out if the second argument -to --build was a directory, and --nocheck was specified. Note that dpkg-deb -will not be able to determine the name of the package in this case. In the -control file, the following things are checked:- - - The package name is checked to see if it contains any invalid - characters (see for this). - The priority field is checked to see if it uses standard values, - and user-defined values are warned against. However, note that this - check is now redundant, since the control file no longer contains - the priority - the changes file now does this. - The control file fields are then checked against the standard - list of fields which appear in control files, and any "user-defined" - fields are reported as warnings. - dpkg-deb then checks that the control file contains a valid - version number. - -After this, in the case where a directory was specified to build the -.deb file in, the filename is created as "directory/pkg_ver.deb" or -"directory/pkg_ver_arch.deb", depending on whether the control file contains -an architecture field. -Next, dpkg-deb checks for the <dir>/DEBIAN directory. It complains -if it doesn't exist, or if it has permissions < 0755, or > 0775. -It then checks that all the files in this subdir are either symlinks -or plain files, and have permissions between 0555 and 0775. -The conffiles file is then checked to see if the filenames are too -long. Warnings are produced for each that is. After this, it checks that -the package provides initial copies of each of these conffiles, and that -they are all plain files. - - -dpkg internals - -

-This chapter describes the internals of dpkg itself. Although the low-level -formats are quite simple, what dpkg does in certain cases often does not -make sense. - -Updates - -

-This describes the /var/lib/dpkg/updates directory. The function of this -directory is somewhat strange, and seems only to be used internally. A function -called cleanupdates is called whenever the database is scanned. This function -in turn uses , to sort the files in this -directory. Files who names do not consist entirely of digits are discarded. -dpkg also causes a fatal error if any of the filenames are different lengths. - -

-After having scanned the directory, dpkg in turn parses each file the same way -it parses the status file (they are sorted by the scandir to be in numerical -order). After having done this, it then writes the status information back -to the "status" file, and removes all the "updates" files. - -

-These files are created internally by dpkg's "checkpoint" function, and are -cleaned up when dpkg exits cleanly. - -

-Juding by the use of the updates directory I would call it a Journal. Inorder -to efficiently ensure the complete integrity of the status file dpkg will -"checkpoint" or journal all of it's activities in the updates directory. By -merging the contents of the updates directory (in order!!) against the -original status file it can get the precise current state of the system, -even in the event of a system failure while dpkg is running. - -

-The other option would be to sync-rewrite the status file after each -operation, which would kill performance. - -

-It is very important that any program that uses the status file abort if -the updates directory is not empty! The user should be informed to run dpkg -manually (what options though??) to correct the situation. - -What happens when dpkg reads the database - -

-First, the status file is read. This gives dpkg an initial idea of the packages -that are there. Next, the updates files are read in, overriding the status -file, and if necessary, the status file is re-written, and updates files are -removed. Finally, the available file is read. The available file is read -with flags which preclude dpkg from updating any status information from it, -though - installed version, etc., and is also told to record that the packages -it reads this time are available, not installed. - -

-More information on updates is given above. - -How dpkg compares version numbers - -

-Version numbers consist of three parts: the epoch, the upstream version, and -the Debian revision. Dpkg compares these parts in that order. If the epochs -are different, it returns immediately, and so on. - -

-However, the important part is how it compares the versions which are -essentially stored as just strings. These are compared in two distinct parts: -those consisting of numerical characters (which are evaluated, and then -compared), and those consisting of other characters. When comparing -non-numerical parts, they are compared as the character values (ASCII), but -non-alphabetical characters are considered "greater than" alphabetical ones. -Also note that longer strings (after excluding differences where numerical -values are equal) are considered "greater than" shorter ones. - -

-Here are a few examples of how these rules apply:- - - -15 > 10 -0010 == 10 - -d.r > dsr -32.d.r == 0032.d.r -d.rnr < d.rnrn - - - diff --git a/doc/external-dependency-solver-protocol.txt b/doc/external-dependency-solver-protocol.txt index 790f2f1ee..14e9528c8 100644 --- a/doc/external-dependency-solver-protocol.txt +++ b/doc/external-dependency-solver-protocol.txt @@ -5,6 +5,14 @@ external dependency solvers. The protocol is called APT EDSP, for "APT External Dependency Solver Protocol". +## Terminology + +In the following we use the term **architecture qualified package name** +(or *arch-qualified package names* for short) to refer to package +identifiers of the form "package:arch" where "package" is a package name +and "arch" a dpkg architecture. + + ## Components - **APT**: we know this one. @@ -62,6 +70,7 @@ configuration documentation for more, and more up to date, information. - **Dir::Bin::Solvers**: absolute path of the directory where to look for external solvers. Defaults to `/usr/lib/apt/solvers`. + ## Protocol When configured to use an external solver, APT will resort to it to @@ -132,9 +141,9 @@ The following **configuration fields** are supported in request stanzas: The following **action fields** are supported in request stanzas: - **Install:** (optional, defaults to the empty string) A space - separated list of package names, with *no version attached*, to - install. This field denotes a list of packages that the user wants to - install, usually via an APT `install` request. + separated list of arch-qualified package names, with *no version + attached*, to install. This field denotes a list of packages that the + user wants to install, usually via an APT `install` request. - **Remove:** (optional, defaults to the empty string) Same syntax of Install. This field denotes a list of packages that the user wants to @@ -201,7 +210,7 @@ field. The following fields are supported in package stanzas: - **APT-Candidate:** (optional, defaults to `no`). Allowed values: `yes`, `no`. When set to `yes`, the corresponding package is the APT candidate for installation among all available packages with the same - name. + name and architecture. - **APT-Automatic:** (optional, defaults to `no`). Allowed values: `yes`, `no`. When set to `yes`, the corresponding package is marked by @@ -218,6 +227,7 @@ field. The following fields are supported in package stanzas: Release file entry (Origin, Label, Codename, etc.) in the format of APT_PREFERENCES(5). + ### Answer An answer from the external solver to APT is either a *solution* or an @@ -226,11 +236,11 @@ An answer from the external solver to APT is either a *solution* or an The following invariant on **exit codes** must hold true. When the external solver is *able to find a solution*, it will write the solution to standard output and then exit with an exit code of 0. When the -external solver is *unable to find a solution* (and s aware of that), it -will write an error to standard output and then exit with an exit code -of 0. An exit code other than 0 will be interpreted as a solver crash -with no meaningful error about dependency resolution to convey to the -user. +external solver is *unable to find a solution* (and is aware of that), +it will write an error to standard output and then exit with an exit +code of 0. An exit code other than 0 will be interpreted as a solver +crash with no meaningful error about dependency resolution to convey to +the user. #### Solution diff --git a/doc/files.dbk b/doc/files.dbk new file mode 100644 index 000000000..675c92664 --- /dev/null +++ b/doc/files.dbk @@ -0,0 +1,392 @@ + + + %aptverbatiment; +]> + + + +APT Files + + + + + + Jason Gunthorpejgg@debian.org + + + +Version &apt-product-version; + + + +This document describes the complete implementation and format of the installed +APT directory structure. It also serves as guide to how APT views the Debian +archive. + + + +1998-1999Jason Gunthorpe + + +License Notice + +"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. + + +For more details, on Debian systems, see the file +/usr/share/common-licenses/GPL for the full license. + + + + + +Introduction + +

General + +This document serves two purposes. The first is to document the installed +directory structure and the format and purpose of each file. The second +purpose is to document how APT views the Debian archive and deals with multiple +package files. + + +The var directory structure is as follows: + + + /var/lib/apt/ + lists/ + partial/ + periodic/ + extended_states + cdroms.list + /var/cache/apt/ + archives/ + partial/ + pkgcache.bin + srcpkgcache.bin + /etc/apt/ + sources.list.d/ + apt.conf.d/ + preferences.d/ + trusted.gpg.d/ + sources.list + apt.conf + apt_preferences + trusted.gpg + /usr/lib/apt/ + methods/ + bzip2 + cdrom + copy + file + ftp + gpgv + gzip + http + https + lzma + rred + rsh + ssh + + +As is specified in the FHS 2.1 /var/lib/apt is used for application data that +is not expected to be user modified. /var/cache/apt is used for regeneratable +data and is where the package cache and downloaded .debs go. /etc/apt is the +place where configuration should happen and /usr/lib/apt is the place where the +apt and other packages can place binaries which can be used by the acquire +system of APT. + +
+ + + +Files + +
Files and fragment directories in /etc/apt + +All files in /etc/apt are used to modify specific aspects of APT. To enable +other packages to ship needed configuration herself all these files have a +fragment directory packages can place their files in instead of mangling with +the main files. The main files are therefore considered to be only used by the +user and not by a package. The documentation omits this directories most of +the time to be easier readable, so every time the documentation includes a +reference to a main file it really means the file or the fragment directories. + +
+ +
Distribution Source list (sources.list) + +The distribution source list is used to locate archives of the debian +distribution. It is designed to support any number of active sources and to +support a mix of source media. The file lists one source per line, with the +fastest source listed first. The format of each line is: + + +type uri args + + +The first item, type, indicates the format for the +remainder of the line. It is designed to indicate the structure of the +distribution the line is talking about. Currently the only defined values are +deb and deb-src which indicate a +standard debian (source) archive with a dists directory. More about these +types and the URI specification can be found in the sources.list manpage. + + +
Hashing the URI + +All permanent information acquired from any of the sources is stored in the +lists directory. Thus, there must be a way to relate the filename in the lists +directory to a line in the sourcelist. To simplify things this is done by +quoting the URI and treating _'s as quoteable characters and converting / +to _. The URI spec says this is done by converting a sensitive character +into %xx where xx is the hexadecimal representation from the ASCII character +set. Examples: + + +http://www.debian.org/archive/dists/stable/binary-i386/Packages +/var/lib/apt/lists/www.debian.org_archive_dists_stable_binary-i386_Packages + +cdrom:Debian 1.3/debian/Packages +/var/lib/apt/info/Debian%201.3_debian_Packages + + +The other alternative that was considered was to use a deep directory structure +but this poses two problems, it makes it very difficult to prune directories +back when sources are no longer used and complicates the handling of the +partial directory. This gives a very simple way to deal with all of the +situations that can arise. Also note that the same rules described in the +Archive Directory section regarding the partial sub dir +apply here as well. + +
+ +
+ +
Extended States File (extended_states) + +The extended_states file serves the same purpose as the normal dpkg status +file (/var/lib/dpkg/status) except that it stores information unique to +apt. This includes currently only the autoflag but is open to store more +unique data that come up over time. It duplicates nothing from the normal +dpkg status file. Please see other APT documentation for a discussion of +the exact internal behavior of these fields. The Package and the Architecture +field are placed directly before the new fields to indicate which package +they apply to. The new fields are as follows: + + + +Auto-Installed + + +The Auto flag can be 1 (Yes) or 0 (No) and controls whether the package was +automatical installed to satisfy a dependency or if the user requested the +installation + + + + +
+ +
Binary Package Cache (srcpkgcache.bin and pkgcache.bin) + +Please see cache.sgml for a complete description of what this file +is. The cache file is updated whenever the contents of the lists +directory changes. If the cache is erased, corrupted or of a non-matching +version it will be automatically rebuilt by all of the tools that need +it. srcpkgcache.bin contains a cache of all of the +package files in the source list. This allows regeneration of the cache +when the status files change to use a prebuilt version for greater speed. + +
+ +
Downloads Directory (archives) + +The archives directory is where all downloaded .deb archives go. When the file +transfer is initiated the deb is placed in partial. Once the file is fully +downloaded and its MD5 hash and size are verified it is moved from partial +into archives/. Any files found in archives/ can be assumed to be verified. + + +No directory structure is transferred from the receiving site and all .deb file +names conform to debian conventions. No short (msdos) filename should be +placed in archives. If the need arises .debs should be unpacked, scanned and +renamed to their correct internal names. This is mostly to prevent file name +conflicts but other programs may depend on this if convenient. A conforming +.deb is one of the form, name_version_arch.deb. Our archive scripts do not +handle epochs, but they are necessary and should be re-inserted. If necessary +_'s and :'s in the fields should be quoted using the % convention. It must be +possible to extract all 3 fields by examining the file name. Downloaded .debs +must be found in one of the package lists with an exact name + version match.. + +
+ +
The Methods Directory (/usr/lib/apt/methods) + +The Methods directory is more fully described in the APT Methods interface +document. + +
+ +
The Configuration File (/etc/apt/apt.conf) + +The configuration file (and the associated fragments directory +/etc/apt/apt.conf.d/) is described in the apt.conf manpage. + +
+ +
The trusted.gpg File (/etc/apt/trusted.gpg) + +The trusted.gpg file (and the files in the associated fragments directory +/etc/apt/trusted.gpg.d/) is a binary file including the keyring used by apt to +validate that the information (e.g. the Release file) it downloads are really +from the distributor it clams to be and is unmodified and is therefore the last +step in the chain of trust between the archive and the end user. This security +system is described in the apt-secure manpage. + +
+ +
The Release File + +This file plays an important role in how APT presents the archive to the +user. Its main purpose is to present a descriptive name for the source of +each version of each package. It also is used to detect when new versions +of debian are released. It augments the package file it is associated with +by providing meta information about the entire archive which the Packages +file describes. + + +The full name of the distribution for presentation to the user is formed as +'label version archive', with a possible extended name being 'label version +archive component'. + + +The file is formed as the package file (RFC-822) with the following tags +defined: + + + +Archive + + +This is the common name we give our archives, such as +stable or unstable. + + + + +Component + + +Refers to the sub-component of the archive, main, +contrib etc. Component may be omitted if there are no +components for this archive. + + + + +Version + + +This is a version string with the same properties as in the Packages file. It +represents the release level of the archive. + + + + +Origin + + +This specifies who is providing this archive. In the case of Debian the string +will read 'Debian'. Other providers may use their own string + + + + +Label + + +This carries the encompassing name of the distribution. For Debian proper this +field reads 'Debian'. For derived distributions it should contain their proper +name. + + + + +Architecture + + +When the archive has packages for a single architecture then the Architecture +is listed here. If a mixed set of systems are represented then this should +contain the keyword mixed. + + + + +NotAutomatic + + +A Yes/No flag indicating that the archive is extremely unstable and its +version's should never be automatically selected. This is to be used by +experimental. + + + + +Description + + +Description is used to describe the release. For instance experimental would +contain a warning that the packages have problems. + + + + + +The location of the Release file in the archive is very important, it must be +located in the same location as the packages file so that it can be located in +all situations. The following is an example for the current stable release, +1.3.1r6 + + +Archive: stable +Component: main +Version: 1.3.1r6 +Origin: Debian +Label: Debian +Architecture: i386 + + +This is an example of experimental, + + +Archive: experimental +Version: 0 +Origin: Debian +Label: Debian +Architecture: mixed +NotAutomatic: Yes + + +And unstable, + + +Archive: unstable +Component: main +Version: 2.1 +Origin: Debian +Label: Debian +Architecture: i386 + +
+ +
+ + +
diff --git a/doc/files.sgml b/doc/files.sgml deleted file mode 100644 index 56c7f574d..000000000 --- a/doc/files.sgml +++ /dev/null @@ -1,345 +0,0 @@ - - - -APT Files - -Jason Gunthorpe jgg@debian.org -$Id: files.sgml,v 1.12 2003/04/26 23:26:13 doogie Exp $ - - -This document describes the complete implementation and format of the -installed APT directory structure. It also serves as guide to how APT -views the Debian archive. - - - -Copyright © Jason Gunthorpe, 1998-1999. -

-"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. - -

-For more details, on Debian systems, see the file -/usr/share/common-licenses/GPL for the full license. - - - - -Introduction - - -General - -

-This document serves two purposes. The first is to document the installed -directory structure and the format and purpose of each file. The second -purpose is to document how APT views the Debian archive and deals with -multiple package files. - -

-The var directory structure is as follows: - - /var/lib/apt/ - lists/ - partial/ - periodic/ - extended_states - cdroms.list - /var/cache/apt/ - archives/ - partial/ - pkgcache.bin - srcpkgcache.bin - /etc/apt/ - sources.list.d/ - apt.conf.d/ - preferences.d/ - trusted.gpg.d/ - sources.list - apt.conf - apt_preferences - trusted.gpg - /usr/lib/apt/ - methods/ - bzip2 - cdrom - copy - file - ftp - gpgv - gzip - http - https - lzma - rred - rsh - ssh - - -

-As is specified in the FHS 2.1 /var/lib/apt is used for application -data that is not expected to be user modified. /var/cache/apt is used -for regeneratable data and is where the package cache and downloaded .debs -go. /etc/apt is the place where configuration should happen and -/usr/lib/apt is the place where the apt and other packages can place -binaries which can be used by the acquire system of APT. - - - -Files - - -Files and fragment directories in /etc/apt - -

-All files in /etc/apt are used to modify specific aspects of APT. To enable -other packages to ship needed configuration herself all these files have -a fragment directory packages can place their files in instead of mangling -with the main files. The main files are therefore considered to be only -used by the user and not by a package. The documentation omits this directories -most of the time to be easier readable, so every time the documentation includes -a reference to a main file it really means the file or the fragment directories. - - - -Distribution Source list (sources.list) - -

-The distribution source list is used to locate archives of the debian -distribution. It is designed to support any number of active sources and to -support a mix of source media. The file lists one source per line, with the -fastest source listed first. The format of each line is: - -

-type uri args - -

-The first item, type, indicates the format for the remainder -of the line. It is designed to indicate the structure of the distribution -the line is talking about. Currently the only defined values are deb -and deb-src which indicate a standard debian (source) archive with a -dists directory. More about these types and the URI specification can be found -in the sources.list manpage. - -Hashing the URI -

-All permanent information acquired from any of the sources is stored in the -lists directory. Thus, there must be a way to relate the filename in the -lists directory to a line in the sourcelist. To simplify things this is -done by quoting the URI and treating _'s as quoteable characters and -converting / to _. The URI spec says this is done by converting a -sensitive character into %xx where xx is the hexadecimal representation -from the ASCII character set. Examples: - - -http://www.debian.org/archive/dists/stable/binary-i386/Packages -/var/lib/apt/lists/www.debian.org_archive_dists_stable_binary-i386_Packages - -cdrom:Debian 1.3/debian/Packages -/var/lib/apt/info/Debian%201.3_debian_Packages - - -

-The other alternative that was considered was to use a deep directory -structure but this poses two problems, it makes it very difficult to prune -directories back when sources are no longer used and complicates the handling -of the partial directory. This gives a very simple way to deal with all -of the situations that can arise. Also note that the same rules described in -the Archive Directory section regarding the partial sub dir apply -here as well. - - - - - - -Extended States File (extended_states) - -

-The extended_states file serves the same purpose as the normal dpkg status file -(/var/lib/dpkg/status) except that it stores information unique to apt. -This includes currently only the autoflag but is open to store more -unique data that come up over time. It duplicates nothing from the normal -dpkg status file. Please see other APT documentation for a discussion -of the exact internal behavior of these fields. The Package and the -Architecture field are placed directly before the new fields to indicate -which package they apply to. The new fields are as follows: - - -Auto-Installed - The Auto flag can be 1 (Yes) or 0 (No) and controls whether the package - was automatical installed to satisfy a dependency or if the user requested - the installation - - - - - -Binary Package Cache (srcpkgcache.bin and pkgcache.bin) - -

-Please see cache.sgml for a complete description of what this file is. The -cache file is updated whenever the contents of the lists directory changes. -If the cache is erased, corrupted or of a non-matching version it will -be automatically rebuilt by all of the tools that need it. -srcpkgcache.bin contains a cache of all of the package files in the -source list. This allows regeneration of the cache when the status files -change to use a prebuilt version for greater speed. - - - - -Downloads Directory (archives) - -

-The archives directory is where all downloaded .deb archives go. When the -file transfer is initiated the deb is placed in partial. Once the file -is fully downloaded and its MD5 hash and size are verified it is moved -from partial into archives/. Any files found in archives/ can be assumed -to be verified. - -

-No directory structure is transferred from the receiving site and all .deb -file names conform to debian conventions. No short (msdos) filename should -be placed in archives. If the need arises .debs should be unpacked, scanned -and renamed to their correct internal names. This is mostly to prevent -file name conflicts but other programs may depend on this if convenient. -A conforming .deb is one of the form, name_version_arch.deb. Our archive -scripts do not handle epochs, but they are necessary and should be re-inserted. -If necessary _'s and :'s in the fields should be quoted using the % convention. -It must be possible to extract all 3 fields by examining the file name. -Downloaded .debs must be found in one of the package lists with an exact -name + version match.. - - - - - The Methods Directory (/usr/lib/apt/methods) - -

-The Methods directory is more fully described in the APT Methods interface -document. - - - - - The Configuration File (/etc/apt/apt.conf) - -

-The configuration file (and the associated fragments directory -/etc/apt/apt.conf.d/) is described in the apt.conf manpage. - - - - - The trusted.gpg File (/etc/apt/trusted.gpg) - -

-The trusted.gpg file (and the files in the associated fragments directory -/etc/apt/trusted.gpg.d/) is a binary file including the keyring used -by apt to validate that the information (e.g. the Release file) it -downloads are really from the distributor it clams to be and is -unmodified and is therefore the last step in the chain of trust between -the archive and the end user. This security system is described in the -apt-secure manpage. - - - - - The Release File - -

-This file plays an important role in how APT presents the archive to the -user. Its main purpose is to present a descriptive name for the source -of each version of each package. It also is used to detect when new versions -of debian are released. It augments the package file it is associated with -by providing meta information about the entire archive which the Packages -file describes. - -

-The full name of the distribution for presentation to the user is formed -as 'label version archive', with a possible extended name being -'label version archive component'. - -

-The file is formed as the package file (RFC-822) with the following tags -defined: - - -Archive -This is the common name we give our archives, such as stable or -unstable. - -Component -Refers to the sub-component of the archive, main, contrib -etc. Component may be omitted if there are no components for this archive. - -Version -This is a version string with the same properties as in the Packages file. -It represents the release level of the archive. - -Origin -This specifies who is providing this archive. In the case of Debian the -string will read 'Debian'. Other providers may use their own string - -Label -This carries the encompassing name of the distribution. For Debian proper -this field reads 'Debian'. For derived distributions it should contain their -proper name. - -Architecture -When the archive has packages for a single architecture then the Architecture -is listed here. If a mixed set of systems are represented then this should -contain the keyword mixed. - -NotAutomatic -A Yes/No flag indicating that the archive is extremely unstable and its -version's should never be automatically selected. This is to be used by -experimental. - -Description -Description is used to describe the release. For instance experimental would -contain a warning that the packages have problems. - - -

-The location of the Release file in the archive is very important, it must -be located in the same location as the packages file so that it can be -located in all situations. The following is an example for the current stable -release, 1.3.1r6 - - -Archive: stable -Component: main -Version: 1.3.1r6 -Origin: Debian -Label: Debian -Architecture: i386 - - -This is an example of experimental, - -Archive: experimental -Version: 0 -Origin: Debian -Label: Debian -Architecture: mixed -NotAutomatic: Yes - - -And unstable, - -Archive: unstable -Component: main -Version: 2.1 -Origin: Debian -Label: Debian -Architecture: i386 - - - - - - diff --git a/doc/guide.dbk b/doc/guide.dbk new file mode 100644 index 000000000..e8a8ae274 --- /dev/null +++ b/doc/guide.dbk @@ -0,0 +1,560 @@ + + + %aptverbatiment; +]> + + + +APT User's Guide + + + + + + Jason Gunthorpejgg@debian.org + + + +Version &apt-product-version; + + + +This document provides an overview of how to use the the APT package manager. + + + +1998Jason Gunthorpe + + +License Notice + +"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. + + + + + +For more details, on Debian systems, see the file +/usr/share/common-licenses/GPL for the full license. + + + + + +General + +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. + + +

Anatomy of the Package System + +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. + + +The dependency system allows individual programs to make use of shared elements +in the system such as libraries. It simplifies placing infrequently used +portions of a program in separate packages to reduce the number of things the +average user is required to install. Also, it allows for choices in mail +transport agents, X servers and so on. + + +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 package +requires another package to be installed at the same time to work properly. + + +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. + + +The other important dependency to understand is a conflicting dependency. It +means that a package, when installed with another package, will not work and +may possibly be extremely harmful to the system. As an example consider a mail +transport agent such as sendmail, exim or qmail. It is not possible to have +two mail transport agents installed because both need to listen to the network +to receive mail. Attempting to install two will seriously damage the system so +all mail transport agents have a conflicting dependency with all other mail +transport agents. + + +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 +identical, they both deliver mail and understand a common interface. Hence, +the package system has a way for them to declare that they are both +mail-transport-agents. So, exim and sendmail both declare that they provide a +mail-transport-agent and other packages that need a mail transport agent depend +on mail-transport-agent. This can add a great deal of confusion when trying to +manually fix packages. + + +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. + +
+ + + +apt-get + +apt-get provides a simple way to install packages from the +command line. Unlike dpkg, apt-get does +not understand .deb files, it works with the package's proper name and can only +install .deb archives from a Source. + + +The first If you are using an http proxy server you must set +the http_proxy environment variable first, see sources.list(5) + thing that should be done before using apt-get +is to fetch the package lists from the Sources so that it +knows what packages are available. This is done with apt-get +update. For instance, + + +# apt-get update +Get http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages +Get http://llug.sep.bnl.gov/debian/ testing/contrib Packages +Reading Package Lists... Done +Building Dependency Tree... Done + + +Once updated there are several commands that can be used: + + + +upgrade + + +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 upgrade a +package that might cause some other package to break. This can be used daily +to relatively safely upgrade the system. Upgrade will list all of the packages +that it could not upgrade, this usually means that they depend on new packages +or conflict with some other package. dselect or +apt-get install can be used to force these packages to +install. + + + + +install + + +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 the +package to install and do not want to go into a GUI to select it. Any number +of packages may be passed to install, they will all be fetched. Install +automatically attempts to resolve dependency problems with the listed packages +and will print a summary and ask for confirmation if anything other than its +arguments are changed. + + + + +dist-upgrade + + +Dist-upgrade is a complete upgrader designed to simplify upgrading between +releases of Debian. It uses a sophisticated algorithm to determine the best +set of packages to install, upgrade and remove to get as much of the system to +the newest release. In some situations it may be desired to use dist-upgrade +rather than spend the time manually resolving dependencies in +dselect. Once dist-upgrade has completed then +dselect can be used to install any packages that may have +been left out. + + +It is important to closely look at what dist-upgrade is going to do, its +decisions may sometimes be quite surprising. + + + + + +apt-get has several command line options that are detailed +in its man page, +apt-get8. The +most useful option is -d which does not install the +fetched files. If the system has to download a large number of package it +would be undesired to start installing them in case something goes wrong. When +-d is used the downloaded archives can be installed by +simply running the command that caused them to be downloaded again without +-d. + + + +DSelect + +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. + + +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 +CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet. + + + Set up a list of distribution source locations + + Please give the base URL of the debian distribution. + The access schemes I know about are: http file + + For example: + file:/mnt/debian, + ftp://ftp.debian.org/debian, + http://ftp.de.debian.org/debian, + + + URL [http://llug.sep.bnl.gov/debian]: + + +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. + + + Please give the distribution tag to get or a path to the + package file ending in a /. The distribution + tags are typically something like: stable unstable testing non-US + + Distribution [stable]: + + +The distribution refers to the Debian version in the archive, +stable refers to the latest released version +and unstable refers to the developmental +version. non-US is only available on some mirrors +and refers to packages that contain encryption technology or other +things that cannot be exported from the United States. Importing these +packages into the US is legal however. + + + Please give the components to get + The components are typically something like: main contrib non-free + + Components [main contrib non-free]: + + +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. + + +Any number of sources can be added, the setup script will continue to prompt +until you have specified all that you want. + + +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 +apt-get update that makes the fetched information available +to dselect. [U]pdate must be performed even if +apt-get update has been run before. + + +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 +[R]emove commands have no meaning, the [I]nstall command performs both of +them together. + + +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. + + + +The Interface + +Both that APT dselect method and apt-get +share the same interface. It is a simple system that generally tells you what +it will do and then goes and does it. The +dselect method actually is a set of wrapper scripts to +apt-get. The method actually provides more functionality +than is present in apt-get alone. After +printing out a summary of what will happen APT 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. + + +
Startup + +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. + + +# apt-get check +Reading Package Lists... Done +Building Dependency Tree... Done + + +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. + + +The final operation performs a detailed analysis of the system's +dependencies. It checks every dependency of every installed or unpacked +package and considers if it is OK. Should this find a problem then a report +will be printed out and apt-get will refuse to run. + + +# apt-get check +Reading Package Lists... Done +Building Dependency Tree... Done +You might want to run apt-get -f install' to correct these. +Sorry, but the following packages have unmet dependencies: + 9fonts: Depends: xlib6g but it is not installed + uucp: Depends: mailx but it is not installed + blast: Depends: xlib6g (>= 3.3-5) but it is not installed + adduser: Depends: perl-base but it is not installed + aumix: Depends: libgpmg1 but it is not installed + debiandoc-sgml: Depends: sgml-base but it is not installed + bash-builtins: Depends: bash (>= 2.01) but 2.0-3 is installed + cthugha: Depends: svgalibg1 but it is not installed + Depends: xlib6g (>= 3.3-5) but it is not installed + libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1) + + +In this example the system has many problems, including a serious problem with +libreadlineg2. For each package that has unmet dependencies a line is printed +out indicating the package with the problem and the dependencies that are +unmet. A short explanation of why the package has a dependency problem is also +included. + + +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 packages when performing upgrades. APT however +considers all known dependencies and attempts to prevent broken +packages . The second is if a package installation +fails during an operation. In this situation a package may have been +unpacked without its dependents being installed. + + +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 +supplying the -f option to apt-get +will cause APT to deduce a possible solution to the problem and then +continue on. The APT dselect method always supplies +the -f option to allow for easy continuation of failed +maintainer scripts. + + +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 immediately or the installation sequence will fail. In either case it is +necessary to manually use dpkg (possibly with forcing options) to correct the +situation enough to allow APT to proceed. + +
+ +
The Status Report + +Before proceeding apt-get will present a report on what will +happen. Generally the report reflects the type of operation being performed +but there are several common elements. In all cases the lists reflect the +final state of things, taking into account the -f option +and any other relevant activities to the command being executed. + + +
The Extra Package list + +The following extra packages will be installed: + libdbd-mysql-perl xlib6 zlib1 xzx libreadline2 libdbd-msql-perl + mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base + bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy + squake pgp-i python-base debmake ldso perl libreadlineg2 + ssh + + +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. + +
+ +
The Packages to Remove + +The following packages will be REMOVED: + xlib6-dev xpat2 tk40-dev xkeycaps xbattle xonix + xdaliclock tk40 tk41 xforms0.86 ghostview xloadimage xcolorsel + xadmin xboard perl-debug tkined xtetris libreadline2-dev perl-suid + nas xpilot xfig + + +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 given +a careful inspection to ensure nothing important is to be taken off. The +-f option is especially good at generating packages to +remove so extreme care should be used in that case. The list may contain +packages that are going to be removed because they are only partially +installed, possibly due to an aborted installation. + +
+ +
The New Packages list + +The following NEW packages will installed: + zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base + + +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. + +
+ +
The Kept Back list + +The following packages have been kept back + compface man-db tetex-base msql libpaper svgalib1 + gs snmp arena lynx xpat2 groff xscreensaver + + +Whenever the whole system is being upgraded there is the possibility that new +versions of packages cannot be installed because they require new things or +conflict with already installed things. In this case the package will appear +in the Kept Back list. The best way to convince packages listed there to +install is with apt-get install or by using +dselect to resolve their problems. + +
+ +
Held Packages warning + +The following held packages will be changed: + cvs + + +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. + +
+ +
Final summary + +Finally, APT will print out a summary of all the changes that will occur. + + +206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded. +12 packages not fully installed or removed. +Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used. + + +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 installed that +have new versions available. The second line indicates the number of poorly +configured packages, possibly the result of an aborted installation. The final +line shows the space requirements that the installation needs. The first pair +of numbers refer to the size of the archive files. The first number indicates +the number of bytes that must be fetched from remote locations and the second +indicates the total size of all the archives required. The next number +indicates the size difference between the presently installed packages and the +newly installed packages. It is roughly equivalent to the space required in +/usr after everything is done. If a large number of packages are being removed +then the value may indicate the amount of space that will be freed. + + +Some other reports can be generated by using the -u option to show packages to +upgrade, they are similar to the previous examples. + +
+ +
+ +
The Status Display + +During the download of archives and package files APT prints out a series of +status messages. + + +# apt-get update +Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages +Get:2 http://llug.sep.bnl.gov/debian/ testing/contrib Packages +Hit http://llug.sep.bnl.gov/debian/ testing/main Packages +Get:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages +Get:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages +11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s + + +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 first percent value on the progress line indicates the total +percent done of all files. Unfortunately since the size of the Package files +is unknown apt-get update estimates the percent done which +causes some inaccuracies. + + +The next section of the status line is repeated once for each download +thread and indicates the operation being performed and some useful +information about what is happening. Sometimes this section will simply +read Forking which means the OS is loading the download +module. The first word after the [ is the fetch number as shown on the +history lines. 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. + + +Inside of the single quote is an informative string indicating the progress of +the negotiation phase of the download. Typically it progresses from +Connecting to Waiting for file to +Downloading or Resuming. The final +value is the number of bytes downloaded from the remote site. Once the +download begins this is represented as 102/10.2k indicating +that 102 bytes have been fetched and 10.2 kilobytes is expected. The total +size is always shown in 4 figure notation to preserve space. After the size +display is a percent meter for the file itself. The second last element is the +instantaneous average speed. This values is updated every 5 seconds and +reflects the rate of data transfer for that period. Finally is shown the +estimated transfer time. This is updated regularly and reflects the time to +complete everything at the shown transfer rate. + + +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 is +started. Since the status display is constantly updated it is unsuitable for +logging to a file, use the -q option to remove the status +display. + +
+ +
Dpkg + +APT uses dpkg for installing the archives and will +switch over to the dpkg interface once downloading is +completed. dpkg will also ask a number of questions as +it processes the packages and the packages themselves may also ask several +questions. Before each question there is usually a description of what it +is asking and the questions are too varied to discuss completely here. + +
+ +
+ +
diff --git a/doc/guide.sgml b/doc/guide.sgml deleted file mode 100644 index 747c5718c..000000000 --- a/doc/guide.sgml +++ /dev/null @@ -1,547 +0,0 @@ - - - -APT User's Guide - -Jason Gunthorpe jgg@debian.org -$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $ - - -This document provides an overview of how to use the the APT package manager. - - - -Copyright © Jason Gunthorpe, 1998. -

-"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. - -

-For more details, on Debian systems, see the file -/usr/share/common-licenses/GPL for the full license. - - - - - - -General - -

-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. - -Anatomy of the Package System -

-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. - -

-The dependency system allows individual programs to make use of shared -elements in the system such as libraries. It simplifies placing infrequently -used portions of a program in separate packages to reduce the -number of things the average user is required to install. Also, it allows -for choices in mail transport agents, X servers and -so on. - -

-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 package -requires another package to be installed at the same time to work properly. - -

-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. - -

-The other important dependency to understand is a conflicting dependency. It -means that a package, when installed with another package, will not work and -may possibly be extremely harmful to the system. As an example consider a -mail transport agent such as sendmail, exim or qmail. It is not possible -to have two mail transport agents installed because both need to listen to -the network to receive mail. Attempting to install two will seriously -damage the system so all mail transport agents have a conflicting dependency -with all other mail transport agents. - -

-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 -identical, they both deliver mail and understand a common interface. Hence, -the package system has a way for them to declare that they are both -mail-transport-agents. So, exim and sendmail both declare that they provide a -mail-transport-agent and other packages that need a mail transport agent -depend on mail-transport-agent. This can add a great deal of confusion when -trying to manually fix packages. - -

-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. - - - - - - -apt-get - -

-apt-get provides a simple way to install packages from the command -line. Unlike dpkg, apt-get does not understand .deb files, -it works with the package's proper name and can only install .deb archives from -a Source. - -

-The first If you are using an http proxy server you must set the -http_proxy environment variable first, see sources.list(5) thing that -should be done before using apt-get is to fetch the package lists -from the Sources so that it knows what packages are -available. This is done with apt-get update. For instance, - -

- -# apt-get update -Get http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages -Get http://llug.sep.bnl.gov/debian/ testing/contrib Packages -Reading Package Lists... Done -Building Dependency Tree... Done - - -

-Once updated there are several commands that can be used: - -upgrade -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 upgrade a package that might cause some other package to break. -This can be used daily to relatively safely upgrade the system. Upgrade -will list all of the packages that it could not upgrade, this usually -means that they depend on new packages or conflict with some other package. -dselect or apt-get install can be used to force these -packages to install. - -install -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 the package to install and do not want to go into a GUI -to select it. Any number of packages may be passed to install, they will -all be fetched. Install automatically attempts to resolve dependency problems -with the listed packages and will print a summary and ask for confirmation -if anything other than its arguments are changed. - -dist-upgrade -Dist-upgrade is a complete upgrader designed to simplify upgrading between -releases of Debian. It uses a sophisticated algorithm to determine the best -set of packages to install, upgrade and remove to get as much of the system -to the newest release. In some situations it may be desired to use dist-upgrade -rather than spend the time manually resolving dependencies in dselect. -Once dist-upgrade has completed then dselect can be used to install -any packages that may have been left out. - -

-It is important to closely look at what dist-upgrade is going to do, its -decisions may sometimes be quite surprising. - - -

-apt-get has several command line options that are detailed in its -man page, . The most useful option is --d which does not install the fetched files. If the system has to -download a large number of package it would be undesired to start installing -them in case something goes wrong. When -d is used the downloaded -archives can be installed by simply running the command that caused them to -be downloaded again without -d. - - - - - -DSelect -

-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. - -

-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 CD-ROMs. 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 CD-ROM 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 CD-ROM before -downloading from the Internet. - -

- - Set up a list of distribution source locations - - Please give the base URL of the debian distribution. - The access schemes I know about are: http file - - For example: - file:/mnt/debian, - ftp://ftp.debian.org/debian, - http://ftp.de.debian.org/debian, - - - URL [http://llug.sep.bnl.gov/debian]: - - -

-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. - -

- - Please give the distribution tag to get or a path to the - package file ending in a /. The distribution - tags are typically something like: stable unstable testing non-US - - Distribution [stable]: - - -

-The distribution refers to the Debian version in the archive, stable -refers to the latest released version and unstable refers to the -developmental version. non-US is only available on some mirrors and -refers to packages that contain encryption technology or other things that -cannot be exported from the United States. Importing these packages into the -US is legal however. - -

- - Please give the components to get - The components are typically something like: main contrib non-free - - Components [main contrib non-free]: - - -

-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. - -

-Any number of sources can be added, the setup script will continue to -prompt until you have specified all that you want. - -

-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 -apt-get update that makes the fetched information available to -dselect. [U]pdate must be performed even if apt-get update -has been run before. - -

-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 [R]emove commands have no meaning, the [I]nstall command -performs both of them together. - -

-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. - - - - - -The Interface - -

-Both that APT dselect method and apt-get share the same -interface. It is a simple system that generally tells you what it will do -and then goes and does it. - -The dselect method actually is a set of wrapper scripts -to apt-get. The method actually provides more functionality than -is present in apt-get alone. - -After printing out a summary of what will happen APT 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. - - -Startup - -

-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. -

- -# apt-get check -Reading Package Lists... Done -Building Dependency Tree... Done - - -

-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. - -

-The final operation performs a detailed analysis of the system's dependencies. -It checks every dependency of every installed or unpacked package and considers -if it is OK. Should this find a problem then a report will be printed out and -apt-get will refuse to run. - -

- -# apt-get check -Reading Package Lists... Done -Building Dependency Tree... Done -You might want to run apt-get -f install' to correct these. -Sorry, but the following packages have unmet dependencies: - 9fonts: Depends: xlib6g but it is not installed - uucp: Depends: mailx but it is not installed - blast: Depends: xlib6g (>= 3.3-5) but it is not installed - adduser: Depends: perl-base but it is not installed - aumix: Depends: libgpmg1 but it is not installed - debiandoc-sgml: Depends: sgml-base but it is not installed - bash-builtins: Depends: bash (>= 2.01) but 2.0-3 is installed - cthugha: Depends: svgalibg1 but it is not installed - Depends: xlib6g (>= 3.3-5) but it is not installed - libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1) - - -

-In this example the system has many problems, including a serious problem -with libreadlineg2. For each package that has unmet dependencies a line -is printed out indicating the package with the problem and the dependencies -that are unmet. A short explanation of why the package has a dependency -problem is also included. - -

-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 -packages when performing upgrades. APT however considers all known -dependencies and attempts to prevent broken packages. The second is -if a package installation fails during an operation. In this situation a -package may have been unpacked without its dependents being installed. - -

-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 -supplying the -f option to apt-get will cause APT to deduce a -possible solution to the problem and then continue on. The APT dselect -method always supplies the -f option to allow for easy continuation -of failed maintainer scripts. - -

-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 -immediately or the installation sequence will fail. In either case it is -necessary to manually use dpkg (possibly with forcing options) to correct -the situation enough to allow APT to proceed. - - - -The Status Report - -

-Before proceeding apt-get will present a report on what will happen. -Generally the report reflects the type of operation being performed but there -are several common elements. In all cases the lists reflect the final state -of things, taking into account the -f option and any other relevant -activities to the command being executed. - -The Extra Package list -

- -The following extra packages will be installed: - libdbd-mysql-perl xlib6 zlib1 xzx libreadline2 libdbd-msql-perl - mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base - bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy - squake pgp-i python-base debmake ldso perl libreadlineg2 - ssh - - -

-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. - - -The Packages to Remove -

- -The following packages will be REMOVED: - xlib6-dev xpat2 tk40-dev xkeycaps xbattle xonix - xdaliclock tk40 tk41 xforms0.86 ghostview xloadimage xcolorsel - xadmin xboard perl-debug tkined xtetris libreadline2-dev perl-suid - nas xpilot xfig - - -

-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 given a careful inspection to ensure nothing important is to -be taken off. The -f option is especially good at generating packages -to remove so extreme care should be used in that case. The list may contain -packages that are going to be removed because they are only -partially installed, possibly due to an aborted installation. - - -The New Packages list -

- -The following NEW packages will installed: - zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base - - -

-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. - - -The Kept Back list -

- -The following packages have been kept back - compface man-db tetex-base msql libpaper svgalib1 - gs snmp arena lynx xpat2 groff xscreensaver - - -

-Whenever the whole system is being upgraded there is the possibility that -new versions of packages cannot be installed because they require new things -or conflict with already installed things. In this case the package will -appear in the Kept Back list. The best way to convince packages listed -there to install is with apt-get install or by using dselect -to resolve their problems. - - -Held Packages warning -

- -The following held packages will be changed: - cvs - - -

-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. - - -Final summary -

-Finally, APT will print out a summary of all the changes that will occur. - -

- -206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded. -12 packages not fully installed or removed. -Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used. - - -

-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 -installed that have new versions available. The second line indicates the -number of poorly configured packages, possibly the result of an aborted -installation. The final line shows the space requirements that the -installation needs. The first pair of numbers refer to the size of -the archive files. The first number indicates the number of bytes that -must be fetched from remote locations and the second indicates the -total size of all the archives required. The next number indicates the -size difference between the presently installed packages and the newly -installed packages. It is roughly equivalent to the space required in -/usr after everything is done. If a large number of packages are being -removed then the value may indicate the amount of space that will be -freed. - -

-Some other reports can be generated by using the -u option to show packages -to upgrade, they are similar to the previous examples. - - - -The Status Display -

-During the download of archives and package files APT prints out a series of -status messages. - -

- -# apt-get update -Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages -Get:2 http://llug.sep.bnl.gov/debian/ testing/contrib Packages -Hit http://llug.sep.bnl.gov/debian/ testing/main Packages -Get:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages -Get:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages -11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s - - -

-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 first -percent value on the progress line indicates the total percent done of all -files. Unfortunately since the size of the Package files is unknown -apt-get update estimates the percent done which causes some -inaccuracies. - -

-The next section of the status line is repeated once for each download thread -and indicates the operation being performed and some useful information -about what is happening. Sometimes this section will simply read Forking -which means the OS is loading the download module. The first word after the [ -is the fetch number as shown on the history lines. 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. - -

-Inside of the single quote is an informative string indicating the progress -of the negotiation phase of the download. Typically it progresses from -Connecting to Waiting for file to Downloading or -Resuming. The final value is the number of bytes downloaded from the -remote site. Once the download begins this is represented as 102/10.2k -indicating that 102 bytes have been fetched and 10.2 kilobytes is expected. -The total size is always shown in 4 figure notation to preserve space. After -the size display is a percent meter for the file itself. -The second last element is the instantaneous average speed. This values is -updated every 5 seconds and reflects the rate of data transfer for that -period. Finally is shown the estimated transfer time. This is updated -regularly and reflects the time to complete everything at the shown -transfer rate. - -

-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 is started. Since the status display is constantly updated it is -unsuitable for logging to a file, use the -q option to remove the -status display. - - - -Dpkg - -

-APT uses dpkg for installing the archives and will switch -over to the dpkg interface once downloading is completed. -dpkg will also ask a number of questions as it processes the packages -and the packages themselves may also ask several questions. Before each -question there is usually a description of what it is asking and the -questions are too varied to discuss completely here. - - - - - - diff --git a/doc/makefile b/doc/makefile index 3939c749f..5ab31ad3b 100644 --- a/doc/makefile +++ b/doc/makefile @@ -5,12 +5,12 @@ SUBDIR=doc # Bring in the default rules include ../buildlib/defaults.mak -# Debian Doc SGML Documents -SOURCE = $(wildcard *.sgml) -DEBIANDOC_HTML_OPTIONS=-l en.UTF-8 -include $(DEBIANDOC_H) +# DocBook XML Documents +SOURCE = $(wildcard *.dbk) +LC = en +include $(DOCBOOK_H) -doc: manpages debiandoc +doc: manpages docbook examples/sources.list: ../vendor/current/sources.list ln -sf $(shell readlink -f $^) $@ @@ -24,12 +24,12 @@ TO = $(DOC) TARGET = binary include $(COPY_H) -.PHONY: clean clean/subdirs veryclean veryclean/subdirs manpages/subdirs debiandoc/subdirs all binary doc stats +.PHONY: clean clean/subdirs veryclean veryclean/subdirs manpages/subdirs docbook/subdirs all binary doc stats clean: clean/subdirs clean/examples veryclean: veryclean/subdirs clean/examples manpages: apt-vendor.ent manpages/subdirs -debiandoc: debiandoc/subdirs +docbook: docbook/subdirs DOCUMENTATIONPO = $(patsubst %.po,%,$(notdir $(wildcard po/*.po))) DOCDIRLIST = $(addsuffix /makefile,$(DOCUMENTATIONPO)) @@ -39,7 +39,7 @@ $(DOCDIRLIST) :: %/makefile : lang.makefile test -d $(dir $@) || mkdir $(dir $@) sed "s#@@LANG@@#$(subst /,,$(dir $@))#" $< > $@ -debiandoc/subdirs manpages/subdirs clean/subdirs veryclean/subdirs: +docbook/subdirs manpages/subdirs clean/subdirs veryclean/subdirs: for dir in en $(dir $(DOCDIRLIST)); do \ $(MAKE) -C $$dir $(patsubst %/subdirs,%,$@); \ done @@ -53,11 +53,11 @@ stats: ifdef PO4A MANPAGEPOLIST = $(addprefix manpages-translation-,$(DOCUMENTATIONPO)) -DEBIANDOCPOLIST = $(addprefix debiandoc-translation-,$(DOCUMENTATIONPO)) +DOCBOOKPOLIST = $(addprefix docbook-translation-,$(DOCUMENTATIONPO)) -.PHONY: update-po po4a $(MANPAGEPOLIST) $(DEBIANDOCPOLIST) $(DOCDIRLIST) +.PHONY: update-po po4a $(MANPAGEPOLIST) $(DOCBOOKPOLIST) $(DOCDIRLIST) -po4a: manpages/subdirs debiandoc/subdirs +po4a: manpages/subdirs docbook/subdirs update-po: po4a --previous --no-backups --force --no-translations \ @@ -78,10 +78,10 @@ $(MANPAGEPOLIST) :: manpages-translation-% : %/makefile po4a.conf --package-name='$(PACKAGE)-doc' --package-version='$(PACKAGE_VERSION)' \ --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf -debiandoc/subdirs: $(DEBIANDOCPOLIST) -$(DEBIANDOCPOLIST) :: debiandoc-translation-% : %/makefile po4a.conf +docbook/subdirs: $(DOCBOOKPOLIST) +$(DOCBOOKPOLIST) :: docbook-translation-% : %/makefile po4a.conf po4a --previous --no-backups --translate-only $(dir $<)apt.ent \ - $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.sgml,%.$(subst /,,$(dir $<)).sgml,$(wildcard *.sgml))) \ + $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.dbk,%.$(subst /,,$(dir $<)).dbk,$(wildcard *.dbk))) \ --package-name='$(PACKAGE)-doc' --package-version='$(PACKAGE_VERSION)' \ --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf endif @@ -101,5 +101,5 @@ $(BUILD)/doc/doxygen-stamp: $(DOXYGEN_SOURCES) $(BUILD)/doc/Doxyfile $(DOXYGEN) $(BUILD)/doc/Doxyfile touch $(BUILD)/doc/doxygen-stamp -debiandoc: $(BUILD)/doc/doxygen-stamp +docbook: $(BUILD)/doc/doxygen-stamp endif diff --git a/doc/manpage-style.xsl b/doc/manpage-style.xsl index 5cb6a58c2..a780bad13 100644 --- a/doc/manpage-style.xsl +++ b/doc/manpage-style.xsl @@ -5,7 +5,6 @@ - <> diff --git a/doc/method.dbk b/doc/method.dbk new file mode 100644 index 000000000..d2eb04df1 --- /dev/null +++ b/doc/method.dbk @@ -0,0 +1,712 @@ + + + %aptverbatiment; +]> + + + +APT Method Interface + + + + + + Jason Gunthorpejgg@debian.org + + + +Version &apt-product-version; + + + +This document describes the interface that APT uses to the archive access +methods. + + + +1998Jason Gunthorpe + + +License Notice + +"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. + + +For more details, on Debian systems, see the file +/usr/share/common-licenses/GPL for the full license. + + + + + +Introduction + +

General + +The APT method interface allows APT to acquire archive files (.deb), index +files (Packages, Release, Mirrors) and source files (.tar.gz, .diff). It is a +general, extensible system designed to satisfy all of these requirements: + + + + +Remote methods that download files from a distant site + + + + +Resume of aborted downloads + + + + +Progress reporting + + + + +If-Modified-Since (IMS) checking for index files + + + + +In-Line MD5 generation + + + + +No-copy in-filesystem methods + + + + +Multi-media methods (like CD's) + + + + +Dynamic source selection for failure recovery + + + + +User interaction for user/password requests and media swaps + + + + +Global configuration + + + + +Initial releases of APT (0.1.x) used a completely different method interface +that only supported the first 6 items. This new interface deals with the +remainder. + +
+ +
Terms + +Several terms are used through out the document, they have specific meanings +which may not be immediately evident. To clarify they are summarized here. + + + +source + + +Refers to an item in source list. More specifically it is the broken down +item, that is each source maps to exactly one index file. Archive sources map +to Package files and Source Code sources map to Source files. + + + + +archive file + + +Refers to a binary package archive (.deb, .rpm, etc). + + + + +source file + + +Refers to one of the files making up the source code of a package. In debian +it is one of .diff.gz, .dsc. or .tar.gz. + + + + +URI + + +Universal Resource Identifier (URI) is a super-set of the familiar URL +syntax used by web browsers. It consists of an access specification +followed by a specific location in that access space. The form is +<access>:<location>. Network addresses are given with the form +<access>://[<user>[:<pas>]@]hostname[:port]/<location>. +Some examples: + + +file:/var/mirrors/debian/ +ftp://ftp.debian.org/debian +ftp://jgg:MooCow@localhost:21/debian +nfs://bigred/var/mirrors/debian +rsync://debian.midco.net/debian +cdrom:Debian 2.0r1 Disk 1/ + + + + +method + + +There is a one to one mapping of URI access specifiers to methods. A method is +a program that knows how to handle a URI access type and operates according to +the specifications in this file. + + + + +method instance + + +A specific running method. There can be more than one instance of each method +as APT is capable of concurrent method handling. + + + + +message + + +A series of lines terminated by a blank line sent down one of the communication +lines. The first line should have the form xxx TAG where xxx are digits +forming the status code and TAG is an informational string + + + + +acquire + + +The act of bring a URI into the local pathname space. This may simply be +verifying the existence of the URI or actually downloading it from a remote +site. + + + + +
+ + + +Specification + +
Overview + +All methods operate as a sub process of a main controlling parent. 3 FD's are +opened for use by the method allowing two way communication and emergency error +reporting. The FD's correspond to the well known unix FD's, stdin, stdout and +stderr. + + +Through operation of the method communication is done via http style plain +text. Specifically RFC-822 (like the Package file) fields are used to describe +items and a numeric-like header is used to indicate what is happening. Each of +these distinct communication messages should be sent quickly and without pause. + + +In some instances APT may pre-invoke a method to allow things like file URI's +to determine how many files are available locally. + +
+ +
Message Overview + +The first line of each message is called the message header. The first 3 +digits (called the Status Code) have the usual meaning found in the http +protocol. 1xx is informational, 2xx is successful and 4xx is failure. The 6xx +series is used to specify things sent to the method. After the status code is +an informational string provided for visual debugging. + + + + +100 Capabilities - Method capabilities + + + + +101 Log - General Logging + + + + +102 Status - Inter-URI status reporting (login progress) + + + + +200 URI Start - URI is starting acquire + + + + +201 URI Done - URI is finished acquire + + + + +400 URI Failure - URI has failed to acquire + + + + +401 General Failure - Method did not like something sent to it + + + + +402 Authorization Required - Method requires authorization to access the URI. +Authorization is User/Pass + + + + +403 Media Failure - Method requires a media change + + + + +600 URI Acquire - Request a URI be acquired + + + + +601 Configuration - Sends the configuration space + + + + +602 Authorization Credentials - Response to the 402 message + + + + +603 Media Changed - Response to the 403 message + + + + +Only the 6xx series of status codes is sent TO the method. Furthermore the +method may not emit status codes in the 6xx range. The Codes 402 and 403 +require that the method continue reading all other 6xx codes until the proper +602/603 code is received. This means the method must be capable of handling an +unlimited number of 600 messages. + + +The flow of messages starts with the method sending out a 100 +Capabilities and APT sending out a 601 +Configuration. After that APT begins sending 600 URI +Acquire and the method sends out 200 URI Start, +201 URI Done or 400 URI Failure. No +synchronization is performed, it is expected that APT will send 600 +URI Acquire messages at -any- time and that the method should queue +the messages. This allows methods like http to pipeline requests to the remote +server. It should be noted however that APT will buffer messages so it is not +necessary for the method to be constantly ready to receive them. + +
+ +
Header Fields + +The following is a short index of the header fields that are supported + + + +URI + + +URI being described by the message + + + + +Filename + + +Location in the filesystem + + + + +Last-Modified + + +A time stamp in RFC1123 notation for use by IMS checks + + + + +IMS-Hit + + +The already existing item is valid + + + + +Size + + +Size of the file in bytes + + + + +Resume-Point + + +Location that transfer was started + + + + +MD5-Hash + + +Computed MD5 hash for the file + + + + +Message + + +String indicating some displayable message + + + + +Media + + +String indicating the media name required + + + + +Site + + +String indicating the site authorization is required for + + + + +User + + +Username for authorization + + + + +Password + + +Password for authorization + + + + +Fail + + +Operation failed + + + + +Drive + + +Drive the media should be placed in + + + + +Config-Item + + +A string of the form +item=value derived from +the APT configuration space. These may include method specific values and +general values not related to the method. It is up to the method to filter out +the ones it wants. + + + + +Single-Instance + + +Requires that only one instance of the method be run This is a yes/no value. + + + + +Pipeline + + +The method is capable of pipelining. + + + + +Local + + +The method only returns Filename: fields. + + + + +Send-Config + + +Send configuration to the method. + + + + +Needs-Cleanup + + +The process is kept around while the files it returned are being used. This is +primarily intended for CD-ROM and File URIs that need to unmount filesystems. + + + + +Version + + +Version string for the method + + + + + +This is a list of which headers each status code can use + + + +100 Capabilities + + +Displays the capabilities of the method. Methods should set the pipeline bit +if their underlying protocol supports pipelining. The only known method that +does support pipelining is http. Fields: Version, Single-Instance, Pre-Scan, +Pipeline, Send-Config, Needs-Cleanup + + + + +101 Log + + +A log message may be printed to the screen if debugging is enabled. This is +only for debugging the method. Fields: Message + + + + +102 Status + + +Message gives a progress indication for the method. It can be used to show +pre-transfer status for Internet type methods. Fields: Message + + + + +200 URI Start + + +Indicates the URI is starting to be transferred. The URI is specified along +with stats about the file itself. Fields: URI, Size, Last-Modified, +Resume-Point + + + + +201 URI Done + + +Indicates that a URI has completed being transferred. It is possible to +specify a 201 URI Done without a URI +Start which would mean no data was transferred but the file is now +available. A Filename field is specified when the URI is directly available in +the local pathname space. APT will either directly use that file or copy it +into another location. It is possible to return Alt-* fields to indicate that +another possibility for the URI has been found in the local pathname space. +This is done if a decompressed version of a .gz file is found. Fields: URI, +Size, Last-Modified, Filename, MD5-Hash + + + + +400 URI Failure + + +Indicates a fatal URI failure. The URI is not retrievable from this source. As +with 201 URI Done 200 URI Start is +not required to precede this message Fields: URI, Message + + + + +401 General Failure + + +Indicates that some unspecific failure has occurred and the method is unable +to continue. The method should terminate after sending this message. It +is intended to check for invalid configuration options or other severe +conditions. Fields: Message + + + + +402 Authorization Required + + +The method requires a Username and Password pair to continue. After sending +this message the method will expect APT to send a 602 Authorization +Credentials message with the required information. It is possible +for a method to send this multiple times. Fields: Site + + + + +403 Media Failure + + +A method that deals with multiple media requires that a new media be +inserted. The Media field contains the name of the media to be +inserted. Fields: Media, Drive + + + + +600 URI Acquire + + +APT is requesting that a new URI be added to the acquire list. Last-Modified +has the time stamp of the currently cache file if applicable. Filename is the +name of the file that the acquired URI should be written to. Fields: URI, +Filename Last-Modified + + + + +601 Configuration + + +APT is sending the configuration space to the method. A series of Config-Item +fields will be part of this message, each containing an entry from the +configuration space. Fields: Config-Item. + + + + +602 Authorization Credentials + + +This is sent in response to a 402 Authorization Required +message. It contains the entered username and password. Fields: Site, User, +Password + + + + +603 Media Changed + + +This is sent in response to a 403 Media Failure +message. It indicates that the user has changed media and it is safe +to proceed. Fields: Media, Fail + + + + +
+ +
Notes + +The methods supplied by the stock apt are: + + + + +cdrom - For Multi-Disc CD-ROMs + + + + +copy - (internal) For copying files around the filesystem + + + + +file - For local files + + + + +gzip - (internal) For decompression + + + + +http - For HTTP servers + + + + +The two internal methods, copy and gzip, are used by the acquire code to +parallize and simplify the automatic decompression of package files as well as +copying package files around the file system. Both methods can be seen to act +the same except that one decompresses on the fly. APT uses them by generating +a copy URI that is formed identically to a file URI. The destination file is +send as normal. The method then takes the file specified by the URI and writes +it to the destination file. A typical set of operations may be: + + +http://foo.com/Packages.gz -> /bar/Packages.gz +gzip:/bar/Packages.gz -> /bar/Packages.decomp +rename Packages.decomp to /final/Packages + + +The http method implements a fully featured HTTP/1.1 client that supports +deep pipelining and reget. It works best when coupled with an apache 1.3 +server. The file method simply generates failures or success responses +with the filename field set to the proper location. The cdrom method acts +the same except that it checks that the mount point has a valid cdrom in +it. It does this by (effectively) computing a md5 hash of 'ls -l' on the +mountpoint. + +
+ +
+ +
diff --git a/doc/method.sgml b/doc/method.sgml deleted file mode 100644 index 5aa7b52e8..000000000 --- a/doc/method.sgml +++ /dev/null @@ -1,354 +0,0 @@ - - - -APT Method Interface - -Jason Gunthorpe jgg@debian.org -$Id: method.sgml,v 1.10 2003/02/12 15:05:46 doogie Exp $ - - -This document describes the interface that APT uses to the archive -access methods. - - - -Copyright © Jason Gunthorpe, 1998. -

-"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. - -

-For more details, on Debian systems, see the file -/usr/share/common-licenses/GPL for the full license. - - - - -Introduction - - -General - -

-The APT method interface allows APT to acquire archive files (.deb), index -files (Packages, Release, Mirrors) and source files (.tar.gz, .diff). It -is a general, extensible system designed to satisfy all of these -requirements: - - -Remote methods that download files from a distant site -Resume of aborted downloads -Progress reporting -If-Modified-Since (IMS) checking for index files -In-Line MD5 generation -No-copy in-filesystem methods -Multi-media methods (like CD's) -Dynamic source selection for failure recovery -User interaction for user/password requests and media swaps -Global configuration - - -Initial releases of APT (0.1.x) used a completely different method -interface that only supported the first 6 items. This new interface -deals with the remainder. - - - - -Terms - -

-Several terms are used through out the document, they have specific -meanings which may not be immediately evident. To clarify they are summarized -here. - - -source -Refers to an item in source list. More specifically it is the broken down -item, that is each source maps to exactly one index file. Archive sources -map to Package files and Source Code sources map to Source files. - -archive file -Refers to a binary package archive (.deb, .rpm, etc). - -source file -Refers to one of the files making up the source code of a package. In -debian it is one of .diff.gz, .dsc. or .tar.gz. - -URI -Universal Resource Identifier (URI) is a super-set of the familiar URL -syntax used by web browsers. It consists of an access specification -followed by a specific location in that access space. The form is -<access>:<location>. Network addresses are given with the form -<access>://[<user>[:<pas>]@]hostname[:port]/<location>. -Some examples: - -file:/var/mirrors/debian/ -ftp://ftp.debian.org/debian -ftp://jgg:MooCow@localhost:21/debian -nfs://bigred/var/mirrors/debian -rsync://debian.midco.net/debian -cdrom:Debian 2.0r1 Disk 1/ - - -method -There is a one to one mapping of URI access specifiers to methods. A method -is a program that knows how to handle a URI access type and operates according -to the specifications in this file. - -method instance -A specific running method. There can be more than one instance of each method -as APT is capable of concurrent method handling. - -message -A series of lines terminated by a blank line sent down one of the -communication lines. The first line should have the form xxx TAG -where xxx are digits forming the status code and TAG is an informational -string - -acquire -The act of bring a URI into the local pathname space. This may simply -be verifying the existence of the URI or actually downloading it from -a remote site. - - - - - -Specification - - -Overview - -

-All methods operate as a sub process of a main controlling parent. 3 FD's -are opened for use by the method allowing two way communication and -emergency error reporting. The FD's correspond to the well known unix FD's, -stdin, stdout and stderr. - -

-Through operation of the method communication is done via http -style plain text. Specifically RFC-822 (like the Package file) fields -are used to describe items and a numeric-like header is used to indicate -what is happening. Each of these distinct communication messages should be -sent quickly and without pause. - -

-In some instances APT may pre-invoke a method to allow things like file -URI's to determine how many files are available locally. - - - - -Message Overview - -

-The first line of each message is called the message header. The first -3 digits (called the Status Code) have the usual meaning found in the -http protocol. 1xx is informational, 2xx is successful and 4xx is failure. -The 6xx series is used to specify things sent to the method. After the -status code is an informational string provided for visual debugging. - - -100 Capabilities - Method capabilities -101 Log - General Logging -102 Status - Inter-URI status reporting (login progress) -200 URI Start - URI is starting acquire -201 URI Done - URI is finished acquire -400 URI Failure - URI has failed to acquire -401 General Failure - Method did not like something sent to it -402 Authorization Required - Method requires authorization - to access the URI. Authorization is User/Pass -403 Media Failure - Method requires a media change -600 URI Acquire - Request a URI be acquired -601 Configuration - Sends the configuration space -602 Authorization Credentials - Response to the 402 message -603 Media Changed - Response to the 403 message - - -Only the 6xx series of status codes is sent TO the method. Furthermore -the method may not emit status codes in the 6xx range. The Codes 402 -and 403 require that the method continue reading all other 6xx codes -until the proper 602/603 code is received. This means the method must be -capable of handling an unlimited number of 600 messages. - -

-The flow of messages starts with the method sending out a -100 Capabilities and APT sending out a 601 Configuration. -After that APT begins sending 600 URI Acquire and the method -sends out 200 URI Start, 201 URI Done or -400 URI Failure. No synchronization is performed, it is expected -that APT will send 600 URI Acquire messages at -any- time and -that the method should queue the messages. This allows methods like http -to pipeline requests to the remote server. It should be noted however -that APT will buffer messages so it is not necessary for the method -to be constantly ready to receive them. - - - - -Header Fields - -

-The following is a short index of the header fields that are supported - - -URIURI being described by the message -FilenameLocation in the filesystem -Last-ModifiedA time stamp in RFC1123 notation for use by IMS checks -IMS-HitThe already existing item is valid -SizeSize of the file in bytes -Resume-PointLocation that transfer was started -MD5-HashComputed MD5 hash for the file -MessageString indicating some displayable message -MediaString indicating the media name required -SiteString indicating the site authorization is required for -UserUsername for authorization -PasswordPassword for authorization -FailOperation failed -DriveDrive the media should be placed in -Config-Item -A string of the form item=value derived from the APT -configuration space. These may include method specific values and general -values not related to the method. It is up to the method to filter out -the ones it wants. -Single-InstanceRequires that only one instance of the method be run - This is a yes/no value. -PipelineThe method is capable of pipelining. -LocalThe method only returns Filename: fields. -Send-ConfigSend configuration to the method. -Needs-CleanupThe process is kept around while the files it returned -are being used. This is primarily intended for CD-ROM and File URIs that need -to unmount filesystems. -VersionVersion string for the method - - -This is a list of which headers each status code can use - - -100 Capabilities -Displays the capabilities of the method. Methods should set the -pipeline bit if their underlying protocol supports pipelining. The -only known method that does support pipelining is http. -Fields: Version, Single-Instance, Pre-Scan, Pipeline, Send-Config, -Needs-Cleanup - -101 Log -A log message may be printed to the screen if debugging is enabled. This -is only for debugging the method. -Fields: Message - -102 Status -Message gives a progress indication for the method. It can be used to show -pre-transfer status for Internet type methods. -Fields: Message - -200 URI Start -Indicates the URI is starting to be transferred. The URI is specified -along with stats about the file itself. -Fields: URI, Size, Last-Modified, Resume-Point - -201 URI Done -Indicates that a URI has completed being transferred. It is possible -to specify a 201 URI Done without a URI Start which would -mean no data was transferred but the file is now available. A Filename -field is specified when the URI is directly available in the local -pathname space. APT will either directly use that file or copy it into -another location. It is possible to return Alt-* fields to indicate that -another possibility for the URI has been found in the local pathname space. -This is done if a decompressed version of a .gz file is found. -Fields: URI, Size, Last-Modified, Filename, MD5-Hash - -400 URI Failure -Indicates a fatal URI failure. The URI is not retrievable from this source. -As with 201 URI Done 200 URI Start is not required to precede -this message -Fields: URI, Message - -401 General Failure -Indicates that some unspecific failure has occurred and the method is unable -to continue. The method should terminate after sending this message. It -is intended to check for invalid configuration options or other severe -conditions. -Fields: Message - -402 Authorization Required -The method requires a Username and Password pair to continue. After sending -this message the method will expect APT to send a 602 Authorization -Credentials message with the required information. It is possible for -a method to send this multiple times. -Fields: Site - -403 Media Failure -A method that deals with multiple media requires that a new media be inserted. -The Media field contains the name of the media to be inserted. -Fields: Media, Drive - -600 URI Acquire -APT is requesting that a new URI be added to the acquire list. Last-Modified -has the time stamp of the currently cache file if applicable. Filename -is the name of the file that the acquired URI should be written to. -Fields: URI, Filename Last-Modified - -601 Configuration -APT is sending the configuration space to the method. A series of -Config-Item fields will be part of this message, each containing an entry -from the configuration space. -Fields: Config-Item. - -602 Authorization Credentials -This is sent in response to a 402 Authorization Required message. -It contains the entered username and password. -Fields: Site, User, Password - -603 Media Changed -This is sent in response to a 403 Media Failure message. It -indicates that the user has changed media and it is safe to proceed. -Fields: Media, Fail - - - - - - -Notes - -

-The methods supplied by the stock apt are: - -cdrom - For Multi-Disc CD-ROMs -copy - (internal) For copying files around the filesystem -file - For local files -gzip - (internal) For decompression -http - For HTTP servers - - -

-The two internal methods, copy and gzip, are used by the acquire code to -parallize and simplify the automatic decompression of package files as well -as copying package files around the file system. Both methods can be seen to -act the same except that one decompresses on the fly. APT uses them by -generating a copy URI that is formed identically to a file URI. The destination -file is send as normal. The method then takes the file specified by the -URI and writes it to the destination file. A typical set of operations may -be: - -http://foo.com/Packages.gz -> /bar/Packages.gz -gzip:/bar/Packages.gz -> /bar/Packages.decomp -rename Packages.decomp to /final/Packages - - -

-The http method implements a fully featured HTTP/1.1 client that supports -deep pipelining and reget. It works best when coupled with an apache 1.3 -server. The file method simply generates failures or success responses with -the filename field set to the proper location. The cdrom method acts the same -except that it checks that the mount point has a valid cdrom in it. It does -this by (effectively) computing a md5 hash of 'ls -l' on the mountpoint. - - - - - diff --git a/doc/offline.dbk b/doc/offline.dbk new file mode 100644 index 000000000..7163f8bd5 --- /dev/null +++ b/doc/offline.dbk @@ -0,0 +1,247 @@ + + + %aptverbatiment; +]> + + + +Using APT Offline + + + + + + Jason Gunthorpejgg@debian.org + + + +Version &apt-product-version; + + + +This document describes how to use APT in a non-networked environment, +specifically a 'sneaker-net' approach for performing upgrades. + + + +1999Jason Gunthorpe + + +License Notice + +"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. + + +For more details, on Debian systems, see the file +/usr/share/common-licenses/GPL for the full license. + + + + + +Introduction + +

Overview + +Normally APT requires direct access to a Debian archive, either from a local +media or through a network. Another common complaint is that a Debian machine +is on a slow link, such as a modem and another machine has a very fast +connection but they are physically distant. + + +The solution to this is to use large removable media such as a Zip disc or a +SuperDisk disc. These discs are not large enough to store the entire Debian +archive but can easily fit a subset large enough for most users. The idea is +to use APT to generate a list of packages that are required and then fetch them +onto the disc using another machine with good connectivity. It is even +possible to use another Debian machine with APT or to use a completely +different OS and a download tool like wget. Let remote +host mean the machine downloading the packages, and target +host the one with bad or no connection. + + +This is achieved by creatively manipulating the APT configuration file. The +essential premise to tell APT to look on a disc for it's archive files. Note +that the disc should be formated with a filesystem that can handle long file +names such as ext2, fat32 or vfat. + +
+ + + +Using APT on both machines + +
Overview + +APT being available on both machines gives the simplest configuration. The +basic idea is to place a copy of the status file on the disc and use the remote +machine to fetch the latest package files and decide which packages to +download. The disk directory structure should look like: + + + /disc/ + archives/ + partial/ + lists/ + partial/ + status + sources.list + apt.conf + +
+ +
The configuration file + +The configuration file should tell APT to store its files on the disc and to +use the configuration files on the disc as well. The sources.list should +contain the proper sites that you wish to use from the remote machine, and the +status file should be a copy of /var/lib/dpkg/status from +the target host. Please note, if you are using a local +archive you must use copy URIs, the syntax is identical to file URIs. + + +apt.conf must contain the necessary information to make +APT use the disc: + + + APT + { + /* This is not necessary if the two machines are the same arch, it tells + the remote APT what architecture the target machine is */ + Architecture "i386"; + + Get::Download-Only "true"; + }; + + Dir + { + /* Use the disc for state information and redirect the status file from + the /var/lib/dpkg default */ + State "/disc/"; + State::status "status"; + + // Binary caches will be stored locally + Cache::archives "/disc/archives/"; + Cache "/tmp/"; + + // Location of the source list. + Etc "/disc/"; + }; + + +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. + + +On the target machine the first thing to do is mount the disc and copy +/var/lib/dpkg/status to it. You will also need +to create the directories outlined in the Overview, +archives/partial/ and +lists/partial/. Then take the disc to the +remote machine and configure the sources.list. On the remote +machine execute the following: + + + # export APT_CONFIG="/disc/apt.conf" + # apt-get update + [ APT fetches the package files ] + # apt-get dist-upgrade + [ APT fetches all the packages needed to upgrade the target machine ] + + +The dist-upgrade command can be replaced with any other standard APT commands, +particularly dselect-upgrade. You can even use an APT front end such as +dselect. However this presents a problem in communicating +your selections back to the local computer. + + +Now the disc contains all of the index files and archives needed to upgrade the +target machine. Take the disc back and run: + + + # export APT_CONFIG="/disc/apt.conf" + # apt-get check + [ APT generates a local copy of the cache files ] + # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade + [ Or any other APT command ] + + +It is necessary for proper function to re-specify the status file to be the +local one. This is very important! + + +If you are using dselect you can do the very risky operation of copying +disc/status to /var/lib/dpkg/status so that any selections you made on the +remote machine are updated. I highly recommend that people only make +selections on 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!! + +
+ +
+ +Using APT and wget + +
Overview + +wget is a popular and portable download tool that can run +on nearly any machine. Unlike the method above this requires that the Debian +machine already has a list of available packages. + + +The basic idea is to create a disc that has only the archive files downloaded +from the remote site. This is done by using the --print-uris option to apt-get +and then preparing a wget script to actually fetch the packages. + +
+ +
Operation + +Unlike the previous technique no special configuration files are required. We +merely use the standard APT commands to generate the file list. + + + # apt-get dist-upgrade + [ Press no when prompted, make sure you are happy with the actions ] + # apt-get -qq --print-uris dist-upgrade > uris + # awk '{print "wget -O " $2 " " $1}' < uris > /disc/wget-script + + +Any command other than dist-upgrade could be used here, including +dselect-upgrade. + + +The /disc/wget-script file will now contain a list of wget commands to execute +in order to fetch the necessary archives. This script should be run with the +current directory as the disc's mount point so as to save the output on the +disc. + + +The remote machine would do something like + + + # cd /disc + # sh -x ./wget-script + [ wait.. ] + + +Once the archives are downloaded and the disc returned to the Debian machine +installation can proceed using, + + + # apt-get -o dir::cache::archives="/disc/" dist-upgrade + + +Which will use the already fetched archives on the disc. + +
+ +
+ +
diff --git a/doc/offline.sgml b/doc/offline.sgml deleted file mode 100644 index 659ca3147..000000000 --- a/doc/offline.sgml +++ /dev/null @@ -1,236 +0,0 @@ - - - -Using APT Offline - -Jason Gunthorpe jgg@debian.org -$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $ - - -This document describes how to use APT in a non-networked environment, -specifically a 'sneaker-net' approach for performing upgrades. - - - -Copyright © Jason Gunthorpe, 1999. -

-"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. - -

-For more details, on Debian systems, see the file -/usr/share/common-licenses/GPL for the full license. - - - - -Introduction - - -Overview - -

-Normally APT requires direct access to a Debian archive, either from a local -media or through a network. Another common complaint is that a Debian machine -is on a slow link, such as a modem and another machine has a very fast -connection but they are physically distant. - -

-The solution to this is to use large removable media such as a Zip disc or a -SuperDisk disc. These discs are not large enough to store the entire Debian -archive but can easily fit a subset large enough for most users. The idea -is to use APT to generate a list of packages that are required and then fetch -them onto the disc using another machine with good connectivity. It is -even possible to use another Debian machine with APT or to use a completely -different OS and a download tool like wget. Let remote host mean the -machine downloading the packages, and target host the one with bad or -no connection. - -

-This is achieved by creatively manipulating the APT configuration file. The -essential premise to tell APT to look on a disc for it's archive files. Note -that the disc should be formated with a filesystem that can handle long file -names such as ext2, fat32 or vfat. - - - - -Using APT on both machines - - -Overview - -

-APT being available on both machines gives the simplest configuration. The -basic idea is to place a copy of the status file on the disc and use the -remote machine to fetch the latest package files and decide which packages to -download. The disk directory structure should look like: - - - /disc/ - archives/ - partial/ - lists/ - partial/ - status - sources.list - apt.conf - - - - - - -The configuration file - -

-The configuration file should tell APT to store its files on the disc and -to use the configuration files on the disc as well. The sources.list should -contain the proper sites that you wish to use from the remote machine, and -the status file should be a copy of /var/lib/dpkg/status from the -target host. Please note, if you are using a local archive you must use -copy URIs, the syntax is identical to file URIs. - -

-apt.conf must contain the necessary information to make APT use the -disc: - - - APT - { - /* This is not necessary if the two machines are the same arch, it tells - the remote APT what architecture the target machine is */ - Architecture "i386"; - - Get::Download-Only "true"; - }; - - Dir - { - /* Use the disc for state information and redirect the status file from - the /var/lib/dpkg default */ - State "/disc/"; - State::status "status"; - - // Binary caches will be stored locally - Cache::archives "/disc/archives/"; - Cache "/tmp/"; - - // Location of the source list. - Etc "/disc/"; - }; - - -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. - -

-On the target machine the first thing to do is mount the disc and copy -/var/lib/dpkg/status to it. You will also need to create the directories -outlined in the Overview, archives/partial/ and lists/partial/. -Then take the disc to the remote machine and configure the sources.list. -On the remote machine execute the following: - - - # export APT_CONFIG="/disc/apt.conf" - # apt-get update - [ APT fetches the package files ] - # apt-get dist-upgrade - [ APT fetches all the packages needed to upgrade the target machine ] - - -The dist-upgrade command can be replaced with any other standard APT commands, -particularly dselect-upgrade. You can even use an APT front end such as -dselect. However this presents a problem in communicating your -selections back to the local computer. - -

-Now the disc contains all of the index files and archives needed to upgrade -the target machine. Take the disc back and run: - - - # export APT_CONFIG="/disc/apt.conf" - # apt-get check - [ APT generates a local copy of the cache files ] - # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade - [ Or any other APT command ] - - -

-It is necessary for proper function to re-specify the status file to be the -local one. This is very important! - -

-If you are using dselect you can do the very risky operation of copying -disc/status to /var/lib/dpkg/status so that any selections you made on the -remote machine are updated. I highly recommend that people only make selections -on 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!! - - - - -Using APT and wget - - -Overview - -

-wget is a popular and portable download tool that can run on nearly -any machine. Unlike the method above this requires that the Debian machine -already has a list of available packages. - -

-The basic idea is to create a disc that has only the archive files downloaded -from the remote site. This is done by using the --print-uris option to apt-get -and then preparing a wget script to actually fetch the packages. - - - - - -Operation - -

-Unlike the previous technique no special configuration files are required. We -merely use the standard APT commands to generate the file list. - - - # apt-get dist-upgrade - [ Press no when prompted, make sure you are happy with the actions ] - # apt-get -qq --print-uris dist-upgrade > uris - # awk '{print "wget -O " $2 " " $1}' < uris > /disc/wget-script - - -Any command other than dist-upgrade could be used here, including -dselect-upgrade. - -

-The /disc/wget-script file will now contain a list of wget commands to execute -in order to fetch the necessary archives. This script should be run with the -current directory as the disc's mount point so as to save the output on the -disc. - -

-The remote machine would do something like - - - # cd /disc - # sh -x ./wget-script - [ wait.. ] - - -Once the archives are downloaded and the disc returned to the Debian machine -installation can proceed using, - - - # apt-get -o dir::cache::archives="/disc/" dist-upgrade - - -Which will use the already fetched archives on the disc. - - - - diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index a058e6506..b17bde1e1 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 1.0.4~20140610\n" +"Project-Id-Version: apt-doc 1.0.6\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -665,7 +665,7 @@ msgid "" msgstr "" #. type: Content of: -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 apt-ftparchive.1.xml:609 +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 apt-ftparchive.1.xml:609 msgid "See Also" msgstr "" @@ -1285,7 +1285,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 apt.conf.5.xml:1221 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 apt.conf.5.xml:1222 apt_preferences.5.xml:700 msgid "Files" msgstr "" @@ -2153,7 +2153,7 @@ msgstr "" #: apt-secure.8.xml:195 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -3215,14 +3215,15 @@ msgid "" "information, such as the two package caches <literal>srcpkgcache</literal> " "and <literal>pkgcache</literal> as well as the location to place downloaded " "archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " -"be turned off by setting their names to the empty string. This will slow " +"be turned off by setting <literal>pkgcache</literal> or " +"<literal>srcpkgcache</literal> to <literal>\"\"</literal>. This will slow " "down startup but save disk space. It is probably preferable to turn off the " -"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " -"default directory is contained in <literal>Dir::Cache</literal>" +"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> " +"the default directory is contained in <literal>Dir::Cache</literal>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:617 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -3232,7 +3233,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:622 +#: apt.conf.5.xml:623 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -3240,7 +3241,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:627 msgid "" "Binary programs are pointed to by " "<literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal> specifies " @@ -3252,7 +3253,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:634 +#: apt.conf.5.xml:635 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -3265,7 +3266,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:648 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -3276,12 +3277,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:657 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:659 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -3289,7 +3290,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:664 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, " @@ -3303,40 +3304,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:677 +#: apt.conf.5.xml:678 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:683 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:688 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:693 +#: apt.conf.5.xml:694 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:695 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:700 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -3344,7 +3345,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:705 +#: apt.conf.5.xml:706 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3353,7 +3354,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:712 +#: apt.conf.5.xml:713 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3364,7 +3365,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:719 +#: apt.conf.5.xml:720 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -3373,7 +3374,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:724 +#: apt.conf.5.xml:725 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -3384,7 +3385,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:731 +#: apt.conf.5.xml:732 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</literal> " @@ -3395,26 +3396,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:742 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:746 +#: apt.conf.5.xml:747 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:751 +#: apt.conf.5.xml:752 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:753 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -3429,7 +3430,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:767 +#: apt.conf.5.xml:768 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -3439,7 +3440,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:762 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -3453,7 +3454,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:774 +#: apt.conf.5.xml:775 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -3466,7 +3467,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:782 +#: apt.conf.5.xml:783 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is " @@ -3484,7 +3485,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:798 msgid "" "If this option is set APT will call <command>dpkg --configure " "--pending</command> to let &dpkg; handle all required configurations and " @@ -3496,7 +3497,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:804 +#: apt.conf.5.xml:805 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -3507,7 +3508,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:818 #, no-wrap msgid "" "OrderList::Score {\n" @@ -3519,7 +3520,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:810 +#: apt.conf.5.xml:811 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -3533,12 +3534,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:831 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:832 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -3547,12 +3548,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:839 +#: apt.conf.5.xml:840 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:841 +#: apt.conf.5.xml:842 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -3563,7 +3564,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:852 +#: apt.conf.5.xml:853 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, " @@ -3571,7 +3572,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:861 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s " @@ -3579,7 +3580,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:870 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -3589,65 +3590,65 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:878 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:888 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:896 +#: apt.conf.5.xml:897 msgid "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:907 +#: apt.conf.5.xml:908 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:919 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:930 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:940 +#: apt.conf.5.xml:941 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:951 +#: apt.conf.5.xml:952 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:961 +#: apt.conf.5.xml:962 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:971 +#: apt.conf.5.xml:972 msgid "" "Output each cryptographic hash that is generated by the " "<literal>apt</literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:981 +#: apt.conf.5.xml:982 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -3655,52 +3656,52 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:992 +#: apt.conf.5.xml:993 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 "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1004 +#: apt.conf.5.xml:1005 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1014 +#: apt.conf.5.xml:1015 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1024 +#: apt.conf.5.xml:1025 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1036 +#: apt.conf.5.xml:1037 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1047 +#: apt.conf.5.xml:1048 msgid "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1058 +#: apt.conf.5.xml:1059 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1068 +#: apt.conf.5.xml:1069 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial " @@ -3710,7 +3711,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1082 +#: apt.conf.5.xml:1083 msgid "" "Generate debug messages describing which packages are marked as " "keep/install/remove while the ProblemResolver does his work. Each addition " @@ -3728,45 +3729,45 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1103 +#: apt.conf.5.xml:1104 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1114 +#: apt.conf.5.xml:1115 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1125 +#: apt.conf.5.xml:1126 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1137 +#: apt.conf.5.xml:1138 msgid "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1148 +#: apt.conf.5.xml:1149 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1158 +#: apt.conf.5.xml:1159 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1169 +#: apt.conf.5.xml:1170 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -3774,14 +3775,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1181 +#: apt.conf.5.xml:1182 msgid "" "Print information about the vendors read from " "<filename>/etc/apt/vendors.list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1191 +#: apt.conf.5.xml:1192 msgid "" "Display the external commands that are called by apt hooks. This includes " "e.g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -3789,12 +3790,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 apt-ftparchive.1.xml:598 msgid "Examples" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1216 +#: apt.conf.5.xml:1217 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -3802,7 +3803,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1228 +#: apt.conf.5.xml:1229 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "" @@ -6005,35 +6006,50 @@ msgid "" "100 on error." msgstr "" -#. type: <title> -#: guide.sgml:4 +#. type: Attribute 'lang' of: +#: guide.dbk:8 offline.dbk:8 +msgid "en" +msgstr "" + +#. type: Content of: +#: guide.dbk:10 msgid "APT User's Guide" msgstr "" -#. type: <author></author> -#: guide.sgml:6 offline.sgml:6 -msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#. type: Content of: <book><bookinfo><authorgroup><author><personname> +#: guide.dbk:16 offline.dbk:16 +msgid "Jason Gunthorpe" +msgstr "" + +#. type: Content of: <book><bookinfo><authorgroup><author><email> +#: guide.dbk:16 offline.dbk:16 +msgid "jgg@debian.org" msgstr "" -#. type: <version></version> -#: guide.sgml:7 -msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#. type: Content of: <book><bookinfo><releaseinfo> +#: guide.dbk:20 offline.dbk:20 +msgid "Version &apt-product-version;" msgstr "" -#. type: <abstract></abstract> -#: guide.sgml:11 +#. type: Content of: <book><bookinfo><abstract><para> +#: guide.dbk:24 msgid "" "This document provides an overview of how to use the the APT package " "manager." msgstr "" -#. type: <copyrightsummary></copyrightsummary> -#: guide.sgml:15 -msgid "Copyright © Jason Gunthorpe, 1998." +#. type: Content of: <book><bookinfo> +#: guide.dbk:28 +msgid "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" + +#. type: Content of: <book><bookinfo><legalnotice><title> +#: guide.dbk:31 offline.dbk:32 +msgid "License Notice" msgstr "" -#. type: <p></p> -#: guide.sgml:21 offline.sgml:22 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:33 offline.dbk:34 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 " @@ -6041,42 +6057,42 @@ msgid "" "or (at your option) any later version." msgstr "" -#. type: <p></p> -#: guide.sgml:24 offline.sgml:25 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:42 offline.dbk:40 msgid "" "For more details, on Debian systems, see the file " "/usr/share/common-licenses/GPL for the full license." msgstr "" -#. type: <heading></heading> -#: guide.sgml:32 +#. type: Content of: <book><chapter><title> +#: guide.dbk:49 msgid "General" msgstr "" -#. type: <p></p> -#: guide.sgml:38 +#. type: Content of: <book><chapter><para> +#: guide.dbk:51 msgid "" "The APT package currently contains two sections, the APT " -"<prgn>dselect</prgn> method and the <prgn>apt-get</prgn> command line user " -"interface. Both provide a way to install and remove packages as well as " -"download new packages from the Internet." +"<command>dselect</command> method and the <command>apt-get</command> command " +"line user interface. Both provide a way to install and remove packages as " +"well as download new packages from the Internet." msgstr "" -#. type: <heading></heading> -#: guide.sgml:39 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:57 msgid "Anatomy of the Package System" msgstr "" -#. type: <p></p> -#: guide.sgml:44 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:59 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 "" -#. type: <p></p> -#: guide.sgml:52 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:64 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -6085,8 +6101,8 @@ msgid "" "in mail transport agents, X servers and so on." msgstr "" -#. type: <p></p> -#: guide.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:71 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 " @@ -6094,8 +6110,8 @@ msgid "" "properly." msgstr "" -#. type: <p></p> -#: guide.sgml:63 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:76 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 " @@ -6103,8 +6119,8 @@ msgid "" "simple dependency on emacs, without emacs it is completely useless." msgstr "" -#. type: <p></p> -#: guide.sgml:73 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:82 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 " @@ -6116,8 +6132,8 @@ msgid "" "other mail transport agents." msgstr "" -#. type: <p></p> -#: guide.sgml:83 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:92 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 " @@ -6129,8 +6145,8 @@ msgid "" "trying to manually fix packages." msgstr "" -#. type: <p></p> -#: guide.sgml:88 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:102 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 " @@ -6138,71 +6154,78 @@ msgid "" "packages for installation." msgstr "" -#. type: <heading></heading> -#: guide.sgml:96 +#. type: Content of: <book><chapter><title> +#: guide.dbk:111 msgid "apt-get" msgstr "" -#. type: <p></p> -#: guide.sgml:102 +#. type: Content of: <book><chapter><para> +#: guide.dbk:113 msgid "" -"<prgn>apt-get</prgn> provides a simple way to install packages from the " -"command line. Unlike <prgn>dpkg</prgn>, <prgn>apt-get</prgn> does not " -"understand .deb files, it works with the package's proper name and can only " -"install .deb archives from a <em>Source</em>." +"<command>apt-get</command> provides a simple way to install packages from " +"the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " +"does not understand .deb files, it works with the package's proper name and " +"can only install .deb archives from a <emphasis>Source</emphasis>." msgstr "" -#. type: <p></p> -#: guide.sgml:109 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:119 msgid "" -"The first <footnote><p>If you are using an http proxy server you must set " -"the http_proxy environment variable first, see " -"sources.list(5)</p></footnote> thing that should be done before using " -"<prgn>apt-get</prgn> is to fetch the package lists from the <em>Sources</em> " -"so that it knows what packages are available. This is done with <tt>apt-get " -"update</tt>. For instance," +"If you are using an http proxy server you must set the http_proxy " +"environment variable first, see sources.list(5)" msgstr "" -#. type: <example></example> -#: guide.sgml:116 +#. type: Content of: <book><chapter><para> +#: guide.dbk:119 +msgid "" +"The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " +"done before using <command>apt-get</command> is to fetch the package lists " +"from the <emphasis>Sources</emphasis> so that it knows what packages are " +"available. This is done with <literal>apt-get update</literal>. For " +"instance," +msgstr "" + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:127 #, no-wrap msgid "" "# 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" +"Building Dependency Tree... Done\n" msgstr "" -#. type: <p><taglist> -#: guide.sgml:120 +#. type: Content of: <book><chapter><para> +#: guide.dbk:134 msgid "Once updated there are several commands that can be used:" msgstr "" -#. type: <tag></tag> -#: guide.sgml:121 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:138 msgid "upgrade" msgstr "" -#. type: <p></p> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:141 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 " "upgrade a package that might cause some other package to break. This can be " "used daily to relatively safely upgrade the system. Upgrade will list all of " "the packages that it could not upgrade, this usually means that they depend " -"on new packages or conflict with some other package. <prgn>dselect</prgn> or " -"<tt>apt-get install</tt> can be used to force these packages to install." +"on new packages or conflict with some other " +"package. <command>dselect</command> or <literal>apt-get install</literal> " +"can be used to force these packages to install." msgstr "" -#. type: <tag></tag> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:153 msgid "install" msgstr "" -#. type: <p></p> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:156 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 " @@ -6213,131 +6236,135 @@ msgid "" "anything other than its arguments are changed." msgstr "" -#. type: <tag></tag> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:167 msgid "dist-upgrade" msgstr "" -#. type: <p></p> -#: guide.sgml:149 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:170 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " "set of packages to install, upgrade and remove to get as much of the system " "to the newest release. In some situations it may be desired to use " "dist-upgrade rather than spend the time manually resolving dependencies in " -"<prgn>dselect</prgn>. Once dist-upgrade has completed then " -"<prgn>dselect</prgn> can be used to install any packages that may have been " -"left out." +"<command>dselect</command>. Once dist-upgrade has completed then " +"<command>dselect</command> can be used to install any packages that may have " +"been left out." msgstr "" -#. type: <p></p> -#: guide.sgml:152 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:180 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." msgstr "" -#. type: <p></p> -#: guide.sgml:163 +#. type: Content of: <book><chapter><para> +#: guide.dbk:187 msgid "" -"<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -"option is <tt>-d</tt> which does not install the fetched files. If the " -"system has to download a large number of package it would be undesired to " -"start installing them in case something goes wrong. When <tt>-d</tt> is used " -"the downloaded archives can be installed by simply running the command that " -"caused them to be downloaded again without <tt>-d</tt>." +"<command>apt-get</command> has several command line options that are " +"detailed in its man page, " +"<citerefentry><refentrytitle>apt-get</refentrytitle><manvolnum>8</manvolnum></citerefentry>. " +"The most useful option is <literal>-d</literal> which does not install the " +"fetched files. If the system has to download a large number of package it " +"would be undesired to start installing them in case something goes " +"wrong. When <literal>-d</literal> is used the downloaded archives can be " +"installed by simply running the command that caused them to be downloaded " +"again without <literal>-d</literal>." msgstr "" -#. type: <heading></heading> -#: guide.sgml:168 +#. type: Content of: <book><chapter><title> +#: guide.dbk:199 msgid "DSelect" msgstr "" -#. type: <p></p> -#: guide.sgml:173 +#. type: Content of: <book><chapter><para> +#: guide.dbk:201 msgid "" -"The APT <prgn>dselect</prgn> method provides the complete APT system with " -"the <prgn>dselect</prgn> package selection GUI. <prgn>dselect</prgn> is used " -"to select the packages to be installed or removed and APT actually installs " -"them." +"The APT <command>dselect</command> method provides the complete APT system " +"with the <command>dselect</command> package selection " +"GUI. <command>dselect</command> is used to select the packages to be " +"installed or removed and APT actually installs them." msgstr "" -#. type: <p></p> -#: guide.sgml:184 +#. type: Content of: <book><chapter><para> +#: guide.dbk:207 msgid "" -"To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " -"and then choose the APT method. You will be prompted for a set of " -"<em>Sources</em> which are places to fetch archives from. These can be " -"remote Internet sites, local Debian mirrors or CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet." +"To enable the APT method you need to select [A]ccess in " +"<command>dselect</command> and then choose the APT method. You will be " +"prompted for a set of <emphasis>Sources</emphasis> which are places to fetch " +"archives from. These can be remote Internet sites, local Debian mirrors or " +"CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the " +"Internet." msgstr "" -#. type: <example></example> -#: guide.sgml:198 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:218 #, no-wrap msgid "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" msgstr "" -#. type: <p></p> -#: guide.sgml:205 +#. type: Content of: <book><chapter><para> +#: guide.dbk:232 msgid "" -"The <em>Sources</em> setup starts by asking for the base of the Debian " -"archive, defaulting to a HTTP mirror. Next it asks for the distribution to " -"get." +"The <emphasis>Sources</emphasis> 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 "" -#. type: <example></example> -#: guide.sgml:212 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:237 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" +"\n" +" Distribution [stable]:\n" msgstr "" -#. type: <p></p> -#: guide.sgml:222 +#. type: Content of: <book><chapter><para> +#: guide.dbk:244 msgid "" "The distribution refers to the Debian version in the archive, " -"<em>stable</em> refers to the latest released version and <em>unstable</em> " -"refers to the developmental version. <em>non-US</em> is only available on " -"some mirrors and refers to packages that contain encryption technology or " -"other things that cannot be exported from the United States. Importing these " -"packages into the US is legal however." +"<emphasis>stable</emphasis> refers to the latest released version and " +"<emphasis>unstable</emphasis> refers to the developmental " +"version. <emphasis>non-US</emphasis> is only available on some mirrors and " +"refers to packages that contain encryption technology or other things that " +"cannot be exported from the United States. Importing these packages into the " +"US is legal however." msgstr "" -#. type: <example></example> -#: guide.sgml:228 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:253 #, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" msgstr "" -#. type: <p></p> -#: guide.sgml:236 +#. type: Content of: <book><chapter><para> +#: guide.dbk:259 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 " @@ -6345,25 +6372,25 @@ msgid "" "restrictions placed on their use and distribution." msgstr "" -#. type: <p></p> -#: guide.sgml:240 +#. type: Content of: <book><chapter><para> +#: guide.dbk:265 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." msgstr "" -#. type: <p></p> -#: guide.sgml:247 +#. type: Content of: <book><chapter><para> +#: guide.dbk:269 msgid "" -"Before starting to use <prgn>dselect</prgn> it is necessary to update the " -"available list by selecting [U]pdate from the menu. This is a superset of " -"<tt>apt-get update</tt> that makes the fetched information available to " -"<prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get " -"update</tt> has been run before." +"Before starting to use <command>dselect</command> it is necessary to update " +"the available list by selecting [U]pdate from the menu. This is a superset " +"of <literal>apt-get update</literal> that makes the fetched information " +"available to <command>dselect</command>. [U]pdate must be performed even if " +"<literal>apt-get update</literal> has been run before." msgstr "" -#. type: <p></p> -#: guide.sgml:253 +#. type: Content of: <book><chapter><para> +#: guide.dbk:276 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 " @@ -6371,57 +6398,63 @@ msgid "" "them together." msgstr "" -#. type: <p></p> -#: guide.sgml:258 +#. type: Content of: <book><chapter><para> +#: guide.dbk:282 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " -"<tt>Dselect::clean \"prompt\";</tt> in /etc/apt/apt.conf." +"<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" -#. type: <heading></heading> -#: guide.sgml:264 +#. type: Content of: <book><chapter><title> +#: guide.dbk:288 msgid "The Interface" msgstr "" -#. type: <p></p> -#: guide.sgml:278 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:292 msgid "" -"Both that APT <prgn>dselect</prgn> method and <prgn>apt-get</prgn> share the " -"same interface. It is a simple system that generally tells you what it will " -"do and then goes and does it. <footnote><p>The <prgn>dselect</prgn> method " -"actually is a set of wrapper scripts to <prgn>apt-get</prgn>. The method " -"actually provides more functionality than is present in <prgn>apt-get</prgn> " -"alone.</p></footnote> After printing out a summary of what will happen APT " -"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." +"The <command>dselect</command> method actually is a set of wrapper scripts " +"to <command>apt-get</command>. The method actually provides more " +"functionality than is present in <command>apt-get</command> alone." msgstr "" -#. type: <heading></heading> -#: guide.sgml:280 +#. type: Content of: <book><chapter><para> +#: guide.dbk:290 +msgid "" +"Both that APT <command>dselect</command> method and " +"<command>apt-get</command> share the same interface. It is a simple system " +"that generally tells you what it will do and then goes and does " +"it. <placeholder type=\"footnote\" id=\"0\"/> After printing out a summary " +"of what will happen APT 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 "" + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:301 msgid "Startup" msgstr "" -#. type: <p></p> -#: guide.sgml:284 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:303 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 <tt>apt-get " -"check</tt>." +"state. At any time these operations can be performed by running " +"<literal>apt-get check</literal>." msgstr "" -#. type: <example></example> -#: guide.sgml:289 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:309 #, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" msgstr "" -#. type: <p></p> -#: guide.sgml:297 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:314 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 " @@ -6429,17 +6462,17 @@ msgid "" "and a warning will be printed when apt-get exits." msgstr "" -#. type: <p></p> -#: guide.sgml:303 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:320 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " "package and considers if it is OK. Should this find a problem then a report " -"will be printed out and <prgn>apt-get</prgn> will refuse to run." +"will be printed out and <command>apt-get</command> will refuse to run." msgstr "" -#. type: <example></example> -#: guide.sgml:320 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:326 #, no-wrap msgid "" "# apt-get check\n" @@ -6449,18 +6482,18 @@ msgid "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" msgstr "" -#. type: <p></p> -#: guide.sgml:329 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:343 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 " @@ -6469,61 +6502,69 @@ msgid "" "problem is also included." msgstr "" -#. type: <p></p> -#: guide.sgml:337 +#. type: Content of: <book><chapter><section><para><footnote><para> +#: guide.dbk:352 +msgid "" +"APT however considers all known dependencies and attempts to prevent broken " +"packages" +msgstr "" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:350 msgid "" "There are two ways a system can get into a broken state like this. The first " -"is caused by <prgn>dpkg</prgn> missing some subtle relationships between " -"packages when performing upgrades. <footnote><p>APT however considers all " -"known dependencies and attempts to prevent broken " -"packages</p></footnote>. The second is if a package installation fails " -"during an operation. In this situation a package may have been unpacked " -"without its dependents being installed." +"is caused by <command>dpkg</command> missing some subtle relationships " +"between packages when performing upgrades. <placeholder type=\"footnote\" " +"id=\"0\"/>. The second is if a package installation fails during an " +"operation. In this situation a package may have been unpacked without its " +"dependents being installed." msgstr "" -#. type: <p></p> -#: guide.sgml:345 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:359 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 " -"supplying the <tt>-f</tt> option to <prgn>apt-get</prgn> will cause APT to " -"deduce a possible solution to the problem and then continue on. The APT " -"<prgn>dselect</prgn> method always supplies the <tt>-f</tt> option to allow " -"for easy continuation of failed maintainer scripts." +"supplying the <literal>-f</literal> option to <command>apt-get</command> " +"will cause APT to deduce a possible solution to the problem and then " +"continue on. The APT <command>dselect</command> method always supplies the " +"<literal>-f</literal> option to allow for easy continuation of failed " +"maintainer scripts." msgstr "" -#. type: <p></p> -#: guide.sgml:351 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:368 msgid "" -"However, if the <tt>-f</tt> option is used to correct a seriously broken " -"system caused by the first case then it is possible that it will either fail " -"immediately or the installation sequence will fail. In either case it is " -"necessary to manually use dpkg (possibly with forcing options) to correct " -"the situation enough to allow APT to proceed." +"However, if the <literal>-f</literal> option is used to correct a seriously " +"broken system caused by the first case then it is possible that it will " +"either fail immediately or the installation sequence will fail. In either " +"case it is necessary to manually use dpkg (possibly with forcing options) to " +"correct the situation enough to allow APT to proceed." msgstr "" -#. type: <heading></heading> -#: guide.sgml:356 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:376 msgid "The Status Report" msgstr "" -#. type: <p></p> -#: guide.sgml:363 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:378 msgid "" -"Before proceeding <prgn>apt-get</prgn> will present a report on what will " -"happen. Generally the report reflects the type of operation being performed " -"but there are several common elements. In all cases the lists reflect the " -"final state of things, taking into account the <tt>-f</tt> option and any " -"other relevant activities to the command being executed." +"Before proceeding <command>apt-get</command> will present a report on what " +"will happen. Generally the report reflects the type of operation being " +"performed but there are several common elements. In all cases the lists " +"reflect the final state of things, taking into account the " +"<literal>-f</literal> option and any other relevant activities to the " +"command being executed." msgstr "" -#. type: <heading></heading> -#: guide.sgml:364 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:385 msgid "The Extra Package list" msgstr "" -#. type: <example></example> -#: guide.sgml:372 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:387 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -6531,135 +6572,135 @@ msgid "" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" msgstr "" -#. type: <p></p> -#: guide.sgml:379 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:395 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 <tt>install</tt> command. The listed packages are often the " -"result of an Auto Install." +"generated for an <literal>install</literal> command. The listed packages are " +"often the result of an Auto Install." msgstr "" -#. type: <heading></heading> -#: guide.sgml:382 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:402 msgid "The Packages to Remove" msgstr "" -#. type: <example></example> -#: guide.sgml:389 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:404 #, no-wrap msgid "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" msgstr "" -#. type: <p></p> -#: guide.sgml:399 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:411 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 " "given a careful inspection to ensure nothing important is to be taken " -"off. The <tt>-f</tt> option is especially good at generating packages to " -"remove so extreme care should be used in that case. The list may contain " -"packages that are going to be removed because they are only partially " -"installed, possibly due to an aborted installation." +"off. The <literal>-f</literal> option is especially good at generating " +"packages to remove so extreme care should be used in that case. The list may " +"contain packages that are going to be removed because they are only " +"partially installed, possibly due to an aborted installation." msgstr "" -#. type: <heading></heading> -#: guide.sgml:402 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:421 msgid "The New Packages list" msgstr "" -#. type: <example></example> -#: guide.sgml:406 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:423 #, no-wrap msgid "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" msgstr "" -#. type: <p></p> -#: guide.sgml:411 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:427 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 "" -#. type: <heading></heading> -#: guide.sgml:414 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:432 msgid "The Kept Back list" msgstr "" -#. type: <example></example> -#: guide.sgml:419 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:434 #, 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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" msgstr "" -#. type: <p></p> -#: guide.sgml:428 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:439 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 " "or conflict with already installed things. In this case the package will " "appear in the Kept Back list. The best way to convince packages listed there " -"to install is with <tt>apt-get install</tt> or by using <prgn>dselect</prgn> " -"to resolve their problems." +"to install is with <literal>apt-get install</literal> or by using " +"<command>dselect</command> to resolve their problems." msgstr "" -#. type: <heading></heading> -#: guide.sgml:431 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:448 msgid "Held Packages warning" msgstr "" -#. type: <example></example> -#: guide.sgml:435 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:450 #, no-wrap msgid "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" msgstr "" -#. type: <p></p> -#: guide.sgml:441 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:454 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 "" -#. type: <heading></heading> -#: guide.sgml:444 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:460 msgid "Final summary" msgstr "" -#. type: <p></p> -#: guide.sgml:447 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:462 msgid "Finally, APT will print out a summary of all the changes that will occur." msgstr "" -#. type: <example></example> -#: guide.sgml:452 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:465 #, 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" -#. type: <p></p> -#: guide.sgml:470 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:470 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 " @@ -6676,27 +6717,27 @@ msgid "" "indicate the amount of space that will be freed." msgstr "" -#. type: <p></p> -#: guide.sgml:473 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:484 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." msgstr "" -#. type: <heading></heading> -#: guide.sgml:477 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:491 msgid "The Status Display" msgstr "" -#. type: <p></p> -#: guide.sgml:481 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:493 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." msgstr "" -#. type: <example></example> -#: guide.sgml:490 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:497 #, no-wrap msgid "" "# apt-get update\n" @@ -6706,111 +6747,107 @@ msgid "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" msgstr "" -#. type: <p></p> -#: guide.sgml:500 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:506 msgid "" -"The lines starting with <em>Get</em> are printed out when APT begins to " -"fetch a file while the last line indicates the progress of the download. The " -"first percent value on the progress line indicates the total percent done of " -"all files. Unfortunately since the size of the Package files is unknown " -"<tt>apt-get update</tt> estimates the percent done which causes some " -"inaccuracies." +"The lines starting with <emphasis>Get</emphasis> are printed out when APT " +"begins to fetch a file while the last line indicates the progress of the " +"download. The first percent value on the progress line indicates the total " +"percent done of all files. Unfortunately since the size of the Package files " +"is unknown <literal>apt-get update</literal> estimates the percent done " +"which causes some inaccuracies." msgstr "" -#. type: <p></p> -#: guide.sgml:509 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:514 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " "information about what is happening. Sometimes this section will simply read " -"<em>Forking</em> which means the OS is loading the download module. The " -"first word after the [ is the fetch number as shown on the history " -"lines. The next word is the short form name of the object being " +"<emphasis>Forking</emphasis> which means the OS is loading the download " +"module. The first word after the [ is the fetch number as shown on the " +"history lines. 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 "" -#. type: <p></p> -#: guide.sgml:524 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:524 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " -"<em>Connecting</em> to <em>Waiting for file</em> to <em>Downloading</em> or " -"<em>Resuming</em>. The final value is the number of bytes downloaded from " -"the remote site. Once the download begins this is represented as " -"<tt>102/10.2k</tt> indicating that 102 bytes have been fetched and 10.2 " -"kilobytes is expected. The total size is always shown in 4 figure notation " -"to preserve space. After the size display is a percent meter for the file " -"itself. The second last element is the instantaneous average speed. This " -"values is updated every 5 seconds and reflects the rate of data transfer for " -"that period. Finally is shown the estimated transfer time. This is updated " +"<emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to " +"<emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final " +"value is the number of bytes downloaded from the remote site. Once the " +"download begins this is represented as <literal>102/10.2k</literal> " +"indicating that 102 bytes have been fetched and 10.2 kilobytes is " +"expected. The total size is always shown in 4 figure notation to preserve " +"space. After the size display is a percent meter for the file itself. The " +"second last element is the instantaneous average speed. This values is " +"updated every 5 seconds and reflects the rate of data transfer for that " +"period. Finally is shown the estimated transfer time. This is updated " "regularly and reflects the time to complete everything at the shown transfer " "rate." msgstr "" -#. type: <p></p> -#: guide.sgml:530 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:539 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 " "is started. Since the status display is constantly updated it is unsuitable " -"for logging to a file, use the <tt>-q</tt> option to remove the status " -"display." +"for logging to a file, use the <literal>-q</literal> option to remove the " +"status display." msgstr "" -#. type: <heading></heading> -#: guide.sgml:535 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:547 msgid "Dpkg" msgstr "" -#. type: <p></p> -#: guide.sgml:542 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:549 msgid "" -"APT uses <prgn>dpkg</prgn> for installing the archives and will switch over " -"to the <prgn>dpkg</prgn> interface once downloading is " -"completed. <prgn>dpkg</prgn> will also ask a number of questions as it " +"APT uses <command>dpkg</command> for installing the archives and will switch " +"over to the <command>dpkg</command> interface once downloading is " +"completed. <command>dpkg</command> will also ask a number of questions as it " "processes the packages and the packages themselves may also ask several " "questions. Before each question there is usually a description of what it is " "asking and the questions are too varied to discuss completely here." msgstr "" -#. type: <title> -#: offline.sgml:4 +#. type: Content of: +#: offline.dbk:10 msgid "Using APT Offline" msgstr "" -#. type: <version></version> -#: offline.sgml:7 -msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "" - -#. type: <abstract></abstract> -#: offline.sgml:12 +#. type: Content of: <book><bookinfo><abstract><para> +#: offline.dbk:24 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." msgstr "" -#. type: <copyrightsummary></copyrightsummary> -#: offline.sgml:16 -msgid "Copyright © Jason Gunthorpe, 1999." +#. type: Content of: <book><bookinfo> +#: offline.dbk:29 +msgid "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" -#. type: <heading></heading> -#: offline.sgml:32 +#. type: Content of: <book><chapter><title> +#: offline.dbk:47 msgid "Introduction" msgstr "" -#. type: <heading></heading> -#: offline.sgml:34 offline.sgml:65 offline.sgml:180 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:49 offline.dbk:79 offline.dbk:191 msgid "Overview" msgstr "" -#. type: <p></p> -#: offline.sgml:40 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:51 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -6818,8 +6855,8 @@ msgid "" "fast connection but they are physically distant." msgstr "" -#. type: <p></p> -#: offline.sgml:51 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:57 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -6827,13 +6864,13 @@ msgid "" "to use APT to generate a list of packages that are required and then fetch " "them onto the disc using another machine with good connectivity. It is even " "possible to use another Debian machine with APT or to use a completely " -"different OS and a download tool like wget. Let <em>remote host</em> mean " -"the machine downloading the packages, and <em>target host</em> the one with " -"bad or no connection." +"different OS and a download tool like wget. Let <emphasis>remote " +"host</emphasis> mean the machine downloading the packages, and " +"<emphasis>target host</emphasis> the one with bad or no connection." msgstr "" -#. type: <p></p> -#: offline.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:68 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -6841,13 +6878,13 @@ msgid "" "names such as ext2, fat32 or vfat." msgstr "" -#. type: <heading></heading> -#: offline.sgml:63 +#. type: Content of: <book><chapter><title> +#: offline.dbk:77 msgid "Using APT on both machines" msgstr "" -#. type: <p><example> -#: offline.sgml:71 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:81 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -6855,8 +6892,8 @@ msgid "" "to download. The disk directory structure should look like:" msgstr "" -#. type: <example></example> -#: offline.sgml:80 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:87 #, no-wrap msgid "" " /disc/\n" @@ -6866,34 +6903,35 @@ msgid "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" msgstr "" -#. type: <heading></heading> -#: offline.sgml:88 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:98 msgid "The configuration file" msgstr "" -#. type: <p></p> -#: offline.sgml:96 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:100 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " "contain the proper sites that you wish to use from the remote machine, and " -"the status file should be a copy of <em>/var/lib/dpkg/status</em> from the " -"<em>target host</em>. Please note, if you are using a local archive you must " -"use copy URIs, the syntax is identical to file URIs." +"the status file should be a copy of " +"<emphasis>/var/lib/dpkg/status</emphasis> from the <emphasis>target " +"host</emphasis>. Please note, if you are using a local archive you must use " +"copy URIs, the syntax is identical to file URIs." msgstr "" -#. type: <p><example> -#: offline.sgml:100 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:108 msgid "" -"<em>apt.conf</em> must contain the necessary information to make APT use the " -"disc:" +"<emphasis>apt.conf</emphasis> must contain the necessary information to make " +"APT use the disc:" msgstr "" -#. type: <example></example> -#: offline.sgml:124 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:112 #, no-wrap msgid "" " APT\n" @@ -6902,10 +6940,10 @@ msgid "" "tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -6916,76 +6954,79 @@ msgid "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" msgstr "" -#. type: </example></p> -#: offline.sgml:129 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:137 msgid "" "More details can be seen by examining the apt.conf man page and the sample " -"configuration file in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"configuration file in " +"<emphasis>/usr/share/doc/apt/examples/apt.conf</emphasis>." msgstr "" -#. type: <p><example> -#: offline.sgml:136 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:142 msgid "" "On the target machine the first thing to do is mount the disc and copy " -"<em>/var/lib/dpkg/status</em> to it. You will also need to create the " -"directories outlined in the Overview, <em>archives/partial/</em> and " -"<em>lists/partial/</em>. Then take the disc to the remote machine and " -"configure the sources.list. On the remote machine execute the following:" +"<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " +"create the directories outlined in the Overview, " +"<emphasis>archives/partial/</emphasis> and " +"<emphasis>lists/partial/</emphasis>. Then take the disc to the remote " +"machine and configure the sources.list. On the remote machine execute the " +"following:" msgstr "" -#. type: <example></example> -#: offline.sgml:142 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:151 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT fetches the package files ]\n" " # apt-get dist-upgrade\n" -" [ APT fetches all the packages needed to upgrade the target machine ]" +" [ APT fetches all the packages needed to upgrade the target machine ]\n" msgstr "" -#. type: </example></p> -#: offline.sgml:149 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:158 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " -"such as <em>dselect</em>. However this presents a problem in communicating " -"your selections back to the local computer." +"such as <emphasis>dselect</emphasis>. However this presents a problem in " +"communicating your selections back to the local computer." msgstr "" -#. type: <p><example> -#: offline.sgml:153 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:164 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 "" -#. type: <example></example> -#: offline.sgml:159 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:168 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generates a local copy of the cache files ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Or any other APT command ]" +" [ Or any other APT command ]\n" msgstr "" -#. type: <p></p> -#: offline.sgml:165 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:175 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" msgstr "" -#. type: <p></p> -#: offline.sgml:172 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:179 msgid "" "If you are using dselect you can do the very risky operation of copying " "disc/status to /var/lib/dpkg/status so that any selections you made on the " @@ -6994,21 +7035,21 @@ msgid "" "NOT copy the status file if dpkg or APT have been run in the mean time!!" msgstr "" -#. type: <heading></heading> -#: offline.sgml:178 +#. type: Content of: <book><chapter><title> +#: offline.dbk:189 msgid "Using APT and wget" msgstr "" -#. type: <p></p> -#: offline.sgml:185 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:193 msgid "" -"<em>wget</em> is a popular and portable download tool that can run on nearly " -"any machine. Unlike the method above this requires that the Debian machine " -"already has a list of available packages." +"<emphasis>wget</emphasis> is a popular and portable download tool that can " +"run on nearly any machine. Unlike the method above this requires that the " +"Debian machine already has a list of available packages." msgstr "" -#. type: <p></p> -#: offline.sgml:190 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:198 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -7016,37 +7057,37 @@ msgid "" "packages." msgstr "" -#. type: <heading></heading> -#: offline.sgml:196 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:204 msgid "Operation" msgstr "" -#. type: <p><example> -#: offline.sgml:200 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:206 msgid "" "Unlike the previous technique no special configuration files are " "required. We merely use the standard APT commands to generate the file list." msgstr "" -#. type: <example></example> -#: offline.sgml:205 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:210 #, no-wrap msgid "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" -#. type: </example></p> -#: offline.sgml:210 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:216 msgid "" "Any command other than dist-upgrade could be used here, including " "dselect-upgrade." msgstr "" -#. type: <p></p> -#: offline.sgml:216 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:220 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -7054,34 +7095,34 @@ msgid "" "output on the disc." msgstr "" -#. type: <p><example> -#: offline.sgml:219 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:226 msgid "The remote machine would do something like" msgstr "" -#. type: <example></example> -#: offline.sgml:223 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:229 #, no-wrap msgid "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" msgstr "" -#. type: </example><example> -#: offline.sgml:228 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:234 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," msgstr "" -#. type: <example></example> -#: offline.sgml:230 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:238 #, no-wrap -msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" +msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr "" -#. type: </example></p> -#: offline.sgml:234 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." msgstr "" diff --git a/doc/po/de.po b/doc/po/de.po index e5b61da60..463b1d934 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -1,14 +1,14 @@ -# Translation of apt-doc to German +# Translation of apt/doc to German # Copyright (C) 1997, 1998, 1999 Jason Gunthorpe and others. -# This file is distributed under the same license as the apt-doc package. +# This file is distributed under the same license as the apt package. # Chris Leick <c.leick@vollbio.de>, 2009-2014. # msgid "" msgstr "" -"Project-Id-Version: apt-doc 0.9.16\n" +"Project-Id-Version: apt-doc 1.0.4\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-05-05 16:26+0200\n" -"PO-Revision-Date: 2014-04-01 14:00+0200\n" +"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"PO-Revision-Date: 2014-07-04 00:34+0200\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" "Language: de\n" @@ -633,7 +633,7 @@ msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt.8.xml:32 msgid "command-line interface" -msgstr "" +msgstr "Befehlszeilenschnittstelle" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 @@ -652,6 +652,10 @@ msgid "" "management of the system. See also &apt-get; and &apt-cache; for more low-" "level command options." msgstr "" +"<command>apt</command> (Advanced Package Tool) ist das Befehlszeilenwerkzeug " +"für den Umgang mit Paketen. Es stellt eine Befehlszeilenschnittstelle zur " +"Verwaltung von Paketen auf dem System bereit. Tiefer ansetzende " +"Befehlsoptionen finden sie unter &apt-get; und &apt-cache;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:47 @@ -661,6 +665,10 @@ msgid "" "<option>--installed</option>, <option>--upgradable</option>, <option>--all-" "versions</option> are supported." msgstr "" +"<literal>list</literal> wird benutzt, um eine Paketliste anzuzeigen. Es " +"unterstützt Shell-Muster zur Beschränkung auf passende Paketnamen. Die " +"folgenden Optionen werden unterstützt: <option>--installed</option>, " +"<option>--upgradable</option>, <option>--all-versions</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:58 @@ -668,19 +676,17 @@ msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" +"<literal>search</literal> sucht nach angegebenen Begriffen und zeigt " +"passende Pakete an." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:64 -#, fuzzy -#| msgid "" -#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " -#| "package has." msgid "" "<literal>show</literal> shows the package information for the given " "package(s)." msgstr "" -"<literal>rdepends</literal> zeigt eine Liste von jeder " -"Rückwärtsabhängigkeit, die ein Paket hat." +"<literal>show</literal> zeigt die Paketinformationen für die angegebenen " +"Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:71 @@ -688,6 +694,8 @@ msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" +"<literal>install</literal> wird ergänzt mit einem oder mehreren Paketnamen, " +"von denen eine Installation oder ein Upgrade gewünscht wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:75 apt-get.8.xml:118 @@ -717,7 +725,7 @@ msgid "" "installed instead of removed." msgstr "" "<literal>remove</literal> ist identisch mit <literal>install</literal>, mit " -"der Ausnahme, dass Pakte entfernt anstatt installiert werden. Beachten Sie, " +"der Ausnahme, dass Pakete entfernt anstatt installiert werden. Beachten Sie, " "dass das Entfernen von Paketen deren Konfigurationsdateien im System " "belässt. Wenn ein Pluszeichen an den Paketnamen angehängt wird (ohne " "Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt entfernt." @@ -728,19 +736,17 @@ msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" +"<literal>edit-sources</literal> ermöglicht die Bearbeitung Ihrer »sources." +"list«-Datei und stellt grundlegende Plausibilitätsprüfungen bereit." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:99 -#, fuzzy -#| msgid "" -#| "<literal>showhold</literal> is used to print a list of packages on hold " -#| "in the same way as for the other show commands." msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources." msgstr "" -"<literal>showhold</literal> wird benutzt, um eine Liste auf »hold« gesetzter " -"Pakete auf die gleiche Art wie für andere Anzeigebefehle auszugeben." +"<literal>update</literal> wird benutzt, um die Paketindexdateien wieder mit " +"ihren Quellen in Einklang zu bringen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:105 @@ -750,6 +756,10 @@ msgid "" "<filename>/etc/apt/sources.list</filename>. New package will be installed, " "but existing package will never removed." msgstr "" +"<literal>upgrade</literal> wird verwendet, um die neuesten Versionen aller " +"derzeit auf Ihrem System installierten Pakete von den in <filename>/etc/apt/" +"sources.list</filename> aufgezählten Quellen zu installieren. Dabei werden " +"neue Pakete installiert, existierende jedoch nicht entfernt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:114 @@ -758,6 +768,9 @@ msgid "" "also remove installed packages if that is required in order to resolve a " "package conflict." msgstr "" +"<literal>full-upgrade</literal> verrichtet die Funktion von »upgrade«, kann " +"aber auch installierte Pakete entfernen, falls dies zum Auflösen eines " +"Paketkonflikts nötig ist." #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 @@ -769,7 +782,7 @@ msgstr "Optionen" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:134 msgid "Script usage" -msgstr "" +msgstr "Skriptaufruf" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:136 @@ -780,11 +793,17 @@ msgid "" "&apt-cache; and &apt-get; via APT options. Please prefer using these " "commands in your scripts." msgstr "" +"Die &apt;-Befehlszeile wurde als Endanwenderwerkzeug entworfen und kann bei " +"Versionswechseln die Ausgabe ändern. Obwohl es versucht, nicht die " +"Abwärtskompatibilität zu unterbrechen, kann sie nicht garantiert werden. " +"Alle Funktionalitäten von &apt; sind in &apt-cache; und &apt-get; über APT-" +"Optionen verfügbar. Bitte benutzen Sie vorzugsweise diese Befehle in Ihren " +"Skripten." #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:144 msgid "Differences to &apt-get;" -msgstr "" +msgstr "Unterschiede zu &apt-get;" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:145 @@ -793,20 +812,19 @@ msgid "" "does not need to be backward compatible like &apt-get;. Therefore some " "options are different:" msgstr "" +"Der Befehl <command>apt</command> ist dazu gedacht, dem Endanwender die " +"Arbeit zu erleichtern und benötigt keine Abwärtskompatibilität wie &apt-" +"get;. Daher unterscheiden sich einige Optionen:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:151 -#, fuzzy -#| msgid "the <literal>Package:</literal> line" msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." -msgstr "die <literal>Package:</literal>-Zeile" +msgstr "Die Option <literal>DPkg::Progress-Fancy</literal> ist aktiviert." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:155 -#, fuzzy -#| msgid "the <literal>Component:</literal> line" msgid "The option <literal>APT::Color</literal> is enabled." -msgstr "die <literal>Component:</literal>-Zeile" +msgstr "Die Option <literal>APT::Color</literal> ist aktiviert." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:159 @@ -814,20 +832,22 @@ msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" +"Ein neuer <literal>list</literal>-Befehl ist verfügbar. Er ist <literal>dpkg " +"--list</literal> ähnlich." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:164 -#, fuzzy -#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgid "" "The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " "enabled by default." -msgstr "die <literal>Archive:</literal>- oder <literal>Suite:</literal>-Zeile" +msgstr "" +"Bei der Option <literal>upgrade</literal> ist standardmäßig <literal>--with-" +"new-pkgs</literal> aktiviert." #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 #: apt-ftparchive.1.xml:609 msgid "See Also" @@ -835,18 +855,12 @@ msgstr "Siehe auch" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:175 -#, fuzzy -#| msgid "" -#| "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-" -#| "config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" -#| "preferences;, the APT Howto." msgid "" "&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " "User's guide in &guidesdir;, &apt-preferences;, the APT Howto." msgstr "" -"&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " -"&apt-secure;, die APT-Benutzeranleitung in &guidesdir;, &apt-preferences;, " -"das APT-Howto." +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, die APT-" +"Benutzeranleitung in &guidesdir;, &apt-preferences;, das APT-Howto." #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 @@ -857,16 +871,12 @@ msgstr "Diagnose" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:181 -#, fuzzy -#| msgid "" -#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " -#| "on error." msgid "" "<command>apt</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" -"<command>apt-get</command> gibt bei normalen Operationen 0 zurück, dezimal " -"100 bei Fehlern." +"<command>apt</command> gibt bei normalen Operationen 0 zurück, dezimal 100 " +"bei Fehlern." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-get.8.xml:35 @@ -1039,7 +1049,7 @@ 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 "" -"Dies ist außerdem die bevorzugt zu benutzende Art, wenn Sie Sie ein Upgrade " +"Dies ist außerdem die bevorzugt zu benutzende Art, wenn Sie ein Upgrade " "eines oder mehrerer bereits installierter Pakete durchführen möchten, ohne " "ein Upgrade aller Pakete, die Sie auf Ihrem System haben, durchzuführen. " "Anders als das Ziel von »upgrade«, das die neusten Versionen aller aktuell " @@ -1766,13 +1776,6 @@ msgstr "" # FIXME s/Item/Items/ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:535 -#, fuzzy -#| msgid "" -#| "Show user friendly progress information in the terminal window when " -#| "packages are installed, upgraded or removed. For a machine parsable " -#| "version of this data see README.progress-reporting in the apt doc " -#| "directory. Configuration Item: <literal>DpkgPM::Progress</literal> and " -#| "<literal>Dpkg::Progress-Fancy</literal>." msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1783,13 +1786,13 @@ msgstr "" "zeigt benutzerfreundliche Fortschrittsinformationen im Terminalfenster, wenn " "Pakete installiert beziehungsweise entfernt werden oder ein Upgrade " "durchgeführt wird. Informationen über eine maschinell auswertbare Version " -"dieser Daten finden Sie in README.progress-reporting im Apt-doc-Verzeichnis. " -"Konfigurationselemente: <literal>DpkgPM::Progress</literal> und " -"<literal>Dpkg::Progress-Fancy</literal>." +"dieser Daten finden Sie in README.progress-reporting im Verzeichnis apt/doc. " +"Konfigurationselemente: <literal>Dpkg::Progress</literal> und <literal>Dpkg::" +"Progress-Fancy</literal>." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 +#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 msgid "Files" msgstr "Dateien" @@ -3005,10 +3008,10 @@ msgstr "" #: apt-secure.8.xml:195 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" msgstr "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:199 @@ -4582,15 +4585,27 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:607 +#, fuzzy +#| msgid "" +#| "<literal>Dir::Cache</literal> contains locations pertaining to local " +#| "cache information, such as the two package caches <literal>srcpkgcache</" +#| "literal> and <literal>pkgcache</literal> as well as the location to place " +#| "downloaded archives, <literal>Dir::Cache::archives</literal>. Generation " +#| "of caches can be turned off by setting their names to the empty string. " +#| "This will slow down startup but save disk space. It is probably " +#| "preferable to turn off the pkgcache rather than the srcpkgcache. Like " +#| "<literal>Dir::State</literal> the default directory is contained in " +#| "<literal>Dir::Cache</literal>" msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " "and <literal>pkgcache</literal> as well as the location to place downloaded " "archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " -"be turned off by setting their names to the empty string. This will slow " +"be turned off by setting <literal>pkgcache</literal> or " +"<literal>srcpkgcache</literal> to <literal>\"\"</literal>. This will slow " "down startup but save disk space. It is probably preferable to turn off the " -"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " -"default directory is contained in <literal>Dir::Cache</literal>" +"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> enthält Orte, die zu lokalen " "Zwischenspeicherinformationen gehören, so wie die beiden " @@ -4604,7 +4619,7 @@ msgstr "" "Standardverzeichnis in <literal>Dir::Cache</literal> enthalten." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:617 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4619,7 +4634,7 @@ msgstr "" "Konfigurationsdatei erfolgt)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:622 +#: apt.conf.5.xml:623 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4631,7 +4646,7 @@ msgstr "" "geladen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:627 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4649,7 +4664,7 @@ msgstr "" "Programms an." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:634 +#: apt.conf.5.xml:635 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4669,7 +4684,7 @@ msgstr "" "<filename>/tmp/staging/var/lib/dpkg/status</filename> nachgesehen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:648 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4687,12 +4702,12 @@ msgstr "" "diese Muster verwandt werden." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:657 msgid "APT in DSelect" msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:659 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4703,7 +4718,7 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:664 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4726,7 +4741,7 @@ msgstr "" "vor dem Herunterladen neuer Pakete durch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:677 +#: apt.conf.5.xml:678 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4735,7 +4750,7 @@ msgstr "" "übermittelt, wenn es für die Installationsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:683 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4744,7 +4759,7 @@ msgstr "" "übermittelt, wenn es für die Aktualisierungsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:688 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4753,12 +4768,12 @@ msgstr "" "nachfragen, um fortzufahren. Vorgabe ist es, nur bei Fehlern nachzufragen." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:693 +#: apt.conf.5.xml:694 msgid "How APT calls &dpkg;" msgstr "Wie APT &dpkg; aufruft" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:695 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4767,7 +4782,7 @@ msgstr "" "stehen im Abschnitt <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:700 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4778,7 +4793,7 @@ msgstr "" "jedes Listenelement wird als einzelnes Argument an &dpkg; übermittelt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:705 +#: apt.conf.5.xml:706 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4792,7 +4807,7 @@ msgstr "" "APT abgebrochen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:712 +#: apt.conf.5.xml:713 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4811,7 +4826,7 @@ msgstr "" "übergeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:719 +#: apt.conf.5.xml:720 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4824,7 +4839,7 @@ msgstr "" "Version die Architektur und den <literal>MultiArch</literal>-Schalter hinzu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:724 +#: apt.conf.5.xml:725 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4842,7 +4857,7 @@ msgstr "" "bietet." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:731 +#: apt.conf.5.xml:732 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4860,7 +4875,7 @@ msgstr "" "verwendeten Dateideskriptors als eine Bestätigung." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:742 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4869,7 +4884,7 @@ msgstr "" "die Vorgabe ist <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:746 +#: apt.conf.5.xml:747 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4879,12 +4894,12 @@ msgstr "" "Programme werden erstellt." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:751 +#: apt.conf.5.xml:752 msgid "dpkg trigger usage (and related options)" msgstr "Dpkd-Trigger-Benutzung (und zugehörige Optionen)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:753 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4911,7 +4926,7 @@ msgstr "" "Pakete konfiguriert werden." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:767 +#: apt.conf.5.xml:768 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4925,7 +4940,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:762 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4950,7 +4965,7 @@ msgstr "" "Optionenkombination wäre <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:774 +#: apt.conf.5.xml:775 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4973,7 +4988,7 @@ msgstr "" "anhängen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:782 +#: apt.conf.5.xml:783 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -5003,7 +5018,7 @@ msgstr "" "enden könnte und möglicherweise nicht mehr startbar ist." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:798 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5022,7 +5037,7 @@ msgstr "" "deaktivieren." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:804 +#: apt.conf.5.xml:805 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5038,7 +5053,7 @@ msgstr "" "benötigt werden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:818 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5056,7 +5071,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:810 +#: apt.conf.5.xml:811 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5080,12 +5095,12 @@ msgstr "" "mit ihren Vorgabewerten. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:831 msgid "Periodic and Archives options" msgstr "Periodische- und Archivoptionen" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:832 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5099,12 +5114,12 @@ msgstr "" "Dokumentation dieser Optionen zu erhalten." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:839 +#: apt.conf.5.xml:840 msgid "Debug options" msgstr "Fehlersuchoptionen" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:841 +#: apt.conf.5.xml:842 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5122,7 +5137,7 @@ msgstr "" "könnten es sein:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:852 +#: apt.conf.5.xml:853 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5133,7 +5148,7 @@ msgstr "" "getroffenen Entscheidungen ein." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:861 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5144,7 +5159,7 @@ msgstr "" "<literal>apt-get -s install</literal>) als nicht root-Anwender auszuführen." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:870 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5156,7 +5171,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:878 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5165,12 +5180,12 @@ msgstr "" "Daten in CD-ROM-IDs aus." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:888 msgid "A full list of debugging options to apt follows." msgstr "Eine vollständige Liste der Fehlersuchoptionen von APT folgt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:896 +#: apt.conf.5.xml:897 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5178,28 +5193,28 @@ msgstr "" "literal>-Quellen beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:907 +#: apt.conf.5.xml:908 msgid "Print information related to downloading packages using FTP." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per FTP " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:919 msgid "Print information related to downloading packages using HTTP." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTP " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:930 msgid "Print information related to downloading packages using HTTPS." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTPS " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:940 +#: apt.conf.5.xml:941 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5208,7 +5223,7 @@ msgstr "" "mittels <literal>gpg</literal> beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:951 +#: apt.conf.5.xml:952 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5217,13 +5232,13 @@ msgstr "" "CD-ROMs gespeichert sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:961 +#: apt.conf.5.xml:962 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "beschreibt den Prozess der Auflösung von Bauabhängigkeiten in &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:971 +#: apt.conf.5.xml:972 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5232,7 +5247,7 @@ msgstr "" "Bibliotheken generiert wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:981 +#: apt.conf.5.xml:982 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5243,7 +5258,7 @@ msgstr "" "ID für eine CD-ROM generiert wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:992 +#: apt.conf.5.xml:993 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." @@ -5253,14 +5268,14 @@ msgstr "" "gleichen Zeit laufen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1004 +#: apt.conf.5.xml:1005 msgid "Log when items are added to or removed from the global download queue." msgstr "" "protokolliert, wenn Elemente aus der globalen Warteschlange zum " "Herunterladen hinzugefügt oder entfernt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1014 +#: apt.conf.5.xml:1015 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5269,7 +5284,7 @@ msgstr "" "und kryptografischen Signaturen von heruntergeladenen Dateien beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1024 +#: apt.conf.5.xml:1025 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5278,7 +5293,7 @@ msgstr "" "Diffs und Fehler, die die Paketindexlisten-Diffs betreffen, aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1036 +#: apt.conf.5.xml:1037 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5288,7 +5303,7 @@ msgstr "" "werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1047 +#: apt.conf.5.xml:1048 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5296,7 +5311,7 @@ msgstr "" "durchführen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1058 +#: apt.conf.5.xml:1059 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5306,7 +5321,7 @@ msgstr "" "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1068 +#: apt.conf.5.xml:1069 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5322,7 +5337,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1082 +#: apt.conf.5.xml:1083 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5355,7 +5370,7 @@ msgstr "" "dem das Paket erscheint." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1103 +#: apt.conf.5.xml:1104 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5365,7 +5380,7 @@ msgstr "" "sind, aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1114 +#: apt.conf.5.xml:1115 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5374,7 +5389,7 @@ msgstr "" "und alle während deren Auswertung gefundenen Fehler aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1125 +#: apt.conf.5.xml:1126 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5384,7 +5399,7 @@ msgstr "" "soll." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1137 +#: apt.conf.5.xml:1138 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5392,12 +5407,12 @@ msgstr "" "von &dpkg; ausgeführt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1148 +#: apt.conf.5.xml:1149 msgid "Output the priority of each package list on startup." msgstr "gibt die Priorität jeder Paketliste beim Start aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1158 +#: apt.conf.5.xml:1159 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5407,7 +5422,7 @@ msgstr "" "aufgetreten ist)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1169 +#: apt.conf.5.xml:1170 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5419,7 +5434,7 @@ msgstr "" "Marker</literal> beschrieben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1181 +#: apt.conf.5.xml:1182 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5428,21 +5443,24 @@ msgstr "" "filename> gelesenen Anbieter aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1191 +#: apt.conf.5.xml:1192 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " "<literal>APT::Update::{Pre,Post}-Invoke</literal>." msgstr "" +"zeigt die externen Befehle, die durch APT-Hooks aufgerufen werden. Dies " +"schließt z.B. die Konfigurationsoptionen <literal>DPkg::{Pre,Post}-Invoke</" +"literal> oder <literal>APT::Update::{Pre,Post}-Invoke</literal> mit ein." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Beispiele" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1216 +#: apt.conf.5.xml:1217 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5452,7 +5470,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1228 +#: apt.conf.5.xml:1229 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -8502,36 +8520,53 @@ msgstr "" "<command>apt-ftparchive</command> gibt bei normalen Operationen 0 zurück, " "dezimal 100 bei Fehlern." -#. type: <title> -#: guide.sgml:4 +#. type: Attribute 'lang' of: +#: guide.dbk:8 offline.dbk:8 +msgid "en" +msgstr "de" + +#. type: Content of: +#: guide.dbk:10 msgid "APT User's Guide" msgstr "APT-Benutzerhandbuch" -#. type: <author></author> -#: guide.sgml:6 offline.sgml:6 -msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" -msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#. type: Content of: <book><bookinfo><authorgroup><author><personname> +#: guide.dbk:16 offline.dbk:16 +msgid "Jason Gunthorpe" +msgstr "Jason Gunthorpe" + +#. type: Content of: <book><bookinfo><authorgroup><author><email> +#: guide.dbk:16 offline.dbk:16 +msgid "jgg@debian.org" +msgstr "jgg@debian.org" -#. type: <version></version> -#: guide.sgml:7 -msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#. type: Content of: <book><bookinfo><releaseinfo> +#: guide.dbk:20 offline.dbk:20 +msgid "Version &apt-product-version;" +msgstr "" -#. type: <abstract></abstract> -#: guide.sgml:11 +#. type: Content of: <book><bookinfo><abstract><para> +#: guide.dbk:24 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" "Dieses Dokument stellt eine Übersicht bereit, wie das APT-" "Paketverwaltungsprogramm benutzt wird." -#. type: <copyrightsummary></copyrightsummary> -#: guide.sgml:15 -msgid "Copyright © Jason Gunthorpe, 1998." -msgstr "Copyright © Jason Gunthorpe, 1998." +#. type: Content of: <book><bookinfo> +#: guide.dbk:28 +msgid "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" + +#. type: Content of: <book><bookinfo><legalnotice><title> +#: guide.dbk:31 offline.dbk:32 +msgid "License Notice" +msgstr "" -#. type: <p></p> -#: guide.sgml:21 offline.sgml:22 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:33 offline.dbk:34 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 " @@ -8543,8 +8578,8 @@ msgstr "" "sie von der Free Software Foundation veröffentlicht wird; entweder Version 2 " "der Lizenz oder (optional) jeder späteren Version." -#. type: <p></p> -#: guide.sgml:24 offline.sgml:25 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:42 offline.dbk:40 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8552,31 +8587,32 @@ msgstr "" "Siehe für weitere Details auf Debian-Systemen die Datei /usr/share/common-" "licenses/GPL, die die vollständige Lizenz enthält." -#. type: <heading></heading> -#: guide.sgml:32 +#. type: Content of: <book><chapter><title> +#: guide.dbk:49 msgid "General" msgstr "Allgemein" -#. type: <p></p> -#: guide.sgml:38 +#. type: Content of: <book><chapter><para> +#: guide.dbk:51 msgid "" -"The APT package currently contains two sections, the APT <prgn>dselect</" -"prgn> method and the <prgn>apt-get</prgn> command line user interface. Both " -"provide a way to install and remove packages as well as download new " -"packages from the Internet." +"The APT package currently contains two sections, the APT <command>dselect</" +"command> method and the <command>apt-get</command> command line user " +"interface. Both provide a way to install and remove packages as well as " +"download new packages from the Internet." msgstr "" -"Das Paket APT enthält derzeit zwei Abschnitte, die APT-<prgn>dselect</prgn>-" -"Methode und die Anwenderschnittstelle <prgn>apt-get</prgn> für die " -"Befehlszeile. Beide stellen eine Möglichkeit bereit, Pakete zu installieren, " -"zu entfernen, sowie neue Pakete aus dem Internet herunterzuladen." +"Das Paket APT enthält derzeit zwei Abschnitte, die APT-<command>dselect</" +"command>-Methode und die Anwenderschnittstelle <command>apt-get</command> " +"für die Befehlszeile. Beide stellen eine Möglichkeit bereit, Pakete zu " +"installieren, zu entfernen, sowie neue Pakete aus dem Internet " +"herunterzuladen." -#. type: <heading></heading> -#: guide.sgml:39 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:57 msgid "Anatomy of the Package System" msgstr "Anatomie des Paketsystems" -#. type: <p></p> -#: guide.sgml:44 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:59 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 " @@ -8587,8 +8623,8 @@ msgstr "" "ordentlich und leicht in das System integriert wird. Das bekannteste seiner " "Funktionen ist das Abhängigkeitssystem." -#. type: <p></p> -#: guide.sgml:52 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:64 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8603,8 +8639,8 @@ msgstr "" "Durchschnittsanwender installieren sollte. Außerdem erlaubt es die Auswahl " "von Mail-Transport-Agenten, X-Servern und so weiter." -#. type: <p></p> -#: guide.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:71 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 " @@ -8617,8 +8653,8 @@ msgstr "" "benötigt, das zu gleichen Zeit installiert sein muss, um ordentlich zu " "funktionieren." -#. type: <p></p> -#: guide.sgml:63 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:76 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 " @@ -8631,8 +8667,8 @@ msgstr "" "eine Emacs-Erweiterung ist, hat es ebenfalls eine einfache Abhängigkeit von " "Emacs. Ohne Emacs ist es komplett unbenutzbar." -#. type: <p></p> -#: guide.sgml:73 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:82 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 " @@ -8654,8 +8690,8 @@ msgstr "" "in Konflikt stehende Abhängigkeiten mit allen anderen Mail-Transport-Agenten " "haben." -#. type: <p></p> -#: guide.sgml:83 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:92 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 " @@ -8676,8 +8712,8 @@ msgstr "" "dass sie von einem Mail-Transport-Agenten abhängen. Die kann zu großer " "Verwirrung führen, wenn manuell versucht wird, Pakete zu reparieren." -#. type: <p></p> -#: guide.sgml:88 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:102 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 " @@ -8690,77 +8726,85 @@ msgstr "" "Algorithmen bereitstellt, die bei der Auswahl von Paketen zur Installation " "helfen." -#. type: <heading></heading> -#: guide.sgml:96 +#. type: Content of: <book><chapter><title> +#: guide.dbk:111 msgid "apt-get" msgstr "apt-get" -#. type: <p></p> -#: guide.sgml:102 -msgid "" -"<prgn>apt-get</prgn> provides a simple way to install packages from the " -"command line. Unlike <prgn>dpkg</prgn>, <prgn>apt-get</prgn> does not " -"understand .deb files, it works with the package's proper name and can only " -"install .deb archives from a <em>Source</em>." -msgstr "" -"<prgn>apt-get</prgn> stellt eine einfache Möglichkeit zu Verfügung, Pakete " -"auf der Befehlszeile zu installieren. Anders als <prgn>dpkg</prgn> versteht " -"<prgn>apt-get</prgn> keine .deb-Dateien. Es arbeitet mit dem Eigennamen des " -"Pakets und kann .deb-Archive nur aus einer <em>Quelle</em> installieren." - -#. type: <p></p> -#: guide.sgml:109 -msgid "" -"The first <footnote><p>If you are using an http proxy server you must set " -"the http_proxy environment variable first, see sources.list(5)</p></" -"footnote> thing that should be done before using <prgn>apt-get</prgn> is to " -"fetch the package lists from the <em>Sources</em> so that it knows what " -"packages are available. This is done with <tt>apt-get update</tt>. For " -"instance," -msgstr "" -"Das Erste <footnote><p>Falls Sie einen HTTP-Proxy-Server benutzen, müssen " -"Sie zuerst die Umgebungsvariable »http_proxy« setzen, siehe sources.list(5)</" -"p></footnote>, das Sie vor der Benutzung von <prgn>apt-get</prgn> tun " -"sollten, ist es, die Paketlisten von der <em>Quelle</em> herunterzuladen, so " -"dass es weiß, welche Pakete verfügbar sind. Dies wird mit <tt>apt-get " -"update</tt> erledigt. Zum Beispiel," - -#. type: <example></example> -#: guide.sgml:116 +#. type: Content of: <book><chapter><para> +#: guide.dbk:113 +msgid "" +"<command>apt-get</command> provides a simple way to install packages from " +"the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " +"does not understand .deb files, it works with the package's proper name and " +"can only install .deb archives from a <emphasis>Source</emphasis>." +msgstr "" +"<command>apt-get</command> stellt eine einfache Möglichkeit zu Verfügung, " +"Pakete auf der Befehlszeile zu installieren. Anders als <command>dpkg</" +"command> versteht <command>apt-get</command> keine .deb-Dateien. Es arbeitet " +"mit dem Eigennamen des Pakets und kann .deb-Archive nur aus einer " +"<emphasis>Quelle</emphasis> installieren." + +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:119 +msgid "" +"If you are using an http proxy server you must set the http_proxy " +"environment variable first, see sources.list(5)" +msgstr "" +"Falls Sie einen HTTP-Proxy-Server benutzen, müssen Sie zuerst die " +"Umgebungsvariable »http_proxy« setzen, siehe sources.list(5)" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:119 +msgid "" +"The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " +"done before using <command>apt-get</command> is to fetch the package lists " +"from the <emphasis>Sources</emphasis> so that it knows what packages are " +"available. This is done with <literal>apt-get update</literal>. For instance," +msgstr "" +"Das Erste <placeholder type=\"footnote\" id=\"0\"/>, das Sie vor der " +"Benutzung von <command>apt-get</command> tun sollten, ist es, die " +"Paketlisten von der <emphasis>Quelle</emphasis> herunterzuladen, so dass es " +"weiß, welche Pakete verfügbar sind. Dies wird mit <literal>apt-get update</" +"literal> erledigt. Zum Beispiel," + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:127 #, no-wrap msgid "" "# 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" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get update\n" "OK http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" "OK http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" "Paketlisten werden gelesen … Fertig\n" -"Abhängigkeitsbaum wird aufgebaut … Fertig" +"Abhängigkeitsbaum wird aufgebaut … Fertig\n" -#. type: <p><taglist> -#: guide.sgml:120 +#. type: Content of: <book><chapter><para> +#: guide.dbk:134 msgid "Once updated there are several commands that can be used:" msgstr "Einmal aktualisiert stehen mehrere Befehl zur Benutzung zur Verfügung:" -#. type: <tag></tag> -#: guide.sgml:121 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:138 msgid "upgrade" msgstr "upgrade" -#. type: <p></p> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:141 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 " "upgrade a package that might cause some other package to break. This can be " "used daily to relatively safely upgrade the system. Upgrade will list all of " "the packages that it could not upgrade, this usually means that they depend " -"on new packages or conflict with some other package. <prgn>dselect</prgn> or " -"<tt>apt-get install</tt> can be used to force these packages to install." +"on new packages or conflict with some other package. <command>dselect</" +"command> or <literal>apt-get install</literal> can be used to force these " +"packages to install." msgstr "" "»Upgrade« wird versuchen, ein behutsames Upgrade des ganzen Systems " "durchzuführen. »Upgrade« wird niemals ein neues Paket installieren oder " @@ -8769,17 +8813,17 @@ msgstr "" "ein relativ sicheres Upgrade des Systems durchzuführen. »Upgrade« wird alle " "Pakete auflisten, von denen es kein Upgrade durchführen kann, was " "üblicherweise bedeutet, dass sie von neuen Paketen abhängen oder Konflikte " -"mit anderen Paketen haben. <prgn>dselect</prgn> oder <tt>apt-get install</" -"tt> können benutzt werden, um die Installation von diesen Paketen zu " -"erzwingen." +"mit anderen Paketen haben. <command>dselect</command> oder <literal>apt-get " +"install</literal> können benutzt werden, um die Installation von diesen " +"Paketen zu erzwingen." -#. type: <tag></tag> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:153 msgid "install" msgstr "install" -#. type: <p></p> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:156 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 " @@ -8798,21 +8842,22 @@ msgstr "" "aufzulösen, wird eine Zusammenfassung ausgeben und nach einer Bestätigung " "fragen, wenn sich etwas anderes als dessen Argumente ändert." -#. type: <tag></tag> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:167 msgid "dist-upgrade" msgstr "dist-upgrade" -#. type: <p></p> -#: guide.sgml:149 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:170 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " "set of packages to install, upgrade and remove to get as much of the system " "to the newest release. In some situations it may be desired to use dist-" "upgrade rather than spend the time manually resolving dependencies in " -"<prgn>dselect</prgn>. Once dist-upgrade has completed then <prgn>dselect</" -"prgn> can be used to install any packages that may have been left out." +"<command>dselect</command>. Once dist-upgrade has completed then " +"<command>dselect</command> can be used to install any packages that may have " +"been left out." msgstr "" "»Dist-upgrade« führt vollständige Upgrades durch. Es wurde entworfen, um " "Upgrades zwischen Releases von Debian zu vereinfachen. Es benutzt einen " @@ -8820,13 +8865,13 @@ msgstr "" "Installieren, für das Upgrade oder zum Entfernen festzulegen, um soviel wie " "möglich vom System auf das neuste Release zu bekommen. In einigen " "Situationen könnte es eher gewünscht sein, »dist-upgrade« zu benutzen, als " -"Zeit in das manuelle Auflösen von Abhängigkeiten in <prgn>dselect</prgn> zu " -"investieren. Ist »Dist-upgrade« erst vollständig, dann kann <prgn>dselect</" -"prgn> benutzt werden, um einige Pakete zu installieren, die außen vor " -"geblieben sind." +"Zeit in das manuelle Auflösen von Abhängigkeiten in <command>dselect</" +"command> zu investieren. Ist »Dist-upgrade« erst vollständig, dann kann " +"<command>dselect</command> benutzt werden, um einige Pakete zu installieren, " +"die außen vor geblieben sind." -#. type: <p></p> -#: guide.sgml:152 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:180 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8834,168 +8879,167 @@ msgstr "" "Es ist wichtig, genau zu schauen, was »Dist-upgrade« tun wird, seine " "Entscheidungen können manchmal ziemlich überraschend sein." -#. type: <p></p> -#: guide.sgml:163 -#, fuzzy -#| msgid "" -#| "<prgn>apt-get</prgn> has several command line options that are detailed " -#| "in its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " -#| "option is <tt>-d</tt> which does not install the fetched files. If the " -#| "system has to download a large number of package it would be undesired to " -#| "start installing them in case something goes wrong. When <tt>-d</tt> is " -#| "used the downloaded archives can be installed by simply running the " -#| "command that caused them to be downloaded again without <tt>-d</tt>." -msgid "" -"<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -"option is <tt>-d</tt> which does not install the fetched files. If the " -"system has to download a large number of package it would be undesired to " -"start installing them in case something goes wrong. When <tt>-d</tt> is used " -"the downloaded archives can be installed by simply running the command that " -"caused them to be downloaded again without <tt>-d</tt>." -msgstr "" -"<prgn>apt-get</prgn> hat mehrere Befehlszeilenoptionen, die sich detailliert " -"in dessen Handbuchseite, <manref name=\"apt-get\" section=\"8\"> finden. Die " -"nützlichste Option ist <tt>-d</tt>, die die heruntergeladenen Dateien nicht " -"installiert. Falls das System eine große Anzahl Pakete herunterladen soll, " -"würde es nicht erwünscht sein, wenn die Installation in dem Fall gestartet " -"würde, wenn etwas schief läuft. Falls <tt>-d</tt> benutzt wird, können die " -"heruntergeladenen Archive dadurch installiert werden, indem einfach der " -"Befehl, der das Herunterladen veranlasste, erneut ohne <tt>-d</tt> ausführt " -"wird." - -#. type: <heading></heading> -#: guide.sgml:168 +# s/package/packages/ +#. type: Content of: <book><chapter><para> +#: guide.dbk:187 +msgid "" +"<command>apt-get</command> has several command line options that are " +"detailed in its man page, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. The most useful " +"option is <literal>-d</literal> which does not install the fetched files. If " +"the system has to download a large number of package it would be undesired " +"to start installing them in case something goes wrong. When <literal>-d</" +"literal> is used the downloaded archives can be installed by simply running " +"the command that caused them to be downloaded again without <literal>-d</" +"literal>." +msgstr "" +"<command>apt-get</command> hat mehrere Befehlszeilenoptionen, die sich " +"detailliert in seiner Handbuchseite, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry> finden. Die " +"nützlichste Option ist <literal>-d</literal>, die die heruntergeladenen " +"Dateien nicht installiert. Falls das System eine große Anzahl Pakete " +"herunterladen soll, würde es nicht erwünscht sein, wenn die Installation " +"auch in dem Fall gestartet würde, dass etwas schief läuft. Falls <literal>-" +"d</literal> benutzt wird, können die heruntergeladenen Archive dadurch " +"installiert werden, indem einfach der Befehl, der das Herunterladen " +"veranlasste, erneut ohne <literal>-d</literal> ausgeführt wird." + +#. type: Content of: <book><chapter><title> +#: guide.dbk:199 msgid "DSelect" msgstr "DSelect" -#. type: <p></p> -#: guide.sgml:173 +#. type: Content of: <book><chapter><para> +#: guide.dbk:201 msgid "" -"The APT <prgn>dselect</prgn> method provides the complete APT system with " -"the <prgn>dselect</prgn> package selection GUI. <prgn>dselect</prgn> is used " -"to select the packages to be installed or removed and APT actually installs " -"them." +"The APT <command>dselect</command> method provides the complete APT system " +"with the <command>dselect</command> package selection GUI. <command>dselect</" +"command> is used to select the packages to be installed or removed and APT " +"actually installs them." msgstr "" -"Die APT-<prgn>dselect</prgn>-Methode stellt das komplette APT-System mit dem " -"<prgn>dselect</prgn>-Paketauswahl-GUI bereit. <prgn>dselect</prgn> wird " -"benutzt, um Pakete zum Installieren oder Entfernen auszuwählen und APT " -"installiert sie tatsächlich." +"Die APT-<command>dselect</command>-Methode stellt das komplette APT-System " +"mit dem <command>dselect</command>-Paketauswahl-GUI bereit. " +"<command>dselect</command> wird benutzt, um Pakete zum Installieren oder " +"Entfernen auszuwählen und APT installiert sie tatsächlich." -#. type: <p></p> -#: guide.sgml:184 +#. type: Content of: <book><chapter><para> +#: guide.dbk:207 msgid "" -"To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " -"and then choose the APT method. You will be prompted for a set of " -"<em>Sources</em> which are places to fetch archives from. These can be " -"remote Internet sites, local Debian mirrors or CD-ROMs. Each source can " -"provide a fragment of the total Debian archive, APT will automatically " +"To enable the APT method you need to select [A]ccess in <command>dselect</" +"command> and then choose the APT method. You will be prompted for a set of " +"<emphasis>Sources</emphasis> which are places to fetch archives from. These " +"can be remote Internet sites, local Debian mirrors or CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet." msgstr "" -"Um die APT-Methode einzuschalten, müssen Sie [Z]ugriff in <prgn>dselect</" -"prgn> auswählen und dann die APT-Methode wählen. Sie werden nach einer " -"Zusammenstellung von <em>Quellen</em> gefragt. Dies sind Plätze, von denen " -"Archive heruntergeladen werden. Dies können ferne Internetsites, lokale " -"Debian-Spiegel oder CD-ROMs sein. Jede Quelle kann einen Ausschnitt des " -"gesamten Debian-Archives bereitstellen. APT wird sie automatisch " +"Um die APT-Methode einzuschalten, müssen Sie [Z]ugriff in <command>dselect</" +"command> auswählen und dann die APT-Methode wählen. Sie werden nach einer " +"Zusammenstellung von <emphasis>Quellen</emphasis> gefragt. Dies sind Plätze, " +"von denen Archive heruntergeladen werden. Dies können ferne Internetsites, " +"lokale Debian-Spiegel oder CD-ROMs sein. Jede Quelle kann einen Ausschnitt " +"des gesamten Debian-Archives bereitstellen. APT wird sie automatisch " "kombinieren, um eine komplette Zusammenstellung von Paketen zu formen. Falls " "Sie eine CD-ROM haben, ist es eine gute Idee, sie als erstes und dann den " "Spiegel anzugeben, so dass Sie Zugriff auf die neusten Fehlerbehebungen " "haben. APT wird automatisch Pakete auf der CD-ROM benutzen, bevor es sie aus " "dem Internet herunterlädt." -#. type: <example></example> -#: guide.sgml:198 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:218 #, no-wrap msgid "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" msgstr "" " eine Liste mit Orten von Distributionsquellen einrichten\n" -"\t \n" +"\n" " Bitte geben Sie die Basis-URL der Debian-Distribution an.\n" " Die bekannten Zugriffsschemata dafür sind: http file\n" -"\t \n" +"\n" " Zum Beispiel:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" -#. type: <p></p> -#: guide.sgml:205 +#. type: Content of: <book><chapter><para> +#: guide.dbk:232 msgid "" -"The <em>Sources</em> setup starts by asking for the base of the Debian " -"archive, defaulting to a HTTP mirror. Next it asks for the distribution to " -"get." +"The <emphasis>Sources</emphasis> 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 "" -"Das Einrichten der <em>Quellen</em> beginnt durch das Erfragen der Basis des " -"Debian-Archives, vorgegeben ist ein HTTP-Spiegel. Als nächstes wird nach der " -"zu erhaltenden Distribution gefragt." +"Das Einrichten der <emphasis>Quellen</emphasis> beginnt durch das Erfragen " +"der Basis des Debian-Archives, vorgegeben ist ein HTTP-Spiegel. Als nächstes " +"wird nach der zu erhaltenden Distribution gefragt." -#. type: <example></example> -#: guide.sgml:212 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:237 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" -msgstr "" -" Bitte geben Sie die zu erhaltende Distributionskennzeichnung oder den mit einem / endenden Pfad zum Paket an. Die Distributionskennzeichnungen sind normalerweise etwas wie: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" - -#. type: <p></p> -#: guide.sgml:222 -msgid "" -"The distribution refers to the Debian version in the archive, <em>stable</" -"em> refers to the latest released version and <em>unstable</em> refers to " -"the developmental version. <em>non-US</em> is only available on some mirrors " -"and refers to packages that contain encryption technology or other things " -"that cannot be exported from the United States. Importing these packages " -"into the US is legal however." -msgstr "" -"Die Distribution bezieht sich auf die Debian-Version im Archiv, <em>stable</" -"em> bezieht sich auf die zuletzt veröffentlichte Version und <em>unstable</" -"em> bezieht sich auf die Entwicklungsversion. <em>non-US</em> ist nur auf " -"einigen Spiegeln verfügbar und bezieht sich auf Pakete, die " +"\n" +" Distribution [stable]:\n" +msgstr "" +" Bitte geben Sie die zu erhaltende Distributionskennzeichnung oder den mit\n" +" einem / endenden Pfad zum Paket an. Die Distributionskennzeichnungen sind\n" +" normalerweise etwas wie: stable unstable testing non-US\n" +"\n" +" Distribution [stable]:\n" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:244 +msgid "" +"The distribution refers to the Debian version in the archive, " +"<emphasis>stable</emphasis> refers to the latest released version and " +"<emphasis>unstable</emphasis> refers to the developmental version. " +"<emphasis>non-US</emphasis> is only available on some mirrors and refers to " +"packages that contain encryption technology or other things that cannot be " +"exported from the United States. Importing these packages into the US is " +"legal however." +msgstr "" +"Die Distribution bezieht sich auf die Debian-Version im Archiv, " +"<emphasis>stable</emphasis> bezieht sich auf die zuletzt veröffentlichte " +"Version und <emphasis>unstable</emphasis> bezieht sich auf die " +"Entwicklungsversion. <emphasis>non-US</emphasis> ist nur auf einigen " +"Spiegeln verfügbar und bezieht sich auf Pakete, die " "Verschlüsselungstechnologie oder andere Dinge enthalten, die nicht aus den " "Vereinigten Staaten exportiert werden können. Diese Pakete in die USA zu " "importieren ist jedoch legal." -#. type: <example></example> -#: guide.sgml:228 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:253 #, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" msgstr "" " Bitte geben Sie die Komponenten an, die Sie erhalten möchten\n" " Die Komponenten sind normalerweise etwas wie: »main« »contrib« »non-free«\n" -" \n" -" Komponenten [main contrib non-free]:" +"\n" +" Komponenten [main contrib non-free]:\n" -#. type: <p></p> -#: guide.sgml:236 +#. type: Content of: <book><chapter><para> +#: guide.dbk:259 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 " @@ -9008,8 +9052,8 @@ msgstr "" "»Contrib« und »Non-free« Dinge enthalten, die verschiedene Einschränkungen " "in ihrer Benutzung und ihren Vertrieb haben." -#. type: <p></p> -#: guide.sgml:240 +#. type: Content of: <book><chapter><para> +#: guide.dbk:265 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -9018,24 +9062,24 @@ msgstr "" "wird mit Nachfragen fortfahren, bis Sie alles angegeben haben, was Sie " "möchten." -#. type: <p></p> -#: guide.sgml:247 +#. type: Content of: <book><chapter><para> +#: guide.dbk:269 msgid "" -"Before starting to use <prgn>dselect</prgn> it is necessary to update the " -"available list by selecting [U]pdate from the menu. This is a superset of " -"<tt>apt-get update</tt> that makes the fetched information available to " -"<prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get update</" -"tt> has been run before." +"Before starting to use <command>dselect</command> it is necessary to update " +"the available list by selecting [U]pdate from the menu. This is a superset " +"of <literal>apt-get update</literal> that makes the fetched information " +"available to <command>dselect</command>. [U]pdate must be performed even if " +"<literal>apt-get update</literal> has been run before." msgstr "" -"Bevor sie beginnen, <prgn>dselect</prgn> zu benutzen, ist es notwendig, die " -"Verfügbarkeitsliste zu aktualisieren, indem sie aus dem Menü [E]rneuern " -"auswählen. Dies ist eine Obermenge von <tt>apt-get update</tt>, das " -"<prgn>dselect</prgn> heruntergeladene Informationen zur Verfügung stellt. " -"[E]rneuern muss auch dann durchgeführt werden, wenn vorher <tt>apt-get " -"update</tt> ausgeführt wurde." +"Bevor sie beginnen, <command>dselect</command> zu benutzen, ist es " +"notwendig, die Verfügbarkeitsliste zu aktualisieren, indem sie aus dem Menü " +"[E]rneuern auswählen. Dies ist eine Obermenge von <literal>apt-get update</" +"literal>, das <command>dselect</command> heruntergeladene Informationen zur " +"Verfügung stellt. [E]rneuern muss auch dann durchgeführt werden, wenn vorher " +"<literal>apt-get update</literal> ausgeführt wurde." -#. type: <p></p> -#: guide.sgml:253 +#. type: Content of: <book><chapter><para> +#: guide.dbk:276 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 " @@ -9047,76 +9091,84 @@ msgstr "" "benutzen, haben die Befehle Kon[f]ig. und [L]öschen keine Bedeutung, der " "Befehl [I]nstall. führt beides gleichermaßen aus." -#. type: <p></p> -#: guide.sgml:258 +#. type: Content of: <book><chapter><para> +#: guide.dbk:282 msgid "" "By default APT will automatically remove the package (.deb) files once they " -"have been successfully installed. To change this behavior place <tt>Dselect::" -"clean \"prompt\";</tt> in /etc/apt/apt.conf." +"have been successfully installed. To change this behavior place " +"<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" "Standardmäßig wird APT automatisch die Paketdateien (.deb) entfernen, sobald " "sie erfolgreich installiert sind. Um dieses Verhalten zu ändern, platzieren " -"Sie <tt>Dselect::clean \"prompt\";</tt> in /etc/apt/apt.conf." +"Sie <literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." -#. type: <heading></heading> -#: guide.sgml:264 +#. type: Content of: <book><chapter><title> +#: guide.dbk:288 msgid "The Interface" msgstr "Die Schnittstelle" -#. type: <p></p> -#: guide.sgml:278 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:292 +msgid "" +"The <command>dselect</command> method actually is a set of wrapper scripts " +"to <command>apt-get</command>. The method actually provides more " +"functionality than is present in <command>apt-get</command> alone." +msgstr "" +"Die Methode <command>dselect</command> ist tatsächlich eine Zusammenstellung " +"von Wrapper-Skripten für <command>apt-get</command>. Die Methode stellt " +"tatsächlich mehr Funktionalitäten bereit, als in <command>apt-get</command> " +"allein vorhanden sind." + +#. type: Content of: <book><chapter><para> +#: guide.dbk:290 msgid "" -"Both that APT <prgn>dselect</prgn> method and <prgn>apt-get</prgn> share the " -"same interface. It is a simple system that generally tells you what it will " -"do and then goes and does it. <footnote><p>The <prgn>dselect</prgn> method " -"actually is a set of wrapper scripts to <prgn>apt-get</prgn>. The method " -"actually provides more functionality than is present in <prgn>apt-get</prgn> " -"alone.</p></footnote> After printing out a summary of what will happen APT " +"Both that APT <command>dselect</command> method and <command>apt-get</" +"command> share the same interface. It is a simple system that generally " +"tells you what it will do and then goes and does it. <placeholder type=" +"\"footnote\" id=\"0\"/> After printing out a summary of what will happen APT " "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 "" -"Sowohl die APT-Methode <prgn>dselect</prgn>, als auch <prgn>apt-get</prgn> " -"teilen sich die gleiche Schnittstelle. Es ist ein einfaches System, das " -"üblicherweise mitteilt, was es tun wird und es dann tut. <footnote><p>Die " -"Methode <prgn>dselect</prgn> ist tatsächlich eine Zusammenstellung von " -"Wrapper-Skripten für <prgn>apt-get</prgn>. Die Methode stellt tatsächlich " -"mehr Funktionalitäten bereit, als in <prgn>apt-get</prgn> allein vorhanden " -"sind.</p></footnote> Nach der Ausgabe einer Zusammenfassung was passieren " -"wird, gibt APT einige informative Statusmeldungen aus, so dass Sie " -"abschätzen können, wie weit es ist und wieviel noch zu tun ist." - -#. type: <heading></heading> -#: guide.sgml:280 +"Sowohl die APT-Methode <command>dselect</command>, als auch <command>apt-" +"get</command> teilen sich die gleiche Schnittstelle. Es ist ein einfaches " +"System, das üblicherweise mitteilt, was es tun wird und es dann tut. " +"<placeholder type=\"footnote\" id=\"0\"/> Nach der Ausgabe einer " +"Zusammenfassung was passieren wird, gibt APT einige informative " +"Statusmeldungen aus, so dass Sie abschätzen können, wie weit es ist und " +"wieviel noch zu tun ist." + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:301 msgid "Startup" msgstr "Anfang" -#. type: <p></p> -#: guide.sgml:284 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:303 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 <tt>apt-get check</" -"tt>." +"At any time these operations can be performed by running <literal>apt-get " +"check</literal>." msgstr "" "Vor allen Operationen, ausgenommen »update«, führt APT eine Reihe von " "Aktionen durch, um seinen internen Status vorzubereiten. Es macht außerdem " "einige Prüfungen des Systemstatus. Diese Operationen können jederzeit durch " -"Ausführung von <tt>apt-get check</tt> durchgeführt werden." +"Ausführung von <literal>apt-get check</literal> durchgeführt werden." -#. type: <example></example> -#: guide.sgml:289 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:309 #, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get check\n" "Paketlisten werden gelesen … Fertig\n" -"Abhängigkeitsbaum wird aufgebaut … Fertig" +"Abhängigkeitsbaum wird aufgebaut … Fertig\n" -#. type: <p></p> -#: guide.sgml:297 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:314 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. " @@ -9129,22 +9181,22 @@ msgstr "" "gefunden werden, werden sie ignoriert und beim Beenden von Apt-get wird eine " "Warnung ausgegeben." -#. type: <p></p> -#: guide.sgml:303 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:320 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " "package and considers if it is OK. Should this find a problem then a report " -"will be printed out and <prgn>apt-get</prgn> will refuse to run." +"will be printed out and <command>apt-get</command> will refuse to run." msgstr "" "Die letzte Operation führt eine detaillierte Analyse der Abhängigkeiten des " "Systems durch. Sie prüft jede Abhängigkeit jedes installierten oder " "entpackten Pakets und berücksichtigt, ob es in Ordnung ist. Sollte sie ein " -"Problem finden, dann wird eine Meldung ausgegeben und <prgn>apt-get</prgn> " -"wird die Ausführung verweigern." +"Problem finden, dann wird eine Meldung ausgegeben und <command>apt-get</" +"command> wird die Ausführung verweigern." -#. type: <example></example> -#: guide.sgml:320 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:326 #, no-wrap msgid "" "# apt-get check\n" @@ -9154,14 +9206,14 @@ msgid "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" msgstr "" "# apt-get check\n" "Paketlisten werden gelesen … Fertig Fertig\n" @@ -9171,17 +9223,17 @@ msgstr "" "Die folgenden Pakete haben nichterfüllte Abhängigkeiten:\n" " 9fonts: Hängt ab: xlib6g ist aber nicht installiert\n" " uucp: Hängt ab: mailx ist aber nicht installiert\n" -" blast: Hängt ab: xlib6g (>= 3.3-5) ist aber nicht installiert\n" +" blast: Hängt ab: xlib6g (>= 3.3-5) ist aber nicht installiert\n" " adduser: Hängt ab: perl-base ist aber nicht installiert\n" " aumix: Hängt ab: libgpmg1 ist aber nicht installiert\n" " debiandoc-sgml: Hängt ab: sgml-base ist aber nicht installiert\n" -" bash-builtins: Hängt ab: bash (>= 2.01) but 2.0-3 ist installiert\n" +" bash-builtins: Hängt ab: bash (>= 2.01) but 2.0-3 ist installiert\n" " cthugha: Hängt ab: svgalibg1 ist aber nicht installiert\n" -" Hängt ab: xlib6g (>= 3.3-5) ist aber nicht installiert\n" -" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)" +" Hängt ab: xlib6g (>= 3.3-5) ist aber nicht installiert\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" -#. type: <p></p> -#: guide.sgml:329 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:343 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 " @@ -9195,87 +9247,98 @@ msgstr "" "Problem anzeigt und die Abhängigkeiten, die nicht erfüllt sind. Eine kurze " "Erklärung, warum das Paket ein Abhängigkeitsproblem hat, ist inbegriffen." -#. type: <p></p> -#: guide.sgml:337 +#. type: Content of: <book><chapter><section><para><footnote><para> +#: guide.dbk:352 +msgid "" +"APT however considers all known dependencies and attempts to prevent broken " +"packages" +msgstr "" +"APT berücksichtigt jedoch alle bekannten Abhängigkeiten und versucht, " +"kaputte Pakete zu vermeiden" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:350 msgid "" "There are two ways a system can get into a broken state like this. The first " -"is caused by <prgn>dpkg</prgn> missing some subtle relationships between " -"packages when performing upgrades. <footnote><p>APT however considers all " -"known dependencies and attempts to prevent broken packages</p></footnote>. " -"The second is if a package installation fails during an operation. In this " -"situation a package may have been unpacked without its dependents being " -"installed." +"is caused by <command>dpkg</command> missing some subtle relationships " +"between packages when performing upgrades. <placeholder type=\"footnote\" id=" +"\"0\"/>. The second is if a package installation fails during an operation. " +"In this situation a package may have been unpacked without its dependents " +"being installed." msgstr "" "Es gibt zwei Möglichkeiten, wie ein System in einen kaputten Status wie " -"diesen kommen kann. Die erste wird dadurch verursacht, dass <prgn>dpkg</" -"prgn> einige feine Beziehungen zwischen Paketen übersieht, wenn Upgrades " -"durchgeführt werden. <footnote><p>APT berücksichtigt jedoch alle bekannten " -"Abhängigkeiten und versucht, kaputte Pakete zu vermeiden</p></footnote>. Die " -"zweite tritt auf, falls eine Paketinstallation während der Ausführung " -"fehlschlägt. In dieser Situation könnte ein Paket entpackt worden sein, ohne " -"dass die von ihm Abhängigen installiert sind." +"diesen kommen kann. Die erste wird dadurch verursacht, dass <command>dpkg</" +"command> einige feine Beziehungen zwischen Paketen übersieht, wenn Upgrades " +"durchgeführt werden. <placeholder type=\"footnote\" id=\"0\"/>. Die zweite " +"tritt auf, falls eine Paketinstallation während der Ausführung fehlschlägt. " +"In dieser Situation könnte ein Paket entpackt worden sein, ohne dass die von " +"ihm Abhängigen installiert sind." -#. type: <p></p> -#: guide.sgml:345 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:359 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 " -"supplying the <tt>-f</tt> option to <prgn>apt-get</prgn> will cause APT to " -"deduce a possible solution to the problem and then continue on. The APT " -"<prgn>dselect</prgn> method always supplies the <tt>-f</tt> option to allow " -"for easy continuation of failed maintainer scripts." +"supplying the <literal>-f</literal> option to <command>apt-get</command> " +"will cause APT to deduce a possible solution to the problem and then " +"continue on. The APT <command>dselect</command> method always supplies the " +"<literal>-f</literal> option to allow for easy continuation of failed " +"maintainer scripts." msgstr "" "Die zweite Situation ist weit weniger ernst als die erste, weil APT " "bestimmte Beschränkungen in der Reihenfolge setzt, in der Pakete installiert " -"werden. In beiden Fällen veranlasst die Option <tt>-f</tt> <prgn>apt-get</" -"prgn>, eine mögliche Lösung für das Problem zu folgern und dann " -"fortzufahren. Die APT-Methode <prgn>dselect</prgn> liefert immer die Option " -"<tt>-f</tt>, zum einfachen Fortfahren von gescheiterten Betreuerskripten." - -#. type: <p></p> -#: guide.sgml:351 -msgid "" -"However, if the <tt>-f</tt> option is used to correct a seriously broken " -"system caused by the first case then it is possible that it will either fail " -"immediately or the installation sequence will fail. In either case it is " -"necessary to manually use dpkg (possibly with forcing options) to correct " -"the situation enough to allow APT to proceed." -msgstr "" -"Falls jedoch die Option <tt>-f</tt> benutzt wird, um ein ernsthaft kaputtes " -"System zu korrigieren, das vom ersten Fall verursacht wurde, dann ist es " -"möglich, dass es entweder sofort fehlschlägt oder die Installationsabfolge " -"fehlschlagen wird. In beiden Fällen ist es nötig, Dpkg (möglicherweise mit " -"erzwingenden Optionen) manuell zu benutzen, um die Situation ausreichend zu " -"korrigieren, so dass es APT ermöglicht wird, fortzufahren." - -#. type: <heading></heading> -#: guide.sgml:356 +"werden. In beiden Fällen veranlasst die Option <literal>-f</literal> " +"<command>apt-get</command>, eine mögliche Lösung für das Problem zu folgern " +"und dann fortzufahren. Die APT-Methode <command>dselect</command> liefert " +"immer die Option <literal>-f</literal>, zum einfachen Fortfahren von " +"gescheiterten Betreuerskripten." + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:368 +msgid "" +"However, if the <literal>-f</literal> option is used to correct a seriously " +"broken system caused by the first case then it is possible that it will " +"either fail immediately or the installation sequence will fail. In either " +"case it is necessary to manually use dpkg (possibly with forcing options) to " +"correct the situation enough to allow APT to proceed." +msgstr "" +"Falls jedoch die Option <literal>-f</literal> benutzt wird, um ein ernsthaft " +"kaputtes System zu korrigieren, das vom ersten Fall verursacht wurde, dann " +"ist es möglich, dass es entweder sofort fehlschlägt oder die " +"Installationsabfolge fehlschlagen wird. In beiden Fällen ist es nötig, Dpkg " +"(möglicherweise mit erzwingenden Optionen) manuell zu benutzen, um die " +"Situation ausreichend zu korrigieren, so dass es APT ermöglicht wird, " +"fortzufahren." + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:376 msgid "The Status Report" msgstr "Der Statusbericht" -#. type: <p></p> -#: guide.sgml:363 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:378 msgid "" -"Before proceeding <prgn>apt-get</prgn> will present a report on what will " -"happen. Generally the report reflects the type of operation being performed " -"but there are several common elements. In all cases the lists reflect the " -"final state of things, taking into account the <tt>-f</tt> option and any " -"other relevant activities to the command being executed." +"Before proceeding <command>apt-get</command> will present a report on what " +"will happen. Generally the report reflects the type of operation being " +"performed but there are several common elements. In all cases the lists " +"reflect the final state of things, taking into account the <literal>-f</" +"literal> option and any other relevant activities to the command being " +"executed." msgstr "" -"Bevor es fortfährt, wird <prgn>apt-get</prgn> einen Bericht darüber " +"Bevor es fortfährt, wird <command>apt-get</command> einen Bericht darüber " "präsentieren, was geschehen wird. Im Allgemeinen spiegelt der Bericht den " "Typ der Operation, die ausgeführt wird, wider, aber es gibt auch mehrere " "geläufige Elemente. Auf jeden Fall spiegelt die Liste den Endstatus der " -"Dinge wider, bezieht die Option <tt>-f</tt> in Betracht und alle andere " -"relevante Aktivitäten zum Befehl, der ausgeführt wird." +"Dinge wider, bezieht die Option <literal>-f</literal> in Betracht und alle " +"andere relevante Aktivitäten zum Befehl, der ausgeführt wird." -#. type: <heading></heading> -#: guide.sgml:364 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:385 msgid "The Extra Package list" msgstr "Die zusätzliche Paketliste" -#. type: <example></example> -#: guide.sgml:372 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:387 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9283,87 +9346,87 @@ msgid "" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" msgstr "" "Die folgenden Pakete werden zusätzlich installiert:\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" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" -#. type: <p></p> -#: guide.sgml:379 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:395 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 <tt>install</tt> command. The listed packages are often the " -"result of an Auto Install." +"generated for an <literal>install</literal> command. The listed packages are " +"often the result of an Auto Install." msgstr "" "Die zusätzliche Paketliste zeigt alle Pakete, die installiert werden oder " "von denen ein Upgrade durchgeführt wird, zusätzlich zu den auf der " -"Befehlszeile angegebenen. Sie wird nur für einen <tt>install</tt>-Befehl " -"generiert. Die aufgelisteten Pakete sind häufig das Ergebnis einer " +"Befehlszeile angegebenen. Sie wird nur für einen <literal>install</literal>-" +"Befehl generiert. Die aufgelisteten Pakete sind häufig das Ergebnis einer " "automatischen Installation." -#. type: <heading></heading> -#: guide.sgml:382 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:402 msgid "The Packages to Remove" msgstr "Die zu entfernenden Pakete" -#. type: <example></example> -#: guide.sgml:389 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:404 #, no-wrap msgid "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" msgstr "" "Die folgenden Pakete werden ENTFERNT:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" -#. type: <p></p> -#: guide.sgml:399 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:411 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 " "given a careful inspection to ensure nothing important is to be taken off. " -"The <tt>-f</tt> option is especially good at generating packages to remove " -"so extreme care should be used in that case. The list may contain packages " -"that are going to be removed because they are only partially installed, " -"possibly due to an aborted installation." +"The <literal>-f</literal> option is especially good at generating packages " +"to remove so extreme care should be used in that case. The list may contain " +"packages that are going to be removed because they are only partially " +"installed, possibly due to an aborted installation." msgstr "" "Die Liste der zu entfernenden Pakete zeigt all die Pakete, die vom System " "entfernt werden. Sie kann für jede der Operationen angezeigt werden und " "sollte einer sorgfältige Überprüfung unterzogen werden, um sicherzustellen, " -"dass nichts Wichtiges weggenommen wird. Die Option <tt>-f</tt> ist " +"dass nichts Wichtiges weggenommen wird. Die Option <literal>-f</literal> ist " "insbesondere gut darin, Pakete zum Entfernen vorzumerken, so dass in diesem " "Fall mit extremer Vorsicht vorgegangen werden sollte. Die Liste könnte " "Pakete enthalten, die entfernt werden, weil sie nur teilweise installiert " "sind, möglicherweise aufgrund einer abgebrochenen Installation." -#. type: <heading></heading> -#: guide.sgml:402 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:421 msgid "The New Packages list" msgstr "Die Liste neuer Pakete" -#. type: <example></example> -#: guide.sgml:406 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:423 #, no-wrap msgid "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" msgstr "" "Die folgenden NEUEN Pakete werden zusätzlich installiert:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" -#. type: <p></p> -#: guide.sgml:411 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:427 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 " @@ -9373,58 +9436,58 @@ msgstr "" "aufgelisteten Pakete sind zurzeit nicht auf dem System installiert, werden " "es aber sein, wenn APT fertig ist." -#. type: <heading></heading> -#: guide.sgml:414 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:432 msgid "The Kept Back list" msgstr "Die Liste zurückgehaltener Pakete" -#. type: <example></example> -#: guide.sgml:419 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:434 #, 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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" msgstr "" "Die folgenden Pakete werden zurückgehalten:\n" " compface man-db tetex-base msql libpaper svgalib1\n" -" gs snmp arena lynx xpat2 groff xscreensaver" +" gs snmp arena lynx xpat2 groff xscreensaver\n" -#. type: <p></p> -#: guide.sgml:428 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:439 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 " "or conflict with already installed things. In this case the package will " "appear in the Kept Back list. The best way to convince packages listed there " -"to install is with <tt>apt-get install</tt> or by using <prgn>dselect</prgn> " -"to resolve their problems." +"to install is with <literal>apt-get install</literal> or by using " +"<command>dselect</command> to resolve their problems." msgstr "" "Jedesmal, wenn ein Upgrade des ganzen Systems durchgeführt wird, besteht die " "Möglichkeit, dass neue Versionen von Paketen nicht installiert werden " "können, weil sie neue Dinge benötigen oder einen Konflikt mit bereits " "installierten Dingen haben. In diesem Fall wird das Paket auf der Liste " "zurückgehaltener Pakete erscheinen. Der beste Weg dort aufgeführte Pakete " -"zur Installation zu bewegen, ist per <tt>apt-get install</tt> oder indem " -"<prgn>dselect</prgn> zum Lösen ihrer Probleme benutzt wird." +"zur Installation zu bewegen, ist per <literal>apt-get install</literal> oder " +"indem <command>dselect</command> zum Lösen ihrer Probleme benutzt wird." -#. type: <heading></heading> -#: guide.sgml:431 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:448 msgid "Held Packages warning" msgstr "Warnung wegen zurückgehaltener Pakete" -#. type: <example></example> -#: guide.sgml:435 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:450 #, no-wrap msgid "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" msgstr "" "Die folgenden zurückgehaltenen Pakete werden geändert:\n" -" cvs" +" cvs\n" -#. type: <p></p> -#: guide.sgml:441 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:454 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. " @@ -9435,33 +9498,33 @@ msgstr "" "zurückgehaltene Paket geändert wird. Dies sollte nur während »Dist-upgrade« " "oder »Install« vorkommen." -#. type: <heading></heading> -#: guide.sgml:444 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:460 msgid "Final summary" msgstr "Abschließende Zusammenfassung" -#. type: <p></p> -#: guide.sgml:447 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:462 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "Abschließend wird APT eine Zusammenfassung aller Änderungen ausgeben, die " "auftreten werden." -#. type: <example></example> -#: guide.sgml:452 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:465 #, 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" "206 Pakete aktualisiert, 8 zusätzlich installiert, 23 werden entfernt und 51 nicht aktualisiert.\n" "12 Pakete nicht vollständig installiert oder entfernt.\n" -"Muss 65,7MB/66,7MB an Archiven herunterladen. Nach dem Entpacken werden 26,5MB zusätzlich belegt sein." +"Muss 65,7MB/66,7MB an Archiven herunterladen. Nach dem Entpacken werden 26,5MB zusätzlich belegt sein.\n" -#. type: <p></p> -#: guide.sgml:470 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:470 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 " @@ -9491,8 +9554,8 @@ msgstr "" "Speicher nachdem alles erledigt ist. Wenn eine große Anzahl Pakete entfernt " "wird, dann kann der Wert den Betrag des freiwerdenden Speichers anzeigen." -#. type: <p></p> -#: guide.sgml:473 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:484 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9501,13 +9564,13 @@ msgstr "" "werden, um Pakete anzuzeigen, von denen ein Upgrade durchgeführt werden " "soll. Dies ist den vorherigen Beispielen ähnlich." -#. type: <heading></heading> -#: guide.sgml:477 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:491 msgid "The Status Display" msgstr "Der Anzeigestatus" -#. type: <p></p> -#: guide.sgml:481 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:493 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9515,8 +9578,8 @@ msgstr "" "Während des Herunterladens von Archiven und Paketdateien gibt APT eine Reihe " "von Statusmeldungen aus." -#. type: <example></example> -#: guide.sgml:490 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:497 #, no-wrap msgid "" "# apt-get update\n" @@ -9525,7 +9588,7 @@ msgid "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" msgstr "" "# apt-get update\n" "Hole:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" @@ -9533,69 +9596,71 @@ msgstr "" "Treffer http://llug.sep.bnl.gov/debian/ testing/main Packages\n" "Hole:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages\n" "Hole:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" -"11% [5 testing/non-free 'Warte auf Datei' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free 'Warte auf Datei' 0/32.1k 0%] 2203b/s 1m52s\n" -#. type: <p></p> -#: guide.sgml:500 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:506 msgid "" -"The lines starting with <em>Get</em> are printed out when APT begins to " -"fetch a file while the last line indicates the progress of the download. The " -"first percent value on the progress line indicates the total percent done of " -"all files. Unfortunately since the size of the Package files is unknown " -"<tt>apt-get update</tt> estimates the percent done which causes some " -"inaccuracies." +"The lines starting with <emphasis>Get</emphasis> are printed out when APT " +"begins to fetch a file while the last line indicates the progress of the " +"download. The first percent value on the progress line indicates the total " +"percent done of all files. Unfortunately since the size of the Package files " +"is unknown <literal>apt-get update</literal> estimates the percent done " +"which causes some inaccuracies." msgstr "" -"Die Zeilen, die mit <em>Hole</em> beginnen, werden ausgegeben, wenn APT " -"anfängt, eine Datei herunterzuladen, während die letzte Zeile den " +"Die Zeilen, die mit <emphasis>Hole</emphasis> beginnen, werden ausgegeben, " +"wenn APT anfängt, eine Datei herunterzuladen, während die letzte Zeile den " "Fortschritt des Herunterladens anzeigt. Die erste Prozentzahl der " "Fortschrittszeile zeigt die gesamt erledigte Prozentzahl aller Dateien an. " -"Unglücklicherweise schätzt <tt>apt-get update</tt> die erledigte " +"Unglücklicherweise schätzt <literal>apt-get update</literal> die erledigte " "Prozentzahl, da die Größe der Pakete unbekannt ist, was einige " "Ungenauigkeiten bewirkt." -#. type: <p></p> -#: guide.sgml:509 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:514 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " "information about what is happening. Sometimes this section will simply read " -"<em>Forking</em> which means the OS is loading the download module. The " -"first word after the [ is the fetch number as shown on the history lines. " -"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." +"<emphasis>Forking</emphasis> which means the OS is loading the download " +"module. The first word after the [ is the fetch number as shown on the " +"history lines. 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 "" "Der nächste Abschnitt der Statuszeile wird für jeden Download-Thread " "wiederholt und zeigt die durchgeführte Operation, sowie einige nützliche " "Informationen darüber an was geschieht. Manchmal wird dieser Abschnitt " -"einfach nur <em>Forking</em> darstellen, was bedeutet, dass das " +"einfach nur <emphasis>Forking</emphasis> darstellen, was bedeutet, dass das " "Betriebssystem das Download-Modul am Laden ist. Das erste Wort nach dem »[« " "ist die Ladenummer, wie sie auf den Verlaufszeilen angezeigt wird. Das " "nächste Wort ist Name in Kurzform des Ojektes, das heruntergeladen wird. Für " "Archive wird es den Namen des Paketes enthalten, das heruntergeladen wird." -#. type: <p></p> -#: guide.sgml:524 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:524 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " -"<em>Connecting</em> to <em>Waiting for file</em> to <em>Downloading</em> or " -"<em>Resuming</em>. The final value is the number of bytes downloaded from " -"the remote site. Once the download begins this is represented as " -"<tt>102/10.2k</tt> indicating that 102 bytes have been fetched and 10.2 " -"kilobytes is expected. The total size is always shown in 4 figure notation " -"to preserve space. After the size display is a percent meter for the file " -"itself. The second last element is the instantaneous average speed. This " -"values is updated every 5 seconds and reflects the rate of data transfer for " -"that period. Finally is shown the estimated transfer time. This is updated " -"regularly and reflects the time to complete everything at the shown transfer " -"rate." +"<emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to " +"<emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final " +"value is the number of bytes downloaded from the remote site. Once the " +"download begins this is represented as <literal>102/10.2k</literal> " +"indicating that 102 bytes have been fetched and 10.2 kilobytes is expected. " +"The total size is always shown in 4 figure notation to preserve space. After " +"the size display is a percent meter for the file itself. The second last " +"element is the instantaneous average speed. This values is updated every 5 " +"seconds and reflects the rate of data transfer for that period. Finally is " +"shown the estimated transfer time. This is updated regularly and reflects " +"the time to complete everything at the shown transfer rate." msgstr "" "Innerhalb von einzelnen Anführungszeichen folgt eine informative " "Zeichenkette, die den Fortschritt der Übertragungsphase des Downloads " -"anzeigt. Normalerweise schreitet sie fort von <em>Verbinde</em> zu <em>Warte " -"auf Datei</em> zu <em>Lade herunter</em> oder <em>Nehme wieder auf</em>. Der " -"letzte Wert ist die Anzahl der von der fernen Site heruntergeladenen Bytes. " -"Sobald der Download beginnt, zeigt sich dies wie <tt>102/10.2k</tt> was " +"anzeigt. Normalerweise schreitet sie fort von <emphasis>Verbinde</emphasis> " +"zu <emphasis>Warte auf Datei</emphasis> zu <emphasis>Lade herunter</" +"emphasis> oder <emphasis>Nehme wieder auf</emphasis>. Der letzte Wert ist " +"die Anzahl der von der fernen Site heruntergeladenen Bytes. Sobald der " +"Download beginnt, zeigt sich dies wie <literal>102/10.2k</literal> was " "anzeigt, dass 102 Bytes heruntergeladen und 10,2 Kilobytes erwartet werden. " "Die Gesamtgröße wird immer in vierstelliger Schreibweise dargestellt, um " "Platz zu sparen. Nach der Größenanzeige ist eine Prozentangabe für die Datei " @@ -9606,57 +9671,52 @@ msgstr "" "wird regelmäßig aktualisiert und spiegelt die Zeit zum Vervollständigen bei " "der angezeigten Datenübertragungsgeschwindigkeit wider." -#. type: <p></p> -#: guide.sgml:530 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:539 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 " "is started. Since the status display is constantly updated it is unsuitable " -"for logging to a file, use the <tt>-q</tt> option to remove the status " -"display." +"for logging to a file, use the <literal>-q</literal> option to remove the " +"status display." msgstr "" "Die Statusanzeige aktualisiert sich alle halbe Sekunde, um eine gleichmäßige " "Rückmeldung über den Download-Fortschritt bereitzustellen, während die " "»Hole«-Zeilen bei jeder gestarteten neuen Datei zurückscrollen. Da die " "Statusanzeige ständig aktualisiert wird, ist sie für die Protokollierung in " -"eine Datei ungeeignet. Benutzen Sie die Option <tt>-q</tt>, um die " +"eine Datei ungeeignet. Benutzen Sie die Option <literal>-q</literal>, um die " "Statusanzeige zu entfernen." -#. type: <heading></heading> -#: guide.sgml:535 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:547 msgid "Dpkg" msgstr "Dpkg" -#. type: <p></p> -#: guide.sgml:542 -msgid "" -"APT uses <prgn>dpkg</prgn> for installing the archives and will switch over " -"to the <prgn>dpkg</prgn> interface once downloading is completed. " -"<prgn>dpkg</prgn> will also ask a number of questions as it processes the " -"packages and the packages themselves may also ask several questions. Before " -"each question there is usually a description of what it is asking and the " -"questions are too varied to discuss completely here." -msgstr "" -"APT benutzt <prgn>dpkg</prgn>, um die Archive zu installieren und wird zu " -"der <prgn>dpkg</prgn>-Schnittstelle herüberschalten, sobald der Download " -"vollständig ist. <prgn>dpkg</prgn> wird außerdem eine Reihe von Fragen " -"stellen, während es die Pakete abarbeitet und die Pakete können auch mehrere " -"Fragen stellen . Vor jeder Frage ist üblicherweise eine Beschreibung des " -"Gefragten und die Fragen sind zu vielfältig, um sie vollständig hier zu " -"besprechen." - -#. type: <title> -#: offline.sgml:4 +#. type: Content of:

+#: guide.dbk:549 +msgid "" +"APT uses dpkg for installing the archives and will switch " +"over to the dpkg interface once downloading is completed. " +"dpkg will also ask a number of questions as it processes " +"the packages and the packages themselves may also ask several questions. " +"Before each question there is usually a description of what it is asking and " +"the questions are too varied to discuss completely here." +msgstr "" +"APT benutzt dpkg, um die Archive zu installieren und wird " +"zu der dpkg-Schnittstelle herüberschalten, sobald der " +"Download vollständig ist. dpkg wird außerdem eine Reihe " +"von Fragen stellen, während es die Pakete abarbeitet und die Pakete können " +"auch mehrere Fragen stellen . Vor jeder Frage ist üblicherweise eine " +"Beschreibung des Gefragten und die Fragen sind zu vielfältig, um sie " +"vollständig hier zu besprechen." + +#. type: Content of: +#: offline.dbk:10 msgid "Using APT Offline" msgstr "APT offline verwenden" -#. type: <version></version> -#: offline.sgml:7 -msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "$Id: offline.sgml,v 1.8 12.02.2003 15:06:41 doogie Exp $" - -#. type: <abstract></abstract> -#: offline.sgml:12 +#. type: Content of: <book><bookinfo><abstract><para> +#: offline.dbk:24 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9665,23 +9725,25 @@ msgstr "" "speziell einem »Turnschuhnetzwerk«, an die Durchführung von Upgrades " "herangeht." -#. type: <copyrightsummary></copyrightsummary> -#: offline.sgml:16 -msgid "Copyright © Jason Gunthorpe, 1999." -msgstr "Copyright © Jason Gunthorpe, 1999." +#. type: Content of: <book><bookinfo> +#: offline.dbk:29 +msgid "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" -#. type: <heading></heading> -#: offline.sgml:32 +#. type: Content of: <book><chapter><title> +#: offline.dbk:47 msgid "Introduction" msgstr "Einleitung" -#. type: <heading></heading> -#: offline.sgml:34 offline.sgml:65 offline.sgml:180 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:49 offline.dbk:79 offline.dbk:191 msgid "Overview" msgstr "Übersicht" -#. type: <p></p> -#: offline.sgml:40 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:51 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9694,8 +9756,8 @@ msgstr "" "wie einem Modem, hängt und eine andere Maschine eine sehr schnelle " "Verbindung hat, sie jedoch physisch fern sind." -#. type: <p></p> -#: offline.sgml:51 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:57 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9703,9 +9765,9 @@ msgid "" "to use APT to generate a list of packages that are required and then fetch " "them onto the disc using another machine with good connectivity. It is even " "possible to use another Debian machine with APT or to use a completely " -"different OS and a download tool like wget. Let <em>remote host</em> mean " -"the machine downloading the packages, and <em>target host</em> the one with " -"bad or no connection." +"different OS and a download tool like wget. Let <emphasis>remote host</" +"emphasis> mean the machine downloading the packages, and <emphasis>target " +"host</emphasis> the one with bad or no connection." msgstr "" "Die Lösung dazu besteht darin, große Wechselmedien, wie eine Zip-Platte oder " "eine SuperDisk zu benutzen. Diese Platten sind nicht groß genug, um ein " @@ -9716,11 +9778,11 @@ msgstr "" "herunterzuladen. Es ist sogar möglich, eine andere Debian-Maschine mit APT " "oder ein komplett unterschiedliches Betriebssystem und ein Download-Werkzeug " "wie Wget zu benutzen. Nennen wir die Maschine, die die Pakete herunterlädt " -"<em>ferner Rechner</em> und die mit der schlechten oder fehlenden Verbindung " -"<em>Zielrechner</em>." +"<emphasis>ferner Rechner</emphasis> und die mit der schlechten oder " +"fehlenden Verbindung <emphasis>Zielrechner</emphasis>." -#. type: <p></p> -#: offline.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:68 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9733,13 +9795,13 @@ msgstr "" "Platte mit einem Dateisystem formatiert sein sollte, das mit langen " "Dateinamen umgehen kann, so wie ext2, fat32 oder vfat." -#. type: <heading></heading> -#: offline.sgml:63 +#. type: Content of: <book><chapter><title> +#: offline.dbk:77 msgid "Using APT on both machines" msgstr "APT auf beiden Maschinen benutzen" -#. type: <p><example> -#: offline.sgml:71 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:81 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9752,8 +9814,8 @@ msgstr "" "Paketdateien herunterzuladen und zu entscheiden, welche Pakete " "heruntergeladen werden. Die Plattenverzeichnisstruktur sollte so aussehen:" -#. type: <example></example> -#: offline.sgml:80 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:87 #, no-wrap msgid "" " /disc/\n" @@ -9763,7 +9825,7 @@ msgid "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" msgstr "" " /Platte/\n" " Archive/\n" @@ -9772,42 +9834,43 @@ msgstr "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" -#. type: <heading></heading> -#: offline.sgml:88 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:98 msgid "The configuration file" msgstr "Die Konfigurationsdatei" -#. type: <p></p> -#: offline.sgml:96 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:100 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " "contain the proper sites that you wish to use from the remote machine, and " -"the status file should be a copy of <em>/var/lib/dpkg/status</em> from the " -"<em>target host</em>. Please note, if you are using a local archive you must " -"use copy URIs, the syntax is identical to file URIs." +"the status file should be a copy of <emphasis>/var/lib/dpkg/status</" +"emphasis> from the <emphasis>target host</emphasis>. Please note, if you are " +"using a local archive you must use copy URIs, the syntax is identical to " +"file URIs." msgstr "" "Die Konfigurationsdatei sollte APT mitteilen, dass es seine Dateien auf der " "Platte speichert und obendrein die Konfigurationsdateien auf der Platte " "benutzt. Die »sources.list« sollte genau die Sites enthalten, die Sie auf " "der fernen Maschine benutzen möchten und die Statusdatei sollte eine Kopie " -"von <em>/var/lib/dpkg/status</em> vom <em>Zielrechner</em> sein. Bitte " -"beachten Sie, falls Sie lokale Archive benutzen, dass Sie »copy«-URIs " -"benutzen müssen. Die Syntax entspricht der von »file«-URIs." +"von <emphasis>/var/lib/dpkg/status</emphasis> vom <emphasis>Zielrechner</" +"emphasis> sein. Bitte beachten Sie, falls Sie lokale Archive benutzen, dass " +"Sie »copy«-URIs benutzen müssen. Die Syntax entspricht der von »file«-URIs." -#. type: <p><example> -#: offline.sgml:100 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:108 msgid "" -"<em>apt.conf</em> must contain the necessary information to make APT use the " -"disc:" +"<emphasis>apt.conf</emphasis> must contain the necessary information to make " +"APT use the disc:" msgstr "" -"<em>apt.conf</em> muss die nötigen Informationen enthalten, damit APT die " -"Platte benutzt:" +"<emphasis>apt.conf</emphasis> muss die nötigen Informationen enthalten, " +"damit APT die Platte benutzt:" -#. type: <example></example> -#: offline.sgml:124 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:112 #, no-wrap msgid "" " APT\n" @@ -9815,10 +9878,10 @@ msgid "" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -9829,10 +9892,10 @@ msgid "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" msgstr "" " APT\n" " {\n" @@ -9840,10 +9903,10 @@ msgstr "" " Architektur haben. Es teilt dem fernen APT mit, welche Architektur die\n" " Zielmaschine hat */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Die Platte für Statusinformationen benutzen und die Statusdatei\n" @@ -9854,68 +9917,72 @@ msgstr "" " // Programmzwischenspeicher werden lokal gespeichert\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Ort der Quellenliste.\n" " Etc \"/disc/\";\n" -" };" +" };\n" -#. type: </example></p> -#: offline.sgml:129 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:137 msgid "" "More details can be seen by examining the apt.conf man page and the sample " -"configuration file in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis>." msgstr "" "Weitere Details finden sich in der apt.conf-Handbuchseite und der " -"Musterkonfigurationsdatei in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"Musterkonfigurationsdatei in <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis>." -#. type: <p><example> -#: offline.sgml:136 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:142 msgid "" -"On the target machine the first thing to do is mount the disc and copy <em>/" -"var/lib/dpkg/status</em> to it. You will also need to create the directories " -"outlined in the Overview, <em>archives/partial/</em> and <em>lists/partial/</" -"em>. Then take the disc to the remote machine and configure the sources." -"list. On the remote machine execute the following:" +"On the target machine the first thing to do is mount the disc and copy " +"<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " +"create the directories outlined in the Overview, <emphasis>archives/partial/" +"</emphasis> and <emphasis>lists/partial/</emphasis>. Then take the disc to " +"the remote machine and configure the sources.list. On the remote machine " +"execute the following:" msgstr "" "Das Erste, was auf der Zielmaschine getan werden muss, ist das Einhängen der " -"Platte und das Kopieren von <em>/var/lib/dpkg/status</em> dorthin. Sie " -"werden außerdem die in der Übersicht umrissenen Verzeichnisse <em>archives/" -"partial/</em> und <em>lists/partial/</em> erstellen müssen. Dann bringen Sie " -"die Platte zu der fernen Maschine und konfigurieren Sie die »sources.list«. " -"Führen Sie das folgende aus:" - -#. type: <example></example> -#: offline.sgml:142 +"Platte und das Kopieren von <emphasis>/var/lib/dpkg/status</emphasis> " +"dorthin. Sie werden außerdem die in der Übersicht umrissenen Verzeichnisse " +"<emphasis>archives/partial/</emphasis> und <emphasis>lists/partial/</" +"emphasis> erstellen müssen. Dann bringen Sie die Platte zu der fernen " +"Maschine und konfigurieren Sie die »sources.list«. Führen Sie das folgende " +"aus:" + +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:151 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT fetches the package files ]\n" " # apt-get dist-upgrade\n" -" [ APT fetches all the packages needed to upgrade the target machine ]" +" [ APT fetches all the packages needed to upgrade the target machine ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT lädt die Paketdateien herunter ]\n" " # apt-get dist-upgrade\n" " [ APT lädt all die Pakete herunter, die die Zielmaschine benötigt, um ein\n" -" Upgrade durchzuführen ]" +" Upgrade durchzuführen ]\n" -#. type: </example></p> -#: offline.sgml:149 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:158 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " -"such as <em>dselect</em>. However this presents a problem in communicating " -"your selections back to the local computer." +"such as <emphasis>dselect</emphasis>. However this presents a problem in " +"communicating your selections back to the local computer." msgstr "" "Der Befehl »dist-upgrade« kann durch alle anderen Standard-APT-Befehle " "ersetzt werden, insbesondere »dselect-upgrade«. Sie können sogar eine APT-" -"Oberfläche, wie <em>dselect</em>, benutzen. Jedoch stellt dies ein Problem " -"dar, Ihre Auswahl zurück an den lokalen Rechner zu kommunizieren." +"Oberfläche, wie <emphasis>dselect</emphasis>, benutzen. Jedoch stellt dies " +"ein Problem dar, Ihre Auswahl zurück an den lokalen Rechner zu kommunizieren." -#. type: <p><example> -#: offline.sgml:153 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:164 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9924,24 +9991,24 @@ msgstr "" "Upgrade der Zielmaschine druchzuführen. Bringen Sie die Platte zurück und " "starten Sie:" -#. type: <example></example> -#: offline.sgml:159 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:168 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generates a local copy of the cache files ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Or any other APT command ]" +" [ Or any other APT command ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generiert eine lokale Kopie der Zwischenspeicherdateien ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Oder irgendeinen anderen APT-Befehl ]" +" [ Oder irgendeinen anderen APT-Befehl ]\n" -#. type: <p></p> -#: offline.sgml:165 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:175 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -9949,8 +10016,8 @@ msgstr "" "Es ist für ordentliches Funktionieren notwendig, die Statusdatei erneut als " "die lokale anzugeben. Dies ist sehr wichtig!" -#. type: <p></p> -#: offline.sgml:172 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:179 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -9966,24 +10033,25 @@ msgstr "" "die Statusdatei NICHT, falls Dpkg oder APT in der Zwischenzeit benutzt " "wurden!" -#. type: <heading></heading> -#: offline.sgml:178 +#. type: Content of: <book><chapter><title> +#: offline.dbk:189 msgid "Using APT and wget" msgstr "APT und Wget benutzen" -#. type: <p></p> -#: offline.sgml:185 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:193 msgid "" -"<em>wget</em> is a popular and portable download tool that can run on nearly " -"any machine. Unlike the method above this requires that the Debian machine " -"already has a list of available packages." +"<emphasis>wget</emphasis> is a popular and portable download tool that can " +"run on nearly any machine. Unlike the method above this requires that the " +"Debian machine already has a list of available packages." msgstr "" -"<em>wget</em> ist eine populäres und portierbares Download-Werkzeug, das auf " -"nahezu jeder Maschine laufen kann. Anders als die Methode oben wird hierfür " -"benötigt, dass die Debian-Maschine bereits eine Liste verfügbarer Pakete hat." +"<emphasis>wget</emphasis> ist eine populäres und portierbares Download-" +"Werkzeug, das auf nahezu jeder Maschine laufen kann. Anders als die Methode " +"oben wird hierfür benötigt, dass die Debian-Maschine bereits eine Liste " +"verfügbarer Pakete hat." -#. type: <p></p> -#: offline.sgml:190 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:198 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -9996,13 +10064,13 @@ msgstr "" "Vorbereiten eines Wget-Skripts getan, um die eigentlichen Pakete " "herunterzuladen." -#. type: <heading></heading> -#: offline.sgml:196 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:204 msgid "Operation" msgstr "Betrieb" -#. type: <p><example> -#: offline.sgml:200 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:206 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -10011,23 +10079,23 @@ msgstr "" "Konfigurationsdateien benötigt. Es werden lediglich die Standard-APT-Befehle " "benutzt, um die Dateiliste zu erstellen." -#. type: <example></example> -#: offline.sgml:205 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:210 #, no-wrap msgid "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" " # apt-get dist-upgrade \n" " [ Antworten Sie »nein« auf gestellte Fragen, wenn Sie mit den Aktionen\n" " zufrieden sind ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /Platte/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /Platte/wget-script\n" -#. type: </example></p> -#: offline.sgml:210 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:216 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -10035,8 +10103,8 @@ msgstr "" "Jeder andere Befehl als »dist-upgrade« könnte hier benutzt werden, " "einschließlich »upgrade«." -#. type: <p></p> -#: offline.sgml:216 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:220 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -10048,25 +10116,25 @@ msgstr "" "sollte mit dem aktuellen Verzeichnis als Platteneinhängepunkt ausgeführt " "werden, so dass die Ausgabe auf die Platte gespeichert wird." -#. type: <p><example> -#: offline.sgml:219 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:226 msgid "The remote machine would do something like" msgstr "Die ferne Maschine würde etwas wie das folgende tun" -#. type: <example></example> -#: offline.sgml:223 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:229 #, no-wrap msgid "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" msgstr "" " # cd /Platte\n" " # sh -x ./wget-script\n" -" [ warten … Fertig ]" +" [ warten … Fertig ]\n" -#. type: </example><example> -#: offline.sgml:228 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:234 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10074,17 +10142,35 @@ msgstr "" "Sobald die Archive heruntergeladen und die Platte zur Debian-Maschine " "zurückgekehrt ist, kann die Installation fortfahren durch Benutzung von " -#. type: <example></example> -#: offline.sgml:230 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:238 #, no-wrap -msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr " # apt-get -o dir::cache::archives=\"/Platte/\" dist-upgrade" +msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" +msgstr " # apt-get -o dir::cache::archives=\"/Platte/\" dist-upgrade\n" -#. type: </example></p> -#: offline.sgml:234 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." msgstr "Es wird die bereits auf die Platte heruntergeladenen Archive benutzen." +#~ msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#~ msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" + +#~ msgid "<pubdate></pubdate>" +#~ msgstr "<pubdate></pubdate>" + +#~ msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" +#~ msgstr "$Id: offline.sgml,v 1.8 12.02.2003 15:06:41 doogie Exp $" + +#~ msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#~ msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" + +#~ msgid "Copyright © Jason Gunthorpe, 1998." +#~ msgstr "Copyright © Jason Gunthorpe, 1998." + +#~ msgid "Copyright © Jason Gunthorpe, 1999." +#~ msgstr "Copyright © Jason Gunthorpe, 1999." + #~ msgid "apt" #~ msgstr "apt" @@ -10110,11 +10196,6 @@ msgstr "Es wird die bereits auf die Platte heruntergeladenen Archive benutzen." #~ msgstr "BESCHREIBUNG" #, fuzzy -#~| msgid "" -#~| "APT is a management system for software packages. For normal day to day " -#~| "package management there are several frontends available, such as " -#~| "B<aptitude>(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." #~ msgid "" #~ "For normal day to day package management there are several frontends " #~ "available, such as B<aptitude>(8) for the command line or " @@ -10130,9 +10211,6 @@ msgstr "Es wird die bereits auf die Platte heruntergeladenen Archive benutzen." #~ msgstr "SIEHE AUCH" #, fuzzy -#~| 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)" #~ msgid "" #~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." #~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" diff --git a/doc/po/es.po b/doc/po/es.po index 2cf3a070a..3779a4466 100644 --- a/doc/po/es.po +++ b/doc/po/es.po @@ -38,8 +38,8 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-05-05 16:26+0200\n" -"PO-Revision-Date: 2014-04-01 14:00+0200\n" +"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"PO-Revision-Date: 2014-07-04 01:31+0200\n" "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n" "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n" "Language: es\n" @@ -911,7 +911,7 @@ msgstr "Las líneas <literal>Archive:</literal> o <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 #: apt-ftparchive.1.xml:609 msgid "See Also" @@ -1889,7 +1889,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 +#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 msgid "Files" msgstr "Ficheros" @@ -3098,10 +3098,10 @@ msgstr "" #: apt-secure.8.xml:195 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" msgstr "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:199 @@ -4649,15 +4649,27 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:607 +#, fuzzy +#| msgid "" +#| "<literal>Dir::Cache</literal> contains locations pertaining to local " +#| "cache information, such as the two package caches <literal>srcpkgcache</" +#| "literal> and <literal>pkgcache</literal> as well as the location to place " +#| "downloaded archives, <literal>Dir::Cache::archives</literal>. Generation " +#| "of caches can be turned off by setting their names to the empty string. " +#| "This will slow down startup but save disk space. It is probably " +#| "preferable to turn off the pkgcache rather than the srcpkgcache. Like " +#| "<literal>Dir::State</literal> the default directory is contained in " +#| "<literal>Dir::Cache</literal>" msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " "and <literal>pkgcache</literal> as well as the location to place downloaded " "archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " -"be turned off by setting their names to the empty string. This will slow " +"be turned off by setting <literal>pkgcache</literal> or " +"<literal>srcpkgcache</literal> to <literal>\"\"</literal>. This will slow " "down startup but save disk space. It is probably preferable to turn off the " -"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " -"default directory is contained in <literal>Dir::Cache</literal>" +"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 las ubicaciones que afectan a la " "información de la caché local, como los dos cachés de paquetes " @@ -4670,7 +4682,7 @@ msgstr "" "directorio predeterminado está en <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:617 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4686,7 +4698,7 @@ msgstr "" "<envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:622 +#: apt.conf.5.xml:623 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4697,7 +4709,7 @@ msgstr "" "Al finalizar este proceso carga el fichero de configuración principal." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:627 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4714,7 +4726,7 @@ msgstr "" "literal> especifican la ubicación de sus respectivos programas." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:634 +#: apt.conf.5.xml:635 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4735,7 +4747,7 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:648 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4753,12 +4765,12 @@ msgstr "" "de expresiones regulares." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:657 msgid "APT in DSelect" msgstr "APT con DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:659 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4769,7 +4781,7 @@ msgstr "" "encuentran en la sección <literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:664 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4791,7 +4803,7 @@ msgstr "" "realiza esta acción antes de descargar paquetes nuevos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:677 +#: apt.conf.5.xml:678 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4800,7 +4812,7 @@ msgstr "" "la línea de ordenes al ejecutar la fase de instalación." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:683 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4809,7 +4821,7 @@ msgstr "" "la línea de ordenes al ejecutar la fase de actualización." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:688 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4819,12 +4831,12 @@ msgstr "" "preguntará en caso de error." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:693 +#: apt.conf.5.xml:694 msgid "How APT calls &dpkg;" msgstr "Invocación de APT a dpkg" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:695 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4833,7 +4845,7 @@ msgstr "" "se encuentran en la sección <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:700 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4844,7 +4856,7 @@ msgstr "" "introduce a &dpkg; como un sólo argumento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:705 +#: apt.conf.5.xml:706 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4857,7 +4869,7 @@ msgstr "" "sh</filename>; en caso de fallo, APT cancela la acción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:712 +#: apt.conf.5.xml:713 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4881,7 +4893,7 @@ msgstr "" "la entrada estándar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:719 +#: apt.conf.5.xml:720 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4903,7 +4915,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:724 +#: apt.conf.5.xml:725 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4914,7 +4926,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:731 +#: apt.conf.5.xml:732 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4925,7 +4937,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:742 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4934,7 +4946,7 @@ msgstr "" "predeterminado es <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:746 +#: apt.conf.5.xml:747 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4944,12 +4956,12 @@ msgstr "" "paquetes y a producir todos los binarios." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:751 +#: apt.conf.5.xml:752 msgid "dpkg trigger usage (and related options)" msgstr "Uso del disparador de dpkg (y de las opciones relacionadas)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:753 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4976,7 +4988,7 @@ msgstr "" "tiempo (o más) durante la configuración de todos los paquetes." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:767 +#: apt.conf.5.xml:768 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4990,7 +5002,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:762 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -5014,7 +5026,7 @@ msgstr "" "type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:774 +#: apt.conf.5.xml:775 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -5037,7 +5049,7 @@ msgstr "" "eliminación." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:782 +#: apt.conf.5.xml:783 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -5067,7 +5079,7 @@ msgstr "" "imposibilidad de arrancar el sistema. " #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:798 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5085,7 +5097,7 @@ msgstr "" "desactivar esta opción en todas las ejecuciones menos la última." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:804 +#: apt.conf.5.xml:805 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5101,7 +5113,7 @@ msgstr "" "los disparadores necesarios para configurar este paquete." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:818 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5119,7 +5131,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:810 +#: apt.conf.5.xml:811 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5144,12 +5156,12 @@ msgstr "" "<placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:831 msgid "Periodic and Archives options" msgstr "Las opciones «Periodic» y «Archives»" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:832 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5163,12 +5175,12 @@ msgstr "" "documentación de estas opciones." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:839 +#: apt.conf.5.xml:840 msgid "Debug options" msgstr "Opciones de depuración" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:841 +#: apt.conf.5.xml:842 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5185,7 +5197,7 @@ msgstr "" "para un usuario normal, aunque unas cuantas sí son:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:852 +#: apt.conf.5.xml:853 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5196,7 +5208,7 @@ msgstr "" "purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:861 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5207,7 +5219,7 @@ msgstr "" "<literal>apt-get -s install</literal>) como un usuario normal." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:870 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5219,7 +5231,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:878 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5228,14 +5240,14 @@ msgstr "" "statfs en los identificadores de los discos ópticos." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:888 msgid "A full list of debugging options to apt follows." msgstr "" "A continuación, se muestra la lista completa de las opciones de depuración " "de apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:896 +#: apt.conf.5.xml:897 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5243,26 +5255,26 @@ msgstr "" "<literal>cdrom://</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:907 +#: apt.conf.5.xml:908 msgid "Print information related to downloading packages using FTP." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:919 msgid "Print information related to downloading packages using HTTP." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:930 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante " "HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:940 +#: apt.conf.5.xml:941 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5271,7 +5283,7 @@ msgstr "" "criptográficas mediante <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:951 +#: apt.conf.5.xml:952 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5280,14 +5292,14 @@ msgstr "" "paquetes almacenadas en CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:961 +#: apt.conf.5.xml:962 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Describe el proceso de resolución de dependencias de compilación en &apt-" "get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:971 +#: apt.conf.5.xml:972 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5296,7 +5308,7 @@ msgstr "" "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:981 +#: apt.conf.5.xml:982 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5307,7 +5319,7 @@ msgstr "" "identificador de un CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:992 +#: apt.conf.5.xml:993 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." @@ -5317,14 +5329,14 @@ msgstr "" "a la vez." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1004 +#: apt.conf.5.xml:1005 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Registra los elementos que se añaden o se borran de la cola de descarga " "global." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1014 +#: apt.conf.5.xml:1015 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5334,7 +5346,7 @@ msgstr "" "ficheros descargados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1024 +#: apt.conf.5.xml:1025 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5343,7 +5355,7 @@ msgstr "" "lista de índices de paquetes, y los errores relacionados con éstos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1036 +#: apt.conf.5.xml:1037 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5353,7 +5365,7 @@ msgstr "" "índices completos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1047 +#: apt.conf.5.xml:1048 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5361,7 +5373,7 @@ msgstr "" "descargas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1058 +#: apt.conf.5.xml:1059 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5370,7 +5382,7 @@ msgstr "" "de los paquetes y con la eliminación de los paquetes sin usar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1068 +#: apt.conf.5.xml:1069 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5386,7 +5398,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1082 +#: apt.conf.5.xml:1083 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5417,7 +5429,7 @@ msgstr "" "la sección en la que aparece el paquete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1103 +#: apt.conf.5.xml:1104 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5426,7 +5438,7 @@ msgstr "" "invocó, con los argumentos separados por un espacio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1114 +#: apt.conf.5.xml:1115 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5435,7 +5447,7 @@ msgstr "" "estado y cualquier error encontrado durante el análisis." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1125 +#: apt.conf.5.xml:1126 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5444,7 +5456,7 @@ msgstr "" "literal> debería entregar los paquetes a &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1137 +#: apt.conf.5.xml:1138 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5452,12 +5464,12 @@ msgstr "" "&dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1148 +#: apt.conf.5.xml:1149 msgid "Output the priority of each package list on startup." msgstr "Muestra la prioridad de cada lista de paquetes al iniciarse." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1158 +#: apt.conf.5.xml:1159 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5466,7 +5478,7 @@ msgstr "" "lo que ocurre cuando se encuentra un problema de dependencias complejo)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1169 +#: apt.conf.5.xml:1170 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5477,7 +5489,7 @@ msgstr "" "misma que la descrita en <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1181 +#: apt.conf.5.xml:1182 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5486,7 +5498,7 @@ msgstr "" "vendors.list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1191 +#: apt.conf.5.xml:1192 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5494,13 +5506,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Ejemplos" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1216 +#: apt.conf.5.xml:1217 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5510,7 +5522,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1228 +#: apt.conf.5.xml:1229 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -8563,36 +8575,53 @@ msgstr "" "<command>apt-ftparchive</command> devuelve cero si no hay ningún error, y el " "valor 100 en caso de error." -#. type: <title> -#: guide.sgml:4 +#. type: Attribute 'lang' of: +#: guide.dbk:8 offline.dbk:8 +msgid "en" +msgstr "es" + +#. type: Content of: +#: guide.dbk:10 msgid "APT User's Guide" msgstr "Guía de usuario de APT" -#. type: <author></author> -#: guide.sgml:6 offline.sgml:6 -msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" -msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#. type: Content of: <book><bookinfo><authorgroup><author><personname> +#: guide.dbk:16 offline.dbk:16 +msgid "Jason Gunthorpe" +msgstr "Jason Gunthorpe" -#. type: <version></version> -#: guide.sgml:7 -msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#. type: Content of: <book><bookinfo><authorgroup><author><email> +#: guide.dbk:16 offline.dbk:16 +msgid "jgg@debian.org" +msgstr "jgg@debian.org" -#. type: <abstract></abstract> -#: guide.sgml:11 +#. type: Content of: <book><bookinfo><releaseinfo> +#: guide.dbk:20 offline.dbk:20 +msgid "Version &apt-product-version;" +msgstr "" + +#. type: Content of: <book><bookinfo><abstract><para> +#: guide.dbk:24 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" "Este documento ofrece una introducción sobre cómo usar el gestor de paquetes " "APT." -#. type: <copyrightsummary></copyrightsummary> -#: guide.sgml:15 -msgid "Copyright © Jason Gunthorpe, 1998." -msgstr "Copyright © Jason Gunthorpe, 1998." +#. type: Content of: <book><bookinfo> +#: guide.dbk:28 +msgid "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" + +#. type: Content of: <book><bookinfo><legalnotice><title> +#: guide.dbk:31 offline.dbk:32 +msgid "License Notice" +msgstr "" -#. type: <p></p> -#: guide.sgml:21 offline.sgml:22 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:33 offline.dbk:34 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 " @@ -8604,8 +8633,8 @@ msgstr "" "Public License publicada por la Free Software Foundation, ya sea en su " "versión 2 o (a su elección) cualquier versión posterior." -#. type: <p></p> -#: guide.sgml:24 offline.sgml:25 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:42 offline.dbk:40 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8613,31 +8642,31 @@ msgstr "" "Para más detalles acerca de sistemas Debian y la licencia completa, consulte " "el fichero «/usr/share/common-licenses/GPL»." -#. type: <heading></heading> -#: guide.sgml:32 +#. type: Content of: <book><chapter><title> +#: guide.dbk:49 msgid "General" msgstr "General" -#. type: <p></p> -#: guide.sgml:38 +#. type: Content of: <book><chapter><para> +#: guide.dbk:51 msgid "" -"The APT package currently contains two sections, the APT <prgn>dselect</" -"prgn> method and the <prgn>apt-get</prgn> command line user interface. Both " -"provide a way to install and remove packages as well as download new " -"packages from the Internet." +"The APT package currently contains two sections, the APT <command>dselect</" +"command> method and the <command>apt-get</command> command line user " +"interface. Both provide a way to install and remove packages as well as " +"download new packages from the Internet." msgstr "" -"El paquete APT contiene a día de hoy dos secciones, el método <prgn>dselect</" -"prgn> y la interfaz de usuario para la línea de órdenes <prgn>apt-get</" -"prgn>. Ambos ofrecen una manera de instalar y desinstalar paquetes, así como " -"descargar paquetes nuevos de Internet." +"El paquete APT contiene a día de hoy dos secciones, el método " +"<command>dselect</command> y la interfaz de usuario para la línea de órdenes " +"<command>apt-get</command>. Ambos ofrecen una manera de instalar y " +"desinstalar paquetes, así como descargar paquetes nuevos de Internet." -#. type: <heading></heading> -#: guide.sgml:39 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:57 msgid "Anatomy of the Package System" msgstr "Anatomía del sistema de paquetes" -#. type: <p></p> -#: guide.sgml:44 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:59 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 " @@ -8647,8 +8676,8 @@ msgstr "" "asociada a cada paquete para asegurar una integración sencilla y limpia en " "el sistema. La característica más importante es el sistema de dependencias." -#. type: <p></p> -#: guide.sgml:52 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:64 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8663,8 +8692,8 @@ msgstr "" "permite elegir el agente de transporte del correo electrónico, el servidor " "de X y demás." -#. type: <p></p> -#: guide.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:71 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 " @@ -8676,8 +8705,8 @@ msgstr "" "simple es que un paquete requiere que otro también esté instalado para poder " "funcionar correctamente." -#. type: <p></p> -#: guide.sgml:63 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:76 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 " @@ -8689,8 +8718,8 @@ msgstr "" "una dependencia simple con GPG. Como también es una extensión de emacs tiene " "una dependencia simple con emacs, ya que sin él mailcrypt es inservible." -#. type: <p></p> -#: guide.sgml:73 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:82 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 " @@ -8711,8 +8740,8 @@ msgstr "" "sistema, y por ello todos los agentes de transporte de correo tienen una " "dependencia de conflicto con todos los demás." -#. type: <p></p> -#: guide.sgml:83 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:92 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 " @@ -8732,8 +8761,8 @@ msgstr "" "dependerán de «mail-transport-agent». Esto puede añadir confusión al " "intentar arreglar paquetes manualmente." -#. type: <p></p> -#: guide.sgml:88 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:102 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 " @@ -8745,94 +8774,102 @@ msgstr "" "asistir en la resolución de problemas de dependencias mediante un número de " "algoritmos automáticos que ayudan en la selección de paquetes a instalar." -#. type: <heading></heading> -#: guide.sgml:96 +#. type: Content of: <book><chapter><title> +#: guide.dbk:111 msgid "apt-get" msgstr "apt-get" -#. type: <p></p> -#: guide.sgml:102 -msgid "" -"<prgn>apt-get</prgn> provides a simple way to install packages from the " -"command line. Unlike <prgn>dpkg</prgn>, <prgn>apt-get</prgn> does not " -"understand .deb files, it works with the package's proper name and can only " -"install .deb archives from a <em>Source</em>." -msgstr "" -"<prgn>apt-get</prgn> ofrece una forma sencilla de instalar paquetes desde la " -"línea de órdenes. A diferencia de <prgn>dpkg</prgn>, <prgn>apt-get</prgn> no " -"intenta comprender los ficheros «.deb», sino que funciona con el nombre real " -"del paquete y sólo puede instalar ficheros «.deb» desde una <em>fuente</em>." - -#. type: <p></p> -#: guide.sgml:109 -msgid "" -"The first <footnote><p>If you are using an http proxy server you must set " -"the http_proxy environment variable first, see sources.list(5)</p></" -"footnote> thing that should be done before using <prgn>apt-get</prgn> is to " -"fetch the package lists from the <em>Sources</em> so that it knows what " -"packages are available. This is done with <tt>apt-get update</tt>. For " -"instance," -msgstr "" -"La primera <footnote><p>Si está usando un servidor proxy primero debe " -"definir la variable de entorno http_proxy, consulte sources.list (5).</p></" -"footnote> cosa que debería hacer antes de usar <prgn>apt-get</prgn> es " -"obtener las listas de paquetes desde las <em>fuentes</em> para así conocer " -"los paquetes disponibles. Puede hacer esto mediante <tt>apt-get update</tt>. " +#. type: Content of: <book><chapter><para> +#: guide.dbk:113 +msgid "" +"<command>apt-get</command> provides a simple way to install packages from " +"the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " +"does not understand .deb files, it works with the package's proper name and " +"can only install .deb archives from a <emphasis>Source</emphasis>." +msgstr "" +"<command>apt-get</command> ofrece una forma sencilla de instalar paquetes " +"desde la línea de órdenes. A diferencia de <command>dpkg</command>, " +"<command>apt-get</command> no intenta comprender los ficheros «.deb», sino " +"que funciona con el nombre real del paquete y sólo puede instalar ficheros «." +"deb» desde una <emphasis>fuente</emphasis>." + +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:119 +msgid "" +"If you are using an http proxy server you must set the http_proxy " +"environment variable first, see sources.list(5)" +msgstr "" +"Si está usando un servidor proxy primero debe definir la variable de entorno " +"http_proxy, consulte sources.list (5)." + +#. type: Content of: <book><chapter><para> +#: guide.dbk:119 +msgid "" +"The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " +"done before using <command>apt-get</command> is to fetch the package lists " +"from the <emphasis>Sources</emphasis> so that it knows what packages are " +"available. This is done with <literal>apt-get update</literal>. For instance," +msgstr "" +"La primera <placeholder type=\"footnote\" id=\"0\"/> cosa que debería hacer " +"antes de usar <command>apt-get</command> es obtener las listas de paquetes " +"desde las <emphasis>fuentes</emphasis> para así conocer los paquetes " +"disponibles. Puede hacer esto mediante <literal>apt-get update</literal>. " "Por ejemplo," -#. type: <example></example> -#: guide.sgml:116 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:127 #, no-wrap msgid "" "# 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" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get update\n" "Des http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" "Des http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" "Leyendo lista de paquetes... Hecho\n" -"Creando árbol de dependencias... Hecho" +"Creando árbol de dependencias... Hecho\n" -#. type: <p><taglist> -#: guide.sgml:120 +#. type: Content of: <book><chapter><para> +#: guide.dbk:134 msgid "Once updated there are several commands that can be used:" msgstr "Puede usar varias órdenes después de actualizar:" -#. type: <tag></tag> -#: guide.sgml:121 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:138 msgid "upgrade" msgstr "upgrade" -#. type: <p></p> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:141 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 " "upgrade a package that might cause some other package to break. This can be " "used daily to relatively safely upgrade the system. Upgrade will list all of " "the packages that it could not upgrade, this usually means that they depend " -"on new packages or conflict with some other package. <prgn>dselect</prgn> or " -"<tt>apt-get install</tt> can be used to force these packages to install." +"on new packages or conflict with some other package. <command>dselect</" +"command> or <literal>apt-get install</literal> can be used to force these " +"packages to install." msgstr "" "«upgrade» intentará actualizar con cuidado todo el sistema. «upgrade» nunca " "intentará instalar un paquete nuevo o eliminar un paquete existente, y en " "ningún caso actualizará un paquete que pueda causar un problema de " "dependencias rotas a otro paquete. «upgrade» mostrará todos los paquetes que " "no pudo actualizar, lo cual generalmente significa que dependen de paquetes " -"nuevos o que entran en conflicto con otro paquete. Puede usar <prgn>dselect</" -"prgn> o <tt>apt-get install</tt> para forzar la instalación de tales " -"paquetes." +"nuevos o que entran en conflicto con otro paquete. Puede usar " +"<command>dselect</command> o <literal>apt-get install</literal> para forzar " +"la instalación de tales paquetes." -#. type: <tag></tag> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:153 msgid "install" msgstr "install" -#. type: <p></p> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:156 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 " @@ -8850,33 +8887,34 @@ msgstr "" "dependencias con los paquetes listados, y mostrará un resumen al pedir una " "confirmación en caso de modificar cualquiera de los argumentos introducidos." -#. type: <tag></tag> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:167 msgid "dist-upgrade" msgstr "dist-upgrade" -#. type: <p></p> -#: guide.sgml:149 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:170 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " "set of packages to install, upgrade and remove to get as much of the system " "to the newest release. In some situations it may be desired to use dist-" "upgrade rather than spend the time manually resolving dependencies in " -"<prgn>dselect</prgn>. Once dist-upgrade has completed then <prgn>dselect</" -"prgn> can be used to install any packages that may have been left out." +"<command>dselect</command>. Once dist-upgrade has completed then " +"<command>dselect</command> can be used to install any packages that may have " +"been left out." msgstr "" "«dist-upgrade» es una actualizador completo diseñado para simplificar la " "actualización entre publicaciones de Debian. Utiliza un sofisticado " "algoritmo para diseñar el mejor conjunto de paquetes a instalar, actualizar " "y eliminar para así obtener cuanto sea posible de la última publicación. " "Puede que en algunas situaciones desee usar «dist-upgrade» en lugar de pasar " -"tiempo resolviendo dependencias con <prgn>dselect</prgn>. Puede usar " -"<prgn>dselect</prgn> para instalar cualquier paquete que se haya quedado " -"atrás." +"tiempo resolviendo dependencias con <command>dselect</command>. Puede usar " +"<command>dselect</command> para instalar cualquier paquete que se haya " +"quedado atrás." -#. type: <p></p> -#: guide.sgml:152 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:180 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8884,167 +8922,163 @@ msgstr "" "Es importante revisar lo que «dist-upgrade» planea hacer, ya que sus " "decisiones a veces pueden resultar sorprendentes." -#. type: <p></p> -#: guide.sgml:163 -#, fuzzy -#| msgid "" -#| "<prgn>apt-get</prgn> has several command line options that are detailed " -#| "in its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -#| "option is <tt>-d</tt> which does not install the fetched files. If the " -#| "system has to download a large number of package it would be undesired to " -#| "start installing them in case something goes wrong. When <tt>-d</tt> is " -#| "used the downloaded archives can be installed by simply running the " -#| "command that caused them to be downloaded again without <tt>-d</tt>." -msgid "" -"<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -"option is <tt>-d</tt> which does not install the fetched files. If the " -"system has to download a large number of package it would be undesired to " -"start installing them in case something goes wrong. When <tt>-d</tt> is used " -"the downloaded archives can be installed by simply running the command that " -"caused them to be downloaded again without <tt>-d</tt>." -msgstr "" -"<prgn>apt-get</prgn> ofrece varias opciones de línea de órdenes detalladas " -"en su página de manual, <manref section=\"8\" name=\"apt-get\">. La opción " -"más útil es <tt>-d</tt>, que no instala los ficheros obtenidos. Puede que no " +#. type: Content of: <book><chapter><para> +#: guide.dbk:187 +msgid "" +"<command>apt-get</command> has several command line options that are " +"detailed in its man page, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. The most useful " +"option is <literal>-d</literal> which does not install the fetched files. If " +"the system has to download a large number of package it would be undesired " +"to start installing them in case something goes wrong. When <literal>-d</" +"literal> is used the downloaded archives can be installed by simply running " +"the command that caused them to be downloaded again without <literal>-d</" +"literal>." +msgstr "" +"<command>apt-get</command> ofrece varias opciones de línea de órdenes " +"detalladas en su página de manual, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. La opción más útil es " +"<literal>-d</literal>, que no instala los ficheros obtenidos. Puede que no " "desee instalar los paquetes de inicio si el sistema se tiene que descargar " -"un gran número de éstos, en caso de que algo vaya mal. Cuando usa <tt>-d</" -"tt> puede instalar los ficheros descargados simplemente ejecutando la orden " -"que provocó su descarga, sin <tt>-d</tt>." +"un gran número de éstos, en caso de que algo vaya mal. Cuando usa <literal>-" +"d</literal> puede instalar los ficheros descargados simplemente ejecutando " +"la orden que provocó su descarga, sin <literal>-d</literal>." -#. type: <heading></heading> -#: guide.sgml:168 +#. type: Content of: <book><chapter><title> +#: guide.dbk:199 msgid "DSelect" msgstr "DSelect" -#. type: <p></p> -#: guide.sgml:173 +#. type: Content of: <book><chapter><para> +#: guide.dbk:201 msgid "" -"The APT <prgn>dselect</prgn> method provides the complete APT system with " -"the <prgn>dselect</prgn> package selection GUI. <prgn>dselect</prgn> is used " -"to select the packages to be installed or removed and APT actually installs " -"them." +"The APT <command>dselect</command> method provides the complete APT system " +"with the <command>dselect</command> package selection GUI. <command>dselect</" +"command> is used to select the packages to be installed or removed and APT " +"actually installs them." msgstr "" -"El método <prgn>dselect</prgn> de APT ofrece el sistema completo de APT con " -"la interfaz gráfica de selección de paquetes <prgn>dselect</prgn>. " -"<prgn>dselect</prgn> se usa para seleccionar los paquetes a instalar o " -"desinstalar que en realidad instalará APT." +"El método <command>dselect</command> de APT ofrece el sistema completo de " +"APT con la interfaz gráfica de selección de paquetes <command>dselect</" +"command>. <command>dselect</command> se usa para seleccionar los paquetes a " +"instalar o desinstalar que en realidad instalará APT." -#. type: <p></p> -#: guide.sgml:184 +#. type: Content of: <book><chapter><para> +#: guide.dbk:207 msgid "" -"To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " -"and then choose the APT method. You will be prompted for a set of " -"<em>Sources</em> which are places to fetch archives from. These can be " -"remote Internet sites, local Debian mirrors or CD-ROMs. Each source can " -"provide a fragment of the total Debian archive, APT will automatically " +"To enable the APT method you need to select [A]ccess in <command>dselect</" +"command> and then choose the APT method. You will be prompted for a set of " +"<emphasis>Sources</emphasis> which are places to fetch archives from. These " +"can be remote Internet sites, local Debian mirrors or CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet." msgstr "" "Para habilitar el método APT tiene que seleccionar [M]étodo en " -"<prgn>dselect</prgn>, y después seleccionar el método APT. Se le pedirá un " -"conjunto de <em>fuentes</em>, ubicaciones de donde obtener los ficheros. " -"Pueden ser sitios remotos de Internet, replicas locales de Debian o discos " -"ópticos. Cada fuente puede proporcionar un fragmento del total del archivo " -"Debian, los cuales APT combinará automáticamente para formar un conjunto " -"completo de paquetes. Si tiene un disco óptico es una buena idea definirlo " -"primero en el fichero de configuración y después especificar una replica " -"para así tener acceso a los últimos arreglos de fallos. APT usará " -"automáticamente los paquetes del disco óptico en lugar de descargarlos de " -"Internet." - -#. type: <example></example> -#: guide.sgml:198 +"<command>dselect</command>, y después seleccionar el método APT. Se le " +"pedirá un conjunto de <emphasis>fuentes</emphasis>, ubicaciones de donde " +"obtener los ficheros. Pueden ser sitios remotos de Internet, replicas " +"locales de Debian o discos ópticos. Cada fuente puede proporcionar un " +"fragmento del total del archivo Debian, los cuales APT combinará " +"automáticamente para formar un conjunto completo de paquetes. Si tiene un " +"disco óptico es una buena idea definirlo primero en el fichero de " +"configuración y después especificar una replica para así tener acceso a los " +"últimos arreglos de fallos. APT usará automáticamente los paquetes del disco " +"óptico en lugar de descargarlos de Internet." + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:218 #, no-wrap msgid "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" msgstr "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" -#. type: <p></p> -#: guide.sgml:205 +#. type: Content of: <book><chapter><para> +#: guide.dbk:232 msgid "" -"The <em>Sources</em> setup starts by asking for the base of the Debian " -"archive, defaulting to a HTTP mirror. Next it asks for the distribution to " -"get." +"The <emphasis>Sources</emphasis> 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 configuración de las <em>fuentes</em> comienza preguntando la base del " -"archivo de Debian, cuyo valor predeterminado es una réplica HTTP. A " +"La configuración de las <emphasis>fuentes</emphasis> comienza preguntando la " +"base del archivo de Debian, cuyo valor predeterminado es una réplica HTTP. A " "continuación, preguntará la distribución a obtener." -#. type: <example></example> -#: guide.sgml:212 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:237 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" +"\n" +" Distribution [stable]:\n" msgstr "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" - -#. type: <p></p> -#: guide.sgml:222 -msgid "" -"The distribution refers to the Debian version in the archive, <em>stable</" -"em> refers to the latest released version and <em>unstable</em> refers to " -"the developmental version. <em>non-US</em> is only available on some mirrors " -"and refers to packages that contain encryption technology or other things " -"that cannot be exported from the United States. Importing these packages " -"into the US is legal however." -msgstr "" -"La distribución se refiere a la versión de Debian en el archivo, <em>stable</" -"em> (estable) se refiere a la última versión publicada, y <em>unstable</em> " -"(inestable) se refiere a la versión en desarrollo. <em>non-US</em> sólo está " -"disponible en algunas réplicas, aquellos paquetes que contienen tecnología " -"cifrada y otras cosas que no se pueden exportar desde los Estados Unidos. " -"Aun así, importar estos paquetes a E.E.U.U es ilegal." - -#. type: <example></example> -#: guide.sgml:228 +"\n" +" Distribution [stable]:\n" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:244 +msgid "" +"The distribution refers to the Debian version in the archive, " +"<emphasis>stable</emphasis> refers to the latest released version and " +"<emphasis>unstable</emphasis> refers to the developmental version. " +"<emphasis>non-US</emphasis> is only available on some mirrors and refers to " +"packages that contain encryption technology or other things that cannot be " +"exported from the United States. Importing these packages into the US is " +"legal however." +msgstr "" +"La distribución se refiere a la versión de Debian en el archivo, " +"<emphasis>stable</emphasis> (estable) se refiere a la última versión " +"publicada, y <emphasis>unstable</emphasis> (inestable) se refiere a la " +"versión en desarrollo. <emphasis>non-US</emphasis> sólo está disponible en " +"algunas réplicas, aquellos paquetes que contienen tecnología cifrada y otras " +"cosas que no se pueden exportar desde los Estados Unidos. Aun así, importar " +"estos paquetes a E.E.U.U es ilegal." + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:253 #, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" msgstr "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" -#. type: <p></p> -#: guide.sgml:236 +#. type: Content of: <book><chapter><para> +#: guide.dbk:259 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 " @@ -9057,8 +9091,8 @@ msgstr "" "«non-free» contienen paquetes con restricciones en cuanto a su uso y " "distribución." -#. type: <p></p> -#: guide.sgml:240 +#. type: Content of: <book><chapter><para> +#: guide.dbk:265 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -9066,23 +9100,24 @@ msgstr "" "Puede añadir cualquier número de fuentes, el script de configuración le " "preguntará por fuentes hasta que el usuario defina todo lo que quiera." -#. type: <p></p> -#: guide.sgml:247 +#. type: Content of: <book><chapter><para> +#: guide.dbk:269 msgid "" -"Before starting to use <prgn>dselect</prgn> it is necessary to update the " -"available list by selecting [U]pdate from the menu. This is a superset of " -"<tt>apt-get update</tt> that makes the fetched information available to " -"<prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get update</" -"tt> has been run before." +"Before starting to use <command>dselect</command> it is necessary to update " +"the available list by selecting [U]pdate from the menu. This is a superset " +"of <literal>apt-get update</literal> that makes the fetched information " +"available to <command>dselect</command>. [U]pdate must be performed even if " +"<literal>apt-get update</literal> has been run before." msgstr "" "Es necesario actualizar la lista disponible mediante el elemento de menú " -"[A]ctualizar antes de iniciar <prgn>dselect</prgn>. Éste es un superconjunto " -"de <tt>apt-get update</tt> que permite a <prgn>dselect</prgn> disponer de la " -"información obtenida. Debe ejecutar [A]ctualizar aunque haya ejecutado " -"<tt>apt-get update</tt> con anterioridad." +"[A]ctualizar antes de iniciar <command>dselect</command>. Éste es un " +"superconjunto de <literal>apt-get update</literal> que permite a " +"<command>dselect</command> disponer de la información obtenida. Debe " +"ejecutar [A]ctualizar aunque haya ejecutado <literal>apt-get update</" +"literal> con anterioridad." -#. type: <p></p> -#: guide.sgml:253 +#. type: Content of: <book><chapter><para> +#: guide.dbk:276 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 " @@ -9094,77 +9129,83 @@ msgstr "" "[C]onfig y [R]emove carecen de significado ya que la orden [I]nstall ejecuta " "ambos a la vez." -#. type: <p></p> -#: guide.sgml:258 +#. type: Content of: <book><chapter><para> +#: guide.dbk:282 msgid "" "By default APT will automatically remove the package (.deb) files once they " -"have been successfully installed. To change this behavior place <tt>Dselect::" -"clean \"prompt\";</tt> in /etc/apt/apt.conf." +"have been successfully installed. To change this behavior place " +"<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" "Por omisión, APT eliminará automáticamente los ficheros de paquete («.deb») " "una vez que se hayan instalado con éxito. Para modificar este " -"comportamiento, inserte <tt>Dselect::clean \"prompt\";</tt> en «/etc/apt/apt." -"conf»." +"comportamiento, inserte <literal>Dselect::clean \"prompt\";</literal> en «/" +"etc/apt/apt.conf»." -#. type: <heading></heading> -#: guide.sgml:264 +#. type: Content of: <book><chapter><title> +#: guide.dbk:288 msgid "The Interface" msgstr "La interfaz" -#. type: <p></p> -#: guide.sgml:278 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:292 +msgid "" +"The <command>dselect</command> method actually is a set of wrapper scripts " +"to <command>apt-get</command>. The method actually provides more " +"functionality than is present in <command>apt-get</command> alone." +msgstr "" +"El método <command>dselect</command> es en realidad un conjunto de scripts " +"en torno a <command>apt-get</command>. En realidad, el método ofrece más " +"funcionalidad que la presente en <command>apt-get</command> por si mismo." + +#. type: Content of: <book><chapter><para> +#: guide.dbk:290 msgid "" -"Both that APT <prgn>dselect</prgn> method and <prgn>apt-get</prgn> share the " -"same interface. It is a simple system that generally tells you what it will " -"do and then goes and does it. <footnote><p>The <prgn>dselect</prgn> method " -"actually is a set of wrapper scripts to <prgn>apt-get</prgn>. The method " -"actually provides more functionality than is present in <prgn>apt-get</prgn> " -"alone.</p></footnote> After printing out a summary of what will happen APT " +"Both that APT <command>dselect</command> method and <command>apt-get</" +"command> share the same interface. It is a simple system that generally " +"tells you what it will do and then goes and does it. <placeholder type=" +"\"footnote\" id=\"0\"/> After printing out a summary of what will happen APT " "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 "" -"El método <prgn>dselect</prgn> de APT y <prgn>apt-get</prgn> comparten la " -"misma interfaz. Es un sencillo programa que le informa de lo que va a hacer, " -"para después llevarlo a cabo. <footnote><p> El método <prgn>dselect</prgn> " -"es en realidad un conjunto de scripts en torno a <prgn>apt-get</prgn>. En " -"realidad, el método ofrece más funcionalidad que la presente en <prgn>apt-" -"get</prgn> por si mismo. </p></footnote> Después de mostrar el resumen de lo " -"que va a pasar APT mostrará mensajes de estado informativos para ofrecer una " -"estimación de cuánto queda por hacer." - -#. type: <heading></heading> -#: guide.sgml:280 +"El método <command>dselect</command> de APT y <command>apt-get</command> " +"comparten la misma interfaz. Es un sencillo programa que le informa de lo " +"que va a hacer, para después llevarlo a cabo. <placeholder type=\"footnote\" " +"id=\"0\"/> Después de mostrar el resumen de lo que va a pasar APT mostrará " +"mensajes de estado informativos para ofrecer una estimación de cuánto queda " +"por hacer." + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:301 msgid "Startup" msgstr "Arranque" -#. type: <p></p> -#: guide.sgml:284 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:303 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 <tt>apt-get check</" -"tt>." +"At any time these operations can be performed by running <literal>apt-get " +"check</literal>." msgstr "" "APT realiza un número de acciones para preparar su estado interno antes de " "cualquier operación, a excepción de «update». También realiza algunas " "revisiones del estado del sistema. Puede llevar a cabo estas acciones en " -"cualquier momento ejecutando <tt>apt-get check</tt>." +"cualquier momento ejecutando <literal>apt-get check</literal>." -#. type: <example></example> -#: guide.sgml:289 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:309 #, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get check\n" "Leyendo lista de paquetes... Hecho\n" -"Creando árbol de dependencias \n" -"Leyendo la información de estado... Hecho" +"Creando árbol de dependencias... Hecho\n" -#. type: <p></p> -#: guide.sgml:297 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:314 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. " @@ -9176,21 +9217,21 @@ msgstr "" "más rápida la segunda vez que la ejecute. De no encontrar algún fichero de " "paquete, éstos se ignorarán y verá una advertencia al finalizar apt-get." -#. type: <p></p> -#: guide.sgml:303 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:320 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " "package and considers if it is OK. Should this find a problem then a report " -"will be printed out and <prgn>apt-get</prgn> will refuse to run." +"will be printed out and <command>apt-get</command> will refuse to run." msgstr "" "La última acción realiza un detallado análisis de las dependencias del " "sistema. Revisa cada dependencia de cada paquete instalado o sin " "desempaquetar analiza su validación. En caso de error aparecerá un informe, " -"y <prgn>apt-get</prgn> se negará a ejecutarse." +"y <command>apt-get</command> se negará a ejecutarse." -#. type: <example></example> -#: guide.sgml:320 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:326 #, no-wrap msgid "" "# apt-get check\n" @@ -9200,34 +9241,33 @@ msgid "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" msgstr "" "# apt-get check\n" "Leyendo lista de paquetes... Hecho\n" -"Creando árbol de dependencias \n" -"Leyendo la información de estado... Hecho\n" -"Tal vez quiera ejecutar `apt-get -f install' para corregirlo.\n" +"Creando árbol de dependencias... Hecho\n" +"Tal vez quiera ejecutar 'apt-get -f install' para corregirlo.\n" "Los siguientes paquetes tienen dependencias incumplidas:\n" " 9fonts: Depende: xlib6g pero no está instalado\n" " uucp: Depende: mailx pero no está instalado\n" -" blast: Depende: xlib6g (>= 3.3-5) pero no está instalado\n" +" blast: Depende: xlib6g (>= 3.3-5) pero no está instalado\n" " adduser: Depende: perl-base pero no está instalado\n" " aumix: Depende: libgpmg1 pero no está instalado\n" " debiandoc-sgml: Depende: sgml-base pero no está instalado\n" -" bash-builtins: Depende: bash (>= 2.01) pero 2.0-3 está instalado\n" +" bash-builtins: Depende: bash (>= 2.01) pero 2.0-3 está instalado\n" " cthugha: Depende: svgalibg1 pero no está instalado\n" -" Depende: xlib6g (>= 3.3-5) pero no está instalado\n" -" libreadlineg2: Entra en conflicto:libreadline2 (<< 2.1-2.1)" +" Depende: xlib6g (>= 3.3-5) pero no está instalado\n" +" libreadlineg2: Entra en conflicto:libreadline2 (<< 2.1-2.1)\n" -#. type: <p></p> -#: guide.sgml:329 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:343 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 " @@ -9241,86 +9281,95 @@ msgstr "" "dependencias no satisfechas. También incluye una explicación de porqué el " "paquete tiene un problema de dependencias." -#. type: <p></p> -#: guide.sgml:337 +#. type: Content of: <book><chapter><section><para><footnote><para> +#: guide.dbk:352 +msgid "" +"APT however considers all known dependencies and attempts to prevent broken " +"packages" +msgstr "" +"APT, de todas formas, considera todas las dependencias conocidas e intenta " +"prevenir paquetes rotos" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:350 msgid "" "There are two ways a system can get into a broken state like this. The first " -"is caused by <prgn>dpkg</prgn> missing some subtle relationships between " -"packages when performing upgrades. <footnote><p>APT however considers all " -"known dependencies and attempts to prevent broken packages</p></footnote>. " -"The second is if a package installation fails during an operation. In this " -"situation a package may have been unpacked without its dependents being " -"installed." +"is caused by <command>dpkg</command> missing some subtle relationships " +"between packages when performing upgrades. <placeholder type=\"footnote\" id=" +"\"0\"/>. The second is if a package installation fails during an operation. " +"In this situation a package may have been unpacked without its dependents " +"being installed." msgstr "" "Hay dos formas de que el sistema tenga un estado roto como éste. El primero " -"es causado por la omisión de <prgn>dpkg</prgn> de ciertas relaciones " -"delicadas entre paquetes al realizar una actualización. <footnote><p>APT, de " -"todas formas, considera todas las dependencias conocidas e intenta prevenir " -"paquetes rotos</p></footnote>. El segundo ocurre se la instalación de un " -"paquete falla durante la operación. En esta situación puede que un paquete " -"se haya desempaquetado sin que sus dependencias estuviesen instaladas " -"previamente." +"es causado por la omisión de <command>dpkg</command> de ciertas relaciones " +"delicadas entre paquetes al realizar una actualización. <placeholder type=" +"\"footnote\" id=\"0\"/>. El segundo ocurre se la instalación de un paquete " +"falla durante la operación. En esta situación puede que un paquete se haya " +"desempaquetado sin que sus dependencias estuviesen instaladas previamente." -#. type: <p></p> -#: guide.sgml:345 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:359 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 " -"supplying the <tt>-f</tt> option to <prgn>apt-get</prgn> will cause APT to " -"deduce a possible solution to the problem and then continue on. The APT " -"<prgn>dselect</prgn> method always supplies the <tt>-f</tt> option to allow " -"for easy continuation of failed maintainer scripts." +"supplying the <literal>-f</literal> option to <command>apt-get</command> " +"will cause APT to deduce a possible solution to the problem and then " +"continue on. The APT <command>dselect</command> method always supplies the " +"<literal>-f</literal> option to allow for easy continuation of failed " +"maintainer scripts." msgstr "" "La segunda situación es mucho menos grave que la primera ya que APT define " "ciertos límites en el orden de instalación de los paquetes. En ambos casos, " -"introducir la opción <tt>-f</tt> a <prgn>apt-get</prgn> causará que APT " -"deduzca una posible solución al problema para después continuar. El método " -"<prgn>dselect</prgn> de APT siempre ofrece la opción <tt>-f</tt> para " -"permitir una fácil continuación cuando existen scripts fallidos del " -"mantenedor." - -#. type: <p></p> -#: guide.sgml:351 -msgid "" -"However, if the <tt>-f</tt> option is used to correct a seriously broken " -"system caused by the first case then it is possible that it will either fail " -"immediately or the installation sequence will fail. In either case it is " -"necessary to manually use dpkg (possibly with forcing options) to correct " -"the situation enough to allow APT to proceed." -msgstr "" -"Aún así, de usar la opción <tt>-f</tt> para corregir un sistema gravemente " -"roto por el primer caso cabe que la acción falle inmediatamente o que la " -"secuencia de instalación se interrumpa. En cualquier caso es necesario usar " -"dpkg manualmente (puede que con opciones de forzado) para corregir la " -"situación lo suficiente como para que APT pueda continuar." - -#. type: <heading></heading> -#: guide.sgml:356 +"introducir la opción <literal>-f</literal> a <command>apt-get</command> " +"causará que APT deduzca una posible solución al problema para después " +"continuar. El método <command>dselect</command> de APT siempre ofrece la " +"opción <literal>-f</literal> para permitir una fácil continuación cuando " +"existen scripts fallidos del mantenedor." + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:368 +msgid "" +"However, if the <literal>-f</literal> option is used to correct a seriously " +"broken system caused by the first case then it is possible that it will " +"either fail immediately or the installation sequence will fail. In either " +"case it is necessary to manually use dpkg (possibly with forcing options) to " +"correct the situation enough to allow APT to proceed." +msgstr "" +"Aún así, de usar la opción <literal>-f</literal> para corregir un sistema " +"gravemente roto por el primer caso cabe que la acción falle inmediatamente o " +"que la secuencia de instalación se interrumpa. En cualquier caso es " +"necesario usar dpkg manualmente (puede que con opciones de forzado) para " +"corregir la situación lo suficiente como para que APT pueda continuar." + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:376 msgid "The Status Report" msgstr "El informe de estado" -#. type: <p></p> -#: guide.sgml:363 -msgid "" -"Before proceeding <prgn>apt-get</prgn> will present a report on what will " -"happen. Generally the report reflects the type of operation being performed " -"but there are several common elements. In all cases the lists reflect the " -"final state of things, taking into account the <tt>-f</tt> option and any " -"other relevant activities to the command being executed." -msgstr "" -"Antes de proceder <prgn>apt-get</prgn> presentará un informe de lo que va a " -"ocurrir. Generalmente el informe refleja el tipo de operación a realizar, " -"pero hay ciertos elementos comunes. La lista refleja el estado final de las " -"cosas en todos los casos, teniendo en cuenta la opción <tt>-f</tt> y " -"cualquier otra actividad relevante a la orden ejecutada." - -#. type: <heading></heading> -#: guide.sgml:364 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:378 +msgid "" +"Before proceeding <command>apt-get</command> will present a report on what " +"will happen. Generally the report reflects the type of operation being " +"performed but there are several common elements. In all cases the lists " +"reflect the final state of things, taking into account the <literal>-f</" +"literal> option and any other relevant activities to the command being " +"executed." +msgstr "" +"Antes de proceder <command>apt-get</command> presentará un informe de lo que " +"va a ocurrir. Generalmente el informe refleja el tipo de operación a " +"realizar, pero hay ciertos elementos comunes. La lista refleja el estado " +"final de las cosas en todos los casos, teniendo en cuenta la opción " +"<literal>-f</literal> y cualquier otra actividad relevante a la orden " +"ejecutada." + +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:385 msgid "The Extra Package list" msgstr "La lista de paquetes extras" -#. type: <example></example> -#: guide.sgml:372 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:387 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9328,85 +9377,85 @@ msgid "" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" msgstr "" "Se instalarán los siguientes paquetes extras:\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" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" -#. type: <p></p> -#: guide.sgml:379 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:395 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 <tt>install</tt> command. The listed packages are often the " -"result of an Auto Install." +"generated for an <literal>install</literal> command. The listed packages are " +"often the result of an Auto Install." msgstr "" "La lista de paquetes extras muestra todos los paquetes que se van a instalar " "o actualizar en adición a aquellos mencionados en la línea de órdenes. Sólo " -"se genera para la orden <tt>install</tt>. Generalmente, los paquetes " -"listados son el resultado de una instalación automática." +"se genera para la orden <literal>install</literal>. Generalmente, los " +"paquetes listados son el resultado de una instalación automática." -#. type: <heading></heading> -#: guide.sgml:382 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:402 msgid "The Packages to Remove" msgstr "Los paquetes a eliminar" -#. type: <example></example> -#: guide.sgml:389 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:404 #, no-wrap msgid "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" msgstr "" "Los siguientes paquetes se ELIMINARÁN:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" -#. type: <p></p> -#: guide.sgml:399 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:411 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 " "given a careful inspection to ensure nothing important is to be taken off. " -"The <tt>-f</tt> option is especially good at generating packages to remove " -"so extreme care should be used in that case. The list may contain packages " -"that are going to be removed because they are only partially installed, " -"possibly due to an aborted installation." +"The <literal>-f</literal> option is especially good at generating packages " +"to remove so extreme care should be used in that case. The list may contain " +"packages that are going to be removed because they are only partially " +"installed, possibly due to an aborted installation." msgstr "" "La lista de paquetes a eliminar muestra todos los paquetes que se van a " "eliminar del sistema. Puede aparecer durante cualquier operación, y se " "debería revisar cuidadosamente para asegurar que no se va a eliminar nada " -"importante. La opción <tt>-f</tt> puede generar varios paquetes a eliminar " -"así que se debe utilizar con precaución. La lista puede contener paquetes a " -"eliminar porque están parcialmente instalados, posiblemente debido a una " -"instalación interrumpida." +"importante. La opción <literal>-f</literal> puede generar varios paquetes a " +"eliminar así que se debe utilizar con precaución. La lista puede contener " +"paquetes a eliminar porque están parcialmente instalados, posiblemente " +"debido a una instalación interrumpida." -#. type: <heading></heading> -#: guide.sgml:402 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:421 msgid "The New Packages list" msgstr "La lista de paquetes nuevos" -#. type: <example></example> -#: guide.sgml:406 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:423 #, no-wrap msgid "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" msgstr "" "Se instalarán los siguientes paquetes NUEVOS:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" -#. type: <p></p> -#: guide.sgml:411 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:427 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 " @@ -9416,57 +9465,57 @@ msgstr "" "Los paquetes listados no se encuentran instalados en el sistema pero lo " "estarán cuando APT finalice." -#. type: <heading></heading> -#: guide.sgml:414 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:432 msgid "The Kept Back list" msgstr "La lista de paquetes retenidos" -#. type: <example></example> -#: guide.sgml:419 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:434 #, 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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" msgstr "" "Los siguientes paquetes se han retenido:\n" " compface man-db tetex-base msql libpaper svgalib1\n" -" gs snmp arena lynx xpat2 groff xscreensaver" +" gs snmp arena lynx xpat2 groff xscreensaver\n" -#. type: <p></p> -#: guide.sgml:428 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:439 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 " "or conflict with already installed things. In this case the package will " "appear in the Kept Back list. The best way to convince packages listed there " -"to install is with <tt>apt-get install</tt> or by using <prgn>dselect</prgn> " -"to resolve their problems." +"to install is with <literal>apt-get install</literal> or by using " +"<command>dselect</command> to resolve their problems." msgstr "" "Puede que al actualizar el sistema por completo no se puedan instalar " "versiones nuevas de paquetes porque requieren nuevos elementos que entran en " "conflicto con paquetes ya instalados. En este caso, el paquete aparecerá en " "la lista de paquetes retenidos. La mejor manera de instalar paquetes " -"listados aquí es mediante <tt>apt-get install</tt> o mediante <prgn>dselect</" -"prgn> para así resolver esos problemas." +"listados aquí es mediante <literal>apt-get install</literal> o mediante " +"<command>dselect</command> para así resolver esos problemas." -#. type: <heading></heading> -#: guide.sgml:431 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:448 msgid "Held Packages warning" msgstr "Advertencia de paquetes retenidos" -#. type: <example></example> -#: guide.sgml:435 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:450 #, no-wrap msgid "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" msgstr "" "Se cambiarán los siguientes paquetes retenidos:\n" -" cvs" +" cvs\n" -#. type: <p></p> -#: guide.sgml:441 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:454 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. " @@ -9476,33 +9525,33 @@ msgstr "" "verá una advertencia de que el paquete retenido se va a modificar. Esto sólo " "debería ocurrir durante un «dist-upgrade» o un «install»." -#. type: <heading></heading> -#: guide.sgml:444 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:460 msgid "Final summary" msgstr "Resumen final" -#. type: <p></p> -#: guide.sgml:447 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:462 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "Por último, APT mostrará un resumen de los cambios que se llevarán a cabo." -#. type: <example></example> -#: guide.sgml:452 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:465 #, 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" "206 paquetes actualizados, 8 se instalarán, 23 para eliminar y 51 no\n" "actualizados.\n" "12 paquetes no instalados del todo o eliminados.\n" -"Se necesita descargar 65.7M/66.7M de archivos. Se usarán 26.5M después de desempaquetar." +"Se necesita descargar 65.7M/66.7M de archivos. Se usarán 26.5M después de desempaquetar.\n" -#. type: <p></p> -#: guide.sgml:470 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:470 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 " @@ -9533,8 +9582,8 @@ msgstr "" "paquetes a eliminar el valor puede indicar la cantidad de espacio que se va " "a liberar." -#. type: <p></p> -#: guide.sgml:473 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:484 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9542,13 +9591,13 @@ msgstr "" "Puede generar otros informes con la opción «-u» para mostrar los paquetes a " "actualizar, similar a los ejemplos anteriores." -#. type: <heading></heading> -#: guide.sgml:477 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:491 msgid "The Status Display" msgstr "La pantalla de estado" -#. type: <p></p> -#: guide.sgml:481 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:493 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9556,8 +9605,8 @@ msgstr "" "APT muestra una serie de mensajes de estado en el transcurso de descargar " "ficheros de paquete y archivo." -#. type: <example></example> -#: guide.sgml:490 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:497 #, no-wrap msgid "" "# apt-get update\n" @@ -9566,7 +9615,7 @@ msgid "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" msgstr "" "# apt-get update\n" "Des:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" @@ -9574,70 +9623,73 @@ msgstr "" "Obj http://llug.sep.bnl.gov/debian/ testing/main Packages\n" "Des:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages\n" "es:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" -"11% [5 testing/non-free Esperando las cabeceras 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free Esperando las cabeceras 0/32.1k 0%] 2203b/s 1m52s\n" -#. type: <p></p> -#: guide.sgml:500 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:506 msgid "" -"The lines starting with <em>Get</em> are printed out when APT begins to " -"fetch a file while the last line indicates the progress of the download. The " -"first percent value on the progress line indicates the total percent done of " -"all files. Unfortunately since the size of the Package files is unknown " -"<tt>apt-get update</tt> estimates the percent done which causes some " -"inaccuracies." +"The lines starting with <emphasis>Get</emphasis> are printed out when APT " +"begins to fetch a file while the last line indicates the progress of the " +"download. The first percent value on the progress line indicates the total " +"percent done of all files. Unfortunately since the size of the Package files " +"is unknown <literal>apt-get update</literal> estimates the percent done " +"which causes some inaccuracies." msgstr "" -"Las líneas comenzando con <em>Des</em> aparecen cuando APT inicia la " -"obtención de un fichero, mientras que la última línea indica el progreso de " -"la descarga. El primer valor porcentual en la barra de progreso indica el " -"porcentaje total de los ficheros ya descargados. Desafortunadamente, <tt>apt-" -"get update</tt> desconoce el tamaño de los ficheros de paquete y por ello " -"genera una estimación que puede ser inexacta." +"Las líneas comenzando con <emphasis>Des</emphasis> aparecen cuando APT " +"inicia la obtención de un fichero, mientras que la última línea indica el " +"progreso de la descarga. El primer valor porcentual en la barra de progreso " +"indica el porcentaje total de los ficheros ya descargados. " +"Desafortunadamente, <literal>apt-get update</literal> desconoce el tamaño de " +"los ficheros de paquete y por ello genera una estimación que puede ser " +"inexacta." -#. type: <p></p> -#: guide.sgml:509 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:514 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " "information about what is happening. Sometimes this section will simply read " -"<em>Forking</em> which means the OS is loading the download module. The " -"first word after the [ is the fetch number as shown on the history lines. " -"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." +"<emphasis>Forking</emphasis> which means the OS is loading the download " +"module. The first word after the [ is the fetch number as shown on the " +"history lines. 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 siguiente sección de la línea de estado se repite por cada instancia de " "descarga e indica la operación realizada, así como información útil relativa " -"a lo que está pasando. Puede que esta sección sólo muestre <em>Forking</em>, " -"lo cual significa que el sistema operativo está cargando el módulo de " -"descargas. La primera palabra después de «[» es el número de obtención tal y " -"como se muestra en la línea del histórico. La siguiente palabra es la forma " -"corta del nombre del objeto en descarga. Al conectarse con los archivos, " -"contendrá el nombre del paquete obtenido." +"a lo que está pasando. Puede que esta sección sólo muestre " +"<emphasis>Forking</emphasis>, lo cual significa que el sistema operativo " +"está cargando el módulo de descargas. La primera palabra después de «[» es " +"el número de obtención tal y como se muestra en la línea del histórico. La " +"siguiente palabra es la forma corta del nombre del objeto en descarga. Al " +"conectarse con los archivos, contendrá el nombre del paquete obtenido." -#. type: <p></p> -#: guide.sgml:524 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:524 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " -"<em>Connecting</em> to <em>Waiting for file</em> to <em>Downloading</em> or " -"<em>Resuming</em>. The final value is the number of bytes downloaded from " -"the remote site. Once the download begins this is represented as " -"<tt>102/10.2k</tt> indicating that 102 bytes have been fetched and 10.2 " -"kilobytes is expected. The total size is always shown in 4 figure notation " -"to preserve space. After the size display is a percent meter for the file " -"itself. The second last element is the instantaneous average speed. This " -"values is updated every 5 seconds and reflects the rate of data transfer for " -"that period. Finally is shown the estimated transfer time. This is updated " -"regularly and reflects the time to complete everything at the shown transfer " -"rate." +"<emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to " +"<emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final " +"value is the number of bytes downloaded from the remote site. Once the " +"download begins this is represented as <literal>102/10.2k</literal> " +"indicating that 102 bytes have been fetched and 10.2 kilobytes is expected. " +"The total size is always shown in 4 figure notation to preserve space. After " +"the size display is a percent meter for the file itself. The second last " +"element is the instantaneous average speed. This values is updated every 5 " +"seconds and reflects the rate of data transfer for that period. Finally is " +"shown the estimated transfer time. This is updated regularly and reflects " +"the time to complete everything at the shown transfer rate." msgstr "" "Una cadena informativa aparecerá entre comillas simples indicando el " "progreso de la fase de negociación de la descarga. Generalmente progresa de " -"<em>Conectando</em> a <em>Esperando fichero</em>, finalizando con " -"<em>Descargando</em> o <em>Continuando</em>. El último valor es el número de " -"bytes descargados desde el sitio remoto. Una vez que la descarga arranque se " -"representará como <tt>102/10.2k</tt> indicando que ya se han obtenido 102 " -"bytes y que se esperan 10.2 kilobytes. El tamaño total siempre aparece con " -"la notación de la figura 4 para conservar espacio. A continuación aparece un " +"<emphasis>Conectando</emphasis> a <emphasis>Esperando fichero</emphasis>, " +"finalizando con <emphasis>Descargando</emphasis> o <emphasis>Continuando</" +"emphasis>. El último valor es el número de bytes descargados desde el sitio " +"remoto. Una vez que la descarga arranque se representará como " +"<literal>102/10.2k</literal> indicando que ya se han obtenido 102 bytes y " +"que se esperan 10.2 kilobytes. El tamaño total siempre aparece con la " +"notación de la figura 4 para conservar espacio. A continuación aparece un " "medidor porcentual del fichero. El penúltimo elemento es la media " "instantánea de velocidad. Estos valores se actualizan cada 5 segundos y " "reflejan la tasa de descarga de datos de ese periodo. Por último puede ver " @@ -9645,56 +9697,51 @@ msgstr "" "refleja el tiempo restante para completar todo tal y como se ve en la tasa " "de transferencia visible." -#. type: <p></p> -#: guide.sgml:530 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:539 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 " "is started. Since the status display is constantly updated it is unsuitable " -"for logging to a file, use the <tt>-q</tt> option to remove the status " -"display." +"for logging to a file, use the <literal>-q</literal> option to remove the " +"status display." msgstr "" "La pantalla de estado se actualiza cada medio segundo para ofrecer una " "constante información del progreso de la descarga, mientras que las líneas " "«Des» se desplazan hacia atrás cuando se inicia la descarga de otro fichero. " "Ya que la pantalla de estado se actualiza constantemente carece de utilidad " -"para su registro en un fichero. Puede usar la opción <tt>-q</tt> para omitir " -"la pantalla de estado." +"para su registro en un fichero. Puede usar la opción <literal>-q</literal> " +"para omitir la pantalla de estado." -#. type: <heading></heading> -#: guide.sgml:535 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:547 msgid "Dpkg" msgstr "Dpkg" -#. type: <p></p> -#: guide.sgml:542 -msgid "" -"APT uses <prgn>dpkg</prgn> for installing the archives and will switch over " -"to the <prgn>dpkg</prgn> interface once downloading is completed. " -"<prgn>dpkg</prgn> will also ask a number of questions as it processes the " -"packages and the packages themselves may also ask several questions. Before " -"each question there is usually a description of what it is asking and the " -"questions are too varied to discuss completely here." -msgstr "" -"APT usa <prgn>dpkg</prgn> para instalar ficheros, y pasará a interactuar con " -"<prgn>dpkg</prgn> al finalizar la descarga. <prgn>dpkg</prgn> también " -"planteará un número de preguntas a medida que procesa los paquetes, los " -"cuales también pueden formular preguntas. A cada pregunta generalmente le " -"precede una descripción de la pregunta en sí. Éstas son demasiado variadas " -"como para poder tratarlas aquí en su totalidad." - -#. type: <title> -#: offline.sgml:4 +#. type: Content of:
+#: guide.dbk:549 +msgid "" +"APT uses dpkg for installing the archives and will switch " +"over to the dpkg interface once downloading is completed. " +"dpkg will also ask a number of questions as it processes " +"the packages and the packages themselves may also ask several questions. " +"Before each question there is usually a description of what it is asking and " +"the questions are too varied to discuss completely here." +msgstr "" +"APT usa dpkg para instalar ficheros, y pasará a " +"interactuar con dpkg al finalizar la descarga. " +"dpkg también planteará un número de preguntas a medida " +"que procesa los paquetes, los cuales también pueden formular preguntas. A " +"cada pregunta generalmente le precede una descripción de la pregunta en sí. " +"Éstas son demasiado variadas como para poder tratarlas aquí en su totalidad." + +#. type: Content of: +#: offline.dbk:10 msgid "Using APT Offline" msgstr "Uso de APT Offline" -#. type: <version></version> -#: offline.sgml:7 -msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" - -#. type: <abstract></abstract> -#: offline.sgml:12 +#. type: Content of: <book><bookinfo><abstract><para> +#: offline.dbk:24 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9702,23 +9749,25 @@ msgstr "" "Este documento describe el uso de APT en un entorno sin conexión a red, " "específicamente una aproximación «sneaker-net» a la tarea de actualización." -#. type: <copyrightsummary></copyrightsummary> -#: offline.sgml:16 -msgid "Copyright © Jason Gunthorpe, 1999." -msgstr "Copyright © Jason Gunthorpe, 1999." +#. type: Content of: <book><bookinfo> +#: offline.dbk:29 +msgid "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" -#. type: <heading></heading> -#: offline.sgml:32 +#. type: Content of: <book><chapter><title> +#: offline.dbk:47 msgid "Introduction" msgstr "Introducción" -#. type: <heading></heading> -#: offline.sgml:34 offline.sgml:65 offline.sgml:180 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:49 offline.dbk:79 offline.dbk:191 msgid "Overview" msgstr "Resumen" -#. type: <p></p> -#: offline.sgml:40 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:51 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9731,8 +9780,8 @@ msgstr "" "de un módem, y otra máquina físicamente lejos dispone de una conexión muy " "rápida." -#. type: <p></p> -#: offline.sgml:51 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:57 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9740,9 +9789,9 @@ msgid "" "to use APT to generate a list of packages that are required and then fetch " "them onto the disc using another machine with good connectivity. It is even " "possible to use another Debian machine with APT or to use a completely " -"different OS and a download tool like wget. Let <em>remote host</em> mean " -"the machine downloading the packages, and <em>target host</em> the one with " -"bad or no connection." +"different OS and a download tool like wget. Let <emphasis>remote host</" +"emphasis> mean the machine downloading the packages, and <emphasis>target " +"host</emphasis> the one with bad or no connection." msgstr "" "La solución a esto es usar dispositivos extraíbles de gran capacidad tales " "como un disco Zip o uno SuperDisk. Estos discos no tienen la suficiente " @@ -9752,11 +9801,12 @@ msgstr "" "almacenarlos en un disco usando el sistema que tiene una conexión rápida. Es " "incluso posible usar otro sistema Debian con APT, o usar un sistema " "operativo totalmente distinto junto con una herramienta de descarga como " -"wget. Digamos que el <em>sistema remoto</em> es aquél que descarga los " -"paquetes, y <em>sistema destino</em> es aquél con poca o ninguna conexión." +"wget. Digamos que el <emphasis>sistema remoto</emphasis> es aquél que " +"descarga los paquetes, y <emphasis>sistema destino</emphasis> es aquél con " +"poca o ninguna conexión." -#. type: <p></p> -#: offline.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:68 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9769,13 +9819,13 @@ msgstr "" "de un sistema de ficheros capaz de gestionar nombres largos de ficheros, " "tales como ext2, fat32 o vfat." -#. type: <heading></heading> -#: offline.sgml:63 +#. type: Content of: <book><chapter><title> +#: offline.dbk:77 msgid "Using APT on both machines" msgstr "Uso de APT en ambas máquinas" -#. type: <p><example> -#: offline.sgml:71 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:81 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9788,8 +9838,8 @@ msgstr "" "paquete y decidir qué paquetes descargar. La estructura de directorios del " "disco debería tener este aspecto:" -#. type: <example></example> -#: offline.sgml:80 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:87 #, no-wrap msgid "" " /disc/\n" @@ -9799,7 +9849,7 @@ msgid "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" msgstr "" " /disc/\n" " archives/\n" @@ -9808,42 +9858,43 @@ msgstr "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" -#. type: <heading></heading> -#: offline.sgml:88 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:98 msgid "The configuration file" msgstr "El fichero de configuración" -#. type: <p></p> -#: offline.sgml:96 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:100 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " "contain the proper sites that you wish to use from the remote machine, and " -"the status file should be a copy of <em>/var/lib/dpkg/status</em> from the " -"<em>target host</em>. Please note, if you are using a local archive you must " -"use copy URIs, the syntax is identical to file URIs." +"the status file should be a copy of <emphasis>/var/lib/dpkg/status</" +"emphasis> from the <emphasis>target host</emphasis>. Please note, if you are " +"using a local archive you must use copy URIs, the syntax is identical to " +"file URIs." msgstr "" "El fichero de configuración debería indicar a APT que guarde los ficheros en " "el disco, y también utilizar los ficheros de configuración en el disco. El " "fichero «sources.list» debería contener los sitios apropiados que desea " "utilizar desde el sistema remoto, y el fichero de estado debería ser una " -"copia de <em>/var/lib/dpkg/status</em> del <em>sistema destino</em>. Tenga " -"en cuenta que si usa un archivo local debe usar el URI «copy», de idéntica " -"sintaxis al URI «file»." +"copia de <emphasis>/var/lib/dpkg/status</emphasis> del <emphasis>sistema " +"destino</emphasis>. Tenga en cuenta que si usa un archivo local debe usar el " +"URI «copy», de idéntica sintaxis al URI «file»." -#. type: <p><example> -#: offline.sgml:100 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:108 msgid "" -"<em>apt.conf</em> must contain the necessary information to make APT use the " -"disc:" +"<emphasis>apt.conf</emphasis> must contain the necessary information to make " +"APT use the disc:" msgstr "" -"<em>apt-conf</em> debe contener toda la información necesaria para que APT " -"use el disco:" +"<emphasis>apt-conf</emphasis> debe contener toda la información necesaria " +"para que APT use el disco:" -#. type: <example></example> -#: offline.sgml:124 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:112 #, no-wrap msgid "" " APT\n" @@ -9851,10 +9902,10 @@ msgid "" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -9865,20 +9916,20 @@ msgid "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" msgstr "" " APT\n" " {\n" " /* Esto no es necesario si ambos sistemas tienen la misma arquitectura,\n" " informa al APT remoto la arquitectura del sistema destino */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use el disco para información de estado y redireccionar el fichero de\n" @@ -9889,67 +9940,70 @@ msgstr "" " // Los cachés binarios se guardan localmente\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Ubicación del fichero de fuentes.\n" " Etc \"/disc/\";\n" -" };" +" };\n" -#. type: </example></p> -#: offline.sgml:129 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:137 msgid "" "More details can be seen by examining the apt.conf man page and the sample " -"configuration file in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis>." msgstr "" "Para más detalles consulte la página de manual y el fichero de configuración " -"de ejemplo en <em>/usr/share/doc/apt/examples/apt.conf</em>." +"de ejemplo en <emphasis>/usr/share/doc/apt/examples/apt.conf</emphasis>." -#. type: <p><example> -#: offline.sgml:136 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:142 msgid "" -"On the target machine the first thing to do is mount the disc and copy <em>/" -"var/lib/dpkg/status</em> to it. You will also need to create the directories " -"outlined in the Overview, <em>archives/partial/</em> and <em>lists/partial/</" -"em>. Then take the disc to the remote machine and configure the sources." -"list. On the remote machine execute the following:" +"On the target machine the first thing to do is mount the disc and copy " +"<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " +"create the directories outlined in the Overview, <emphasis>archives/partial/" +"</emphasis> and <emphasis>lists/partial/</emphasis>. Then take the disc to " +"the remote machine and configure the sources.list. On the remote machine " +"execute the following:" msgstr "" "Lo primero que debe hacer en el sistema destino es montar el disco y guardar " -"en él una copia de <em>/var/lib/dpkg/status</em>. También debe crear los " -"directorios definidos en el Resumen, <em>archives/partial/</em> y <em>lists/" -"partial/</em>. Después, lleve el disco hasta el sistema remoto y configure " -"«sources.list». Ejecute lo siguiente en el sistema remoto:" - -#. type: <example></example> -#: offline.sgml:142 +"en él una copia de <emphasis>/var/lib/dpkg/status</emphasis>. También debe " +"crear los directorios definidos en el Resumen, <emphasis>archives/partial/</" +"emphasis> y <emphasis>lists/partial/</emphasis>. Después, lleve el disco " +"hasta el sistema remoto y configure «sources.list». Ejecute lo siguiente en " +"el sistema remoto:" + +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:151 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT fetches the package files ]\n" " # apt-get dist-upgrade\n" -" [ APT fetches all the packages needed to upgrade the target machine ]" +" [ APT fetches all the packages needed to upgrade the target machine ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT obtiene los ficheros de paquete ]\n" " # apt-get dist-upgrade\n" " [ APT obtiene todos los paquetes necesarios para actualizar el sistema\n" -" destino ]" +" destino ]\n" -#. type: </example></p> -#: offline.sgml:149 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:158 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " -"such as <em>dselect</em>. However this presents a problem in communicating " -"your selections back to the local computer." +"such as <emphasis>dselect</emphasis>. However this presents a problem in " +"communicating your selections back to the local computer." msgstr "" "Puede reemplazar la orden «dist-upgrade» con cualquiera otra orden estándar " "de APT, en especial «dselect-upgrade». Incluso puede usar una interfaz de " -"APT como <em>dselect</em>. Sin embargo, esto presenta un problema al " -"informar después de sus selecciones al sistema remoto." +"APT como <emphasis>dselect</emphasis>. Sin embargo, esto presenta un " +"problema al informar después de sus selecciones al sistema remoto." -#. type: <p><example> -#: offline.sgml:153 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:164 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9957,24 +10011,24 @@ msgstr "" "Ahora el disco contiene todos los ficheros de índice y archivo necesarios " "para actualizar el sistema destino. Inserte el disco otra vez y ejecute:" -#. type: <example></example> -#: offline.sgml:159 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:168 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generates a local copy of the cache files ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Or any other APT command ]" +" [ Or any other APT command ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT genera una copia local de los ficheros de caché ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ O cualquiera otra orden de APT ]" +" [ O cualquiera otra orden de APT ]\n" -#. type: <p></p> -#: offline.sgml:165 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:175 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -9982,8 +10036,8 @@ msgstr "" "Para un correcto funcionamiento debe definir nuevamente el fichero de estado " "local. Tiene una importancia crucial." -#. type: <p></p> -#: offline.sgml:172 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:179 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -9997,24 +10051,25 @@ msgstr "" "en el sistema local, aunque puede que no sea posible. NO copie el fichero de " "estado si dpkg o APT se han ejecutado mientras tanto." -#. type: <heading></heading> -#: offline.sgml:178 +#. type: Content of: <book><chapter><title> +#: offline.dbk:189 msgid "Using APT and wget" msgstr "Uso de APT y wget" -#. type: <p></p> -#: offline.sgml:185 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:193 msgid "" -"<em>wget</em> is a popular and portable download tool that can run on nearly " -"any machine. Unlike the method above this requires that the Debian machine " -"already has a list of available packages." +"<emphasis>wget</emphasis> is a popular and portable download tool that can " +"run on nearly any machine. Unlike the method above this requires that the " +"Debian machine already has a list of available packages." msgstr "" -"<em>wget</em> es una herramienta de descarga muy popular que funciona " -"prácticamente en cualquier sistema. A diferencia del método anterior, " -"requiere que el sistema Debian tenga una lista de paquetes disponibles." +"<emphasis>wget</emphasis> es una herramienta de descarga muy popular que " +"funciona prácticamente en cualquier sistema. A diferencia del método " +"anterior, requiere que el sistema Debian tenga una lista de paquetes " +"disponibles." -#. type: <p></p> -#: offline.sgml:190 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:198 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -10026,13 +10081,13 @@ msgstr "" "get «--print-uris», para después preparar un script de wget que finalmente " "obtendrá los paquetes." -#. type: <heading></heading> -#: offline.sgml:196 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:204 msgid "Operation" msgstr "Operación" -#. type: <p><example> -#: offline.sgml:200 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:206 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -10041,23 +10096,23 @@ msgstr "" "configuración especial. Solo se utilizan órdenes estándar de APT para " "generar el fichero con la lista." -#. type: <example></example> -#: offline.sgml:205 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:210 #, no-wrap msgid "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" " # apt-get dist-upgrade \n" " [ Pulse no cuando se le pregunte, asegúrese de estar conforme con las\n" " acciones ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" -#. type: </example></p> -#: offline.sgml:210 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:216 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -10065,8 +10120,8 @@ msgstr "" "Se puede utilizar cualquier otra orden aparte de «dist-upgrade», incluyendo " "«dselect-upgrade»." -#. type: <p></p> -#: offline.sgml:216 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:220 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -10078,25 +10133,25 @@ msgstr "" "ejecutar en el directorio del punto de montaje del disco para poder guardar " "la salida en el disco." -#. type: <p><example> -#: offline.sgml:219 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:226 msgid "The remote machine would do something like" msgstr "El sistema remoto haría algo como" -#. type: <example></example> -#: offline.sgml:223 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:229 #, no-wrap msgid "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" msgstr "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" -#. type: </example><example> -#: offline.sgml:228 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:234 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10104,14 +10159,14 @@ msgstr "" "Una vez que los archivos se han descargado y el disco está finalmente " "conectado al sistema Debian, ejecute la instalación con lo siguiente." -#. type: <example></example> -#: offline.sgml:230 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:238 #, no-wrap -msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" +msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" +msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" -#. type: </example></p> -#: offline.sgml:234 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." msgstr "Esto utiliza los archivos del disco previamente obtenidos." diff --git a/doc/po/fr.po b/doc/po/fr.po index 530de5046..1fabc54dc 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-05-05 16:26+0200\n" -"PO-Revision-Date: 2014-04-01 14:00+0200\n" +"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"PO-Revision-Date: 2014-07-04 01:28+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" "Language: fr\n" @@ -822,7 +822,7 @@ msgstr "La ligne <literal>Archive:</literal> ou <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 #: apt-ftparchive.1.xml:609 msgid "See Also" @@ -1810,7 +1810,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 +#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 msgid "Files" msgstr "Fichiers" @@ -3022,10 +3022,10 @@ msgstr "" #: apt-secure.8.xml:195 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" msgstr "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:199 @@ -4598,15 +4598,27 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:607 +#, fuzzy +#| msgid "" +#| "<literal>Dir::Cache</literal> contains locations pertaining to local " +#| "cache information, such as the two package caches <literal>srcpkgcache</" +#| "literal> and <literal>pkgcache</literal> as well as the location to place " +#| "downloaded archives, <literal>Dir::Cache::archives</literal>. Generation " +#| "of caches can be turned off by setting their names to the empty string. " +#| "This will slow down startup but save disk space. It is probably " +#| "preferable to turn off the pkgcache rather than the srcpkgcache. Like " +#| "<literal>Dir::State</literal> the default directory is contained in " +#| "<literal>Dir::Cache</literal>" msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " "and <literal>pkgcache</literal> as well as the location to place downloaded " "archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " -"be turned off by setting their names to the empty string. This will slow " +"be turned off by setting <literal>pkgcache</literal> or " +"<literal>srcpkgcache</literal> to <literal>\"\"</literal>. This will slow " "down startup but save disk space. It is probably preferable to turn off the " -"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " -"default directory is contained in <literal>Dir::Cache</literal>" +"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> contient les emplacements qui renseignent sur " "le cache local : par exemple, les deux caches de paquets " @@ -4620,7 +4632,7 @@ msgstr "" "Cache</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:617 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4635,7 +4647,7 @@ msgstr "" "fichier de configuration indiqué par la variable <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:622 +#: apt.conf.5.xml:623 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4646,7 +4658,7 @@ msgstr "" "configuration est chargé." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:627 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4664,7 +4676,7 @@ msgstr "" "programmes correspondants." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:634 +#: apt.conf.5.xml:635 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4686,7 +4698,7 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:648 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4704,12 +4716,12 @@ msgstr "" "est possible d'utiliser la syntaxe des expressions rationnelles." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:657 msgid "APT in DSelect" msgstr "APT et DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:659 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4720,7 +4732,7 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:664 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4743,7 +4755,7 @@ msgstr "" "avant de récupérer de nouveaux paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:677 +#: apt.conf.5.xml:678 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4752,7 +4764,7 @@ msgstr "" "&apt-get; lors de la phase d'installation." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:683 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4761,7 +4773,7 @@ msgstr "" "&apt-get; lors de la phase de mise à jour." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:688 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4771,12 +4783,12 @@ msgstr "" "d'erreur que l'on propose à l'utilisateur d'intervenir." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:693 +#: apt.conf.5.xml:694 msgid "How APT calls &dpkg;" msgstr "Méthode d'appel de &dpkg; par APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:695 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4785,7 +4797,7 @@ msgstr "" "&dpkg; : elles figurent dans la section <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:700 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4796,7 +4808,7 @@ msgstr "" "est passé comme un seul paramètre à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:705 +#: apt.conf.5.xml:706 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4809,7 +4821,7 @@ msgstr "" "<filename>/bin/sh</filename> : APT s'arrête dès que l'une d'elles échoue." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:712 +#: apt.conf.5.xml:713 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4833,7 +4845,7 @@ msgstr "" "qu'il va installer, à raison d'un par ligne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:719 +#: apt.conf.5.xml:720 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4855,7 +4867,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:724 +#: apt.conf.5.xml:725 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4866,7 +4878,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:731 +#: apt.conf.5.xml:732 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4877,7 +4889,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:742 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4886,7 +4898,7 @@ msgstr "" "le répertoire <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:746 +#: apt.conf.5.xml:747 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4896,14 +4908,14 @@ msgstr "" "créés." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:751 +#: apt.conf.5.xml:752 msgid "dpkg trigger usage (and related options)" msgstr "" "utilisation des actions différées (« triggers ») de dpkg (et options " "associées)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:753 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4930,7 +4942,7 @@ msgstr "" "pendant la configuration des paquets." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:767 +#: apt.conf.5.xml:768 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4944,7 +4956,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:762 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4968,7 +4980,7 @@ msgstr "" "<placeholder type=\"literallayout\" id=\"0\"/>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:774 +#: apt.conf.5.xml:775 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4991,7 +5003,7 @@ msgstr "" "options « unpack » et « remove »." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:782 +#: apt.conf.5.xml:783 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -5021,7 +5033,7 @@ msgstr "" "configuré et donc éventuellement non amorçable." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:798 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5040,7 +5052,7 @@ msgstr "" "peut conserver l'option active." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:804 +#: apt.conf.5.xml:805 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5058,7 +5070,7 @@ msgstr "" "celles concernant le paquet en cours de traitement." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:818 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5076,7 +5088,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:810 +#: apt.conf.5.xml:811 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5102,12 +5114,12 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:831 msgid "Periodic and Archives options" msgstr "Options « Periodic » et « Archive »" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:832 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5119,12 +5131,12 @@ msgstr "" "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:839 +#: apt.conf.5.xml:840 msgid "Debug options" msgstr "Les options de débogage" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:841 +#: apt.conf.5.xml:842 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5142,7 +5154,7 @@ msgstr "" "peuvent tout de même être utiles :" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:852 +#: apt.conf.5.xml:853 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5153,7 +5165,7 @@ msgstr "" "upgrade, upgrade, install, remove et purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:861 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5165,7 +5177,7 @@ msgstr "" "superutilisateur." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:870 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5177,7 +5189,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:878 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5186,12 +5198,12 @@ msgstr "" "type statfs dans les identifiants de CD." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:888 msgid "A full list of debugging options to apt follows." msgstr "Liste complète des options de débogage de APT :" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:896 +#: apt.conf.5.xml:897 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5199,24 +5211,24 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:907 +#: apt.conf.5.xml:908 msgid "Print information related to downloading packages using FTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:919 msgid "Print information related to downloading packages using HTTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:930 msgid "Print information related to downloading packages using HTTPS." msgstr "Print information related to downloading packages using HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:940 +#: apt.conf.5.xml:941 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5225,7 +5237,7 @@ msgstr "" "cryptographiques avec <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:951 +#: apt.conf.5.xml:952 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5234,14 +5246,14 @@ msgstr "" "stockées sur CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:961 +#: apt.conf.5.xml:962 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Décrit le processus de résolution des dépendances pour la construction de " "paquets source ( « build-dependencies » ) par &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:971 +#: apt.conf.5.xml:972 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5250,7 +5262,7 @@ msgstr "" "librairies d'<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:981 +#: apt.conf.5.xml:982 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5261,7 +5273,7 @@ msgstr "" "utilisés sur le système de fichier du CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:992 +#: apt.conf.5.xml:993 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." @@ -5271,14 +5283,14 @@ msgstr "" "temps." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1004 +#: apt.conf.5.xml:1005 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Trace les ajouts et suppressions d'éléments de la queue globale de " "téléchargement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1014 +#: apt.conf.5.xml:1015 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5288,7 +5300,7 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1024 +#: apt.conf.5.xml:1025 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5298,7 +5310,7 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1036 +#: apt.conf.5.xml:1037 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5308,7 +5320,7 @@ msgstr "" "place des fichiers complets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1047 +#: apt.conf.5.xml:1048 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5316,7 +5328,7 @@ msgstr "" "effectivement des téléchargements." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1058 +#: apt.conf.5.xml:1059 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5325,7 +5337,7 @@ msgstr "" "automatiquement, et la suppression des paquets inutiles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1068 +#: apt.conf.5.xml:1069 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5340,7 +5352,7 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1082 +#: apt.conf.5.xml:1083 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5376,7 +5388,7 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1103 +#: apt.conf.5.xml:1104 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5385,7 +5397,7 @@ msgstr "" "paramètres sont séparés par des espaces." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1114 +#: apt.conf.5.xml:1115 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5395,7 +5407,7 @@ msgstr "" "fichier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1125 +#: apt.conf.5.xml:1126 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5404,18 +5416,18 @@ msgstr "" "<literal>apt</literal> passe les paquets à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1137 +#: apt.conf.5.xml:1138 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1148 +#: apt.conf.5.xml:1149 msgid "Output the priority of each package list on startup." msgstr "Affiche, au lancement, la priorité de chaque liste de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1158 +#: apt.conf.5.xml:1159 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5424,7 +5436,7 @@ msgstr "" "concerne que les cas où un problème de dépendances complexe se présente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1169 +#: apt.conf.5.xml:1170 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5435,7 +5447,7 @@ msgstr "" "est décrite dans <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1181 +#: apt.conf.5.xml:1182 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5444,7 +5456,7 @@ msgstr "" "list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1191 +#: apt.conf.5.xml:1192 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5452,13 +5464,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Exemples" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1216 +#: apt.conf.5.xml:1217 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5468,7 +5480,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1228 +#: apt.conf.5.xml:1229 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -8506,36 +8518,53 @@ msgstr "" "<command>apt-ftparchive</command> retourne zéro si tout se passe bien, le " "nombre 100 en cas d'erreur." -#. type: <title> -#: guide.sgml:4 +#. type: Attribute 'lang' of: +#: guide.dbk:8 offline.dbk:8 +msgid "en" +msgstr "fr" + +#. type: Content of: +#: guide.dbk:10 msgid "APT User's Guide" msgstr "Guide d'utilisation d'APT" -#. type: <author></author> -#: guide.sgml:6 offline.sgml:6 -msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" -msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#. type: Content of: <book><bookinfo><authorgroup><author><personname> +#: guide.dbk:16 offline.dbk:16 +msgid "Jason Gunthorpe" +msgstr "Jason Gunthorpe" + +#. type: Content of: <book><bookinfo><authorgroup><author><email> +#: guide.dbk:16 offline.dbk:16 +msgid "jgg@debian.org" +msgstr "jgg@debian.org" -#. type: <version></version> -#: guide.sgml:7 -msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#. type: Content of: <book><bookinfo><releaseinfo> +#: guide.dbk:20 offline.dbk:20 +msgid "Version &apt-product-version;" +msgstr "" -#. type: <abstract></abstract> -#: guide.sgml:11 +#. type: Content of: <book><bookinfo><abstract><para> +#: guide.dbk:24 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" "Ce document fournit un aperçu des méthode d'utilisation du gestionnaire de " "paquets APT." -#. type: <copyrightsummary></copyrightsummary> -#: guide.sgml:15 -msgid "Copyright © Jason Gunthorpe, 1998." -msgstr "Copyright © Jason Gunthorpe, 1998." +#. type: Content of: <book><bookinfo> +#: guide.dbk:28 +msgid "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" + +#. type: Content of: <book><bookinfo><legalnotice><title> +#: guide.dbk:31 offline.dbk:32 +msgid "License Notice" +msgstr "" -#. type: <p></p> -#: guide.sgml:21 offline.sgml:22 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:33 offline.dbk:34 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 " @@ -8547,8 +8576,8 @@ msgstr "" "telle que publiée par la Free Software Foundation, en version 2 ou " "ultérieure." -#. type: <p></p> -#: guide.sgml:24 offline.sgml:25 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:42 offline.dbk:40 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8556,31 +8585,32 @@ msgstr "" "Les détails complets de cette licence sont, sur les systèmes Debian GNU/" "Linux, consultables dans le fichier usr/share/common-licenses/GPL." -#. type: <heading></heading> -#: guide.sgml:32 +#. type: Content of: <book><chapter><title> +#: guide.dbk:49 msgid "General" msgstr "Généralités" -#. type: <p></p> -#: guide.sgml:38 +#. type: Content of: <book><chapter><para> +#: guide.dbk:51 msgid "" -"The APT package currently contains two sections, the APT <prgn>dselect</" -"prgn> method and the <prgn>apt-get</prgn> command line user interface. Both " -"provide a way to install and remove packages as well as download new " -"packages from the Internet." +"The APT package currently contains two sections, the APT <command>dselect</" +"command> method and the <command>apt-get</command> command line user " +"interface. Both provide a way to install and remove packages as well as " +"download new packages from the Internet." msgstr "" "Le paquet APT comporte actuellement deux parties : la méthode APT pour " -"<prgn>dselect</prgn> et l'interface en ligne de commande <prgn>apt-get</" -"prgn>. Les deux fournissent des méthodes d'installation et de suppression de " -"paquets ainsi que de téléchargement de nouveaux paquets par Internet." +"<command>dselect</command> et l'interface en ligne de commande <command>apt-" +"get</command>. Les deux fournissent des méthodes d'installation et de " +"suppression de paquets ainsi que de téléchargement de nouveaux paquets par " +"Internet." -#. type: <heading></heading> -#: guide.sgml:39 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:57 msgid "Anatomy of the Package System" msgstr "Anatomie du système de gestion des paquets" -#. type: <p></p> -#: guide.sgml:44 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:59 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 " @@ -8591,8 +8621,8 @@ msgstr "" "proprement et facilement sur le système. Une des fonctionnalités les plus " "immédiatement visibles est le système de gestion des dépendances." -#. type: <p></p> -#: guide.sgml:52 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:64 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8608,8 +8638,8 @@ msgstr "" "d'effectuer des choix parmi les divers agents de transport de courrier " "électronique, les serveurs X et d'autres cxomposants du système." -#. type: <p></p> -#: guide.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:71 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 " @@ -8621,8 +8651,8 @@ msgstr "" "est le cas où un paquet donné a besoin qu'un autre paquet soit installé " "simultanément pour pouvoir fonctionner correctement." -#. type: <p></p> -#: guide.sgml:63 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:76 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 " @@ -8635,8 +8665,8 @@ msgstr "" "plus, étant une extension à Emacs sans lequel il est totalement inutile, il " "a une dépendance simple sur emacs." -#. type: <p></p> -#: guide.sgml:73 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:82 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 " @@ -8659,8 +8689,8 @@ msgstr "" "courrier électronique soient établis comme étant en conflit les uns avec les " "autres." -#. type: <p></p> -#: guide.sgml:83 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:92 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 " @@ -8682,8 +8712,8 @@ msgstr "" "paquet « mail-transprot-agent ». Cette fonctionnalité utile peut toutefois " "rendre la correction de certains défauts des paquets plus complexe." -#. type: <p></p> -#: guide.sgml:88 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:102 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 " @@ -8695,81 +8725,87 @@ msgstr "" "problèmes de dépendances par l'intermédiaire d'un certain nombre " "d'algorithmes automatiques qui simplifient le choix des paquets à installer." -#. type: <heading></heading> -#: guide.sgml:96 +#. type: Content of: <book><chapter><title> +#: guide.dbk:111 msgid "apt-get" msgstr "apt-get" -#. type: <p></p> -#: guide.sgml:102 -msgid "" -"<prgn>apt-get</prgn> provides a simple way to install packages from the " -"command line. Unlike <prgn>dpkg</prgn>, <prgn>apt-get</prgn> does not " -"understand .deb files, it works with the package's proper name and can only " -"install .deb archives from a <em>Source</em>." -msgstr "" -"Le programme <prgn>apt-get</prgn> offre une méthode simple pour installer " -"des paquets à la ligne de commande. À la différence de <prgn>dpkg</prgn>, " -"<prgn>apt-get</prgn> ne gère pas directement les fichiers .deb files. Il " -"travaille avec le nom des paquets et ne peut installer les archives .deb que " -"depuis une <em>Source</em>." - -#. type: <p></p> -#: guide.sgml:109 -msgid "" -"The first <footnote><p>If you are using an http proxy server you must set " -"the http_proxy environment variable first, see sources.list(5)</p></" -"footnote> thing that should be done before using <prgn>apt-get</prgn> is to " -"fetch the package lists from the <em>Sources</em> so that it knows what " -"packages are available. This is done with <tt>apt-get update</tt>. For " -"instance," -msgstr "" -"La première action <footnote><p>Si vous utilisez un serveur mandataire " -"(« proxy ») HTTP, vous devez d'abord positionner la variable d'environnement " -"http_proxy, voir sources.list(5)</p></footnote> à effectuer avant d'utiliser " -"<prgn>apt-get</prgn> est de récupérer les listes de paquets depuis les " -"<em>Sources</em> afin que le programme sache quels sont les paquets " -"disponibles. Cela peut être effectué avec la commande <tt>apt-get update</" -"tt>. Par exemple," - -#. type: <example></example> -#: guide.sgml:116 +#. type: Content of: <book><chapter><para> +#: guide.dbk:113 +msgid "" +"<command>apt-get</command> provides a simple way to install packages from " +"the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " +"does not understand .deb files, it works with the package's proper name and " +"can only install .deb archives from a <emphasis>Source</emphasis>." +msgstr "" +"Le programme <command>apt-get</command> offre une méthode simple pour " +"installer des paquets à la ligne de commande. À la différence de " +"<command>dpkg</command>, <command>apt-get</command> ne gère pas directement " +"les fichiers .deb files. Il travaille avec le nom des paquets et ne peut " +"installer les archives .deb que depuis une <emphasis>Source</emphasis>." + +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:119 +msgid "" +"If you are using an http proxy server you must set the http_proxy " +"environment variable first, see sources.list(5)" +msgstr "" +"Si vous utilisez un serveur mandataire (« proxy ») HTTP, vous devez d'abord " +"positionner la variable d'environnement http_proxy, voir sources.list(5)" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:119 +msgid "" +"The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " +"done before using <command>apt-get</command> is to fetch the package lists " +"from the <emphasis>Sources</emphasis> so that it knows what packages are " +"available. This is done with <literal>apt-get update</literal>. For instance," +msgstr "" +"La première action <placeholder type=\"footnote\" id=\"0\"/> à effectuer " +"avant d'utiliser <command>apt-get</command> est de récupérer les listes de " +"paquets depuis les <emphasis>Sources</emphasis> afin que le programme sache " +"quels sont les paquets disponibles. Cela peut être effectué avec la commande " +"<literal>apt-get update</literal>. Par exemple," + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:127 #, no-wrap msgid "" "# 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" +"Building Dependency Tree... Done\n" 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://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" "Lecture des listes de paquets... Fait\n" -"Construction de l'arbre des dépendances... Fait" +"Construction de l'arbre des dépendances... Fait\n" -#. type: <p><taglist> -#: guide.sgml:120 +#. type: Content of: <book><chapter><para> +#: guide.dbk:134 msgid "Once updated there are several commands that can be used:" msgstr "" "Une fois cette mise à jour effectuée, plusieurs commandes peuvent être " "utilisées :" -#. type: <tag></tag> -#: guide.sgml:121 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:138 msgid "upgrade" msgstr "upgrade" -#. type: <p></p> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:141 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 " "upgrade a package that might cause some other package to break. This can be " "used daily to relatively safely upgrade the system. Upgrade will list all of " "the packages that it could not upgrade, this usually means that they depend " -"on new packages or conflict with some other package. <prgn>dselect</prgn> or " -"<tt>apt-get install</tt> can be used to force these packages to install." +"on new packages or conflict with some other package. <command>dselect</" +"command> or <literal>apt-get install</literal> can be used to force these " +"packages to install." msgstr "" "La commande « upgrade » permet de mettre à jour le système de manière non " "invasive. Cette commande ne provoquera jamais l'installation de nouveaux " @@ -8779,17 +8815,17 @@ msgstr "" "pour mettre à jour le système de manière relativement sûre. Lorsqu'elle est " "utilisée, la liste des paquets qui ne peuvent être mis à jour sera affichée. " "Cela est en général du au fait qu'ils dépendent de nouveaux paquets ou " -"qu'ils entrent en conflit avec d'autres paquets. Le programme <prgn>dselect</" -"prgn> ou la commande <tt>apt-get install</tt> peuvet être utilisés pour " -"forcer l'installation de tels paquets." +"qu'ils entrent en conflit avec d'autres paquets. Le programme " +"<command>dselect</command> ou la commande <literal>apt-get install</literal> " +"peuvet être utilisés pour forcer l'installation de tels paquets." -#. type: <tag></tag> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:153 msgid "install" msgstr "install" -#. type: <p></p> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:156 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 " @@ -8809,21 +8845,22 @@ msgstr "" "demander une confirmation si des actions autres que ce qui est demandé à la " "ligne de commande sont nécessaires." -#. type: <tag></tag> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:167 msgid "dist-upgrade" msgstr "dist-upgrade" -#. type: <p></p> -#: guide.sgml:149 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:170 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " "set of packages to install, upgrade and remove to get as much of the system " "to the newest release. In some situations it may be desired to use dist-" "upgrade rather than spend the time manually resolving dependencies in " -"<prgn>dselect</prgn>. Once dist-upgrade has completed then <prgn>dselect</" -"prgn> can be used to install any packages that may have been left out." +"<command>dselect</command>. Once dist-upgrade has completed then " +"<command>dselect</command> can be used to install any packages that may have " +"been left out." msgstr "" "La commande « dist-upgrade » est une commande de mise à jour complète " "d'abord destinés à permettre les mises à jour entre deux versions " @@ -8831,12 +8868,13 @@ msgstr "" "de paquets à installer, mettre à jour ou supprimer est déterminé dans le but " "d'amener une majorité du système vers la nouvelle version. Dans certains " "cas, il peut être judicieux d'utiliser « dist-upgrade » plutôt que de " -"chercher à résoudre manuellement les dépendances avec <prgn>dselect</prgn>. " -"Une fois que « dist-upgrade » a été utilisé, <prgn>dselect</prgn> peut " -"servir à installer les paquets qui auraient pu être laissés de côté." +"chercher à résoudre manuellement les dépendances avec <command>dselect</" +"command>. Une fois que « dist-upgrade » a été utilisé, <command>dselect</" +"command> peut servir à installer les paquets qui auraient pu être laissés de " +"côté." -#. type: <p></p> -#: guide.sgml:152 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:180 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8844,174 +8882,179 @@ msgstr "" "Il est important de regarder de près ce que « dist-upgrade » car ses " "décisions peuvent parfois apparaître surprenantes." -#. type: <p></p> -#: guide.sgml:163 +#. type: Content of: <book><chapter><para> +#: guide.dbk:187 #, fuzzy #| msgid "" -#| "<prgn>apt-get</prgn> has several command line options that are detailed " -#| "in its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -#| "option is <tt>-d</tt> which does not install the fetched files. If the " -#| "system has to download a large number of package it would be undesired to " -#| "start installing them in case something goes wrong. When <tt>-d</tt> is " -#| "used the downloaded archives can be installed by simply running the " -#| "command that caused them to be downloaded again without <tt>-d</tt>." -msgid "" -"<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -"option is <tt>-d</tt> which does not install the fetched files. If the " -"system has to download a large number of package it would be undesired to " -"start installing them in case something goes wrong. When <tt>-d</tt> is used " -"the downloaded archives can be installed by simply running the command that " -"caused them to be downloaded again without <tt>-d</tt>." -msgstr "" -"<prgn>apt-get</prgn> fournit de nombreuses options de ligne de commande qui " -"sont expliquées en détail dans sa page de manuel, <manref section=\"8\" name=" -"\"apt-get\">. Une des plus utiles est l'option <tt>-d</tt> qui récupère sans " -"les installer les fichiers nécessaires. Si le système a besoin de " -"télécharger un grand nombre de paquets, il est par exemple souhaitable de " -"pouvoir simplement les récupérer sans les installer immédiatement, au cas où " -"quelque chose se passe mal. Une fois que <tt>-d</tt> a été utilisé, il est " -"possible d'installer les archives téléchargées en exécutant simplement la " -"commande qui a permis de les récupérer, sans l'option <tt>-d</tt>." - -#. type: <heading></heading> -#: guide.sgml:168 +#| "<command>apt-get</command> has several command line options that are " +#| "detailed in its man page, <manref section=\"8\" name=\"apt-get\">. The " +#| "most useful option is <literal>-d</literal> which does not install the " +#| "fetched files. If the system has to download a large number of package it " +#| "would be undesired to start installing them in case something goes wrong. " +#| "When <literal>-d</literal> is used the downloaded archives can be " +#| "installed by simply running the command that caused them to be downloaded " +#| "again without <literal>-d</literal>." +msgid "" +"<command>apt-get</command> has several command line options that are " +"detailed in its man page, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. The most useful " +"option is <literal>-d</literal> which does not install the fetched files. If " +"the system has to download a large number of package it would be undesired " +"to start installing them in case something goes wrong. When <literal>-d</" +"literal> is used the downloaded archives can be installed by simply running " +"the command that caused them to be downloaded again without <literal>-d</" +"literal>." +msgstr "" +"<command>apt-get</command> fournit de nombreuses options de ligne de " +"commande qui sont expliquées en détail dans sa page de manuel, <manref " +"section=\"8\" name=\"apt-get\">. Une des plus utiles est l'option <literal>-" +"d</literal> qui récupère sans les installer les fichiers nécessaires. Si le " +"système a besoin de télécharger un grand nombre de paquets, il est par " +"exemple souhaitable de pouvoir simplement les récupérer sans les installer " +"immédiatement, au cas où quelque chose se passe mal. Une fois que <literal>-" +"d</literal> a été utilisé, il est possible d'installer les archives " +"téléchargées en exécutant simplement la commande qui a permis de les " +"récupérer, sans l'option <literal>-d</literal>." + +#. type: Content of: <book><chapter><title> +#: guide.dbk:199 msgid "DSelect" msgstr "DSelect" -#. type: <p></p> -#: guide.sgml:173 +#. type: Content of: <book><chapter><para> +#: guide.dbk:201 msgid "" -"The APT <prgn>dselect</prgn> method provides the complete APT system with " -"the <prgn>dselect</prgn> package selection GUI. <prgn>dselect</prgn> is used " -"to select the packages to be installed or removed and APT actually installs " -"them." +"The APT <command>dselect</command> method provides the complete APT system " +"with the <command>dselect</command> package selection GUI. <command>dselect</" +"command> is used to select the packages to be installed or removed and APT " +"actually installs them." msgstr "" -"La méthode APT de <prgn>dselect</prgn> permet d'utiliser le système APT dans " -"son ensemble depuis l'interface graphique de gestion des paquets " -"<prgn>dselect</prgn>. L'interface est alors utilisée pour choisir les " +"La méthode APT de <command>dselect</command> permet d'utiliser le système " +"APT dans son ensemble depuis l'interface graphique de gestion des paquets " +"<command>dselect</command>. L'interface est alors utilisée pour choisir les " "paquets à installer ou supprimer et c'est APT qui effectue les opérations " "individuelles d'installation ou suppression." -#. type: <p></p> -#: guide.sgml:184 +#. type: Content of: <book><chapter><para> +#: guide.dbk:207 msgid "" -"To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " -"and then choose the APT method. You will be prompted for a set of " -"<em>Sources</em> which are places to fetch archives from. These can be " -"remote Internet sites, local Debian mirrors or CD-ROMs. Each source can " -"provide a fragment of the total Debian archive, APT will automatically " +"To enable the APT method you need to select [A]ccess in <command>dselect</" +"command> and then choose the APT method. You will be prompted for a set of " +"<emphasis>Sources</emphasis> which are places to fetch archives from. These " +"can be remote Internet sites, local Debian mirrors or CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet." msgstr "" "Pour activer la méthode APT, il est nécessaire de choisir [A]ccéder dans " -"<prgn>dselect</prgn> puis utiliser le choix permettant d'activer APT. Des " -"<em>Sources</em> d'installation seront demandées, qui sont les emplacements " -"d'où les paquets seront récupérés. Cela peut être des sites Internet " -"distants, des miroirs locaux ou des CD. Chaque source peut fournir un sous-" -"ensemble de l'archive complète Debian. APT les combinera automatiquement " -"pour créer un jeu complet de paquets. Avec des supports de type CD, il est " -"conseillé de les indiquer en premier puis de les compléter avec un miroir " -"distant qui permettra d'obtenir les versions les plus à jour s'il y en a. " -"APT utilisera alors les paquets disponibles sur les CD avant de les " -"télécharger via l'Internet." - -#. type: <example></example> -#: guide.sgml:198 +"<command>dselect</command> puis utiliser le choix permettant d'activer APT. " +"Des <emphasis>Sources</emphasis> d'installation seront demandées, qui sont " +"les emplacements d'où les paquets seront récupérés. Cela peut être des sites " +"Internet distants, des miroirs locaux ou des CD. Chaque source peut fournir " +"un sous-ensemble de l'archive complète Debian. APT les combinera " +"automatiquement pour créer un jeu complet de paquets. Avec des supports de " +"type CD, il est conseillé de les indiquer en premier puis de les compléter " +"avec un miroir distant qui permettra d'obtenir les versions les plus à jour " +"s'il y en a. APT utilisera alors les paquets disponibles sur les CD avant de " +"les télécharger via l'Internet." + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:218 #, no-wrap msgid "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" msgstr "" " Réglage de a liste des emplacements sources de distribution\n" -"\t \n" +"\n" " Veuillez indiquer l'URL de base de la distribution Debian.\n" " Les schémas d'accès connus sont : http file\n" -"\t \n" +"\n" " Exemple:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" -#. type: <p></p> -#: guide.sgml:205 +#. type: Content of: <book><chapter><para> +#: guide.dbk:232 msgid "" -"The <em>Sources</em> setup starts by asking for the base of the Debian " -"archive, defaulting to a HTTP mirror. Next it asks for the distribution to " -"get." +"The <emphasis>Sources</emphasis> 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 configuration des <em>Sources</em> débute par l'indication de la base de " -"l'archive Debian, par défaut un miroir HTTP. Puis la distribution est " -"demandée." +"La configuration des <emphasis>Sources</emphasis> débute par l'indication de " +"la base de l'archive Debian, par défaut un miroir HTTP. Puis la distribution " +"est demandée." -#. type: <example></example> -#: guide.sgml:212 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:237 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" +"\n" +" Distribution [stable]:\n" msgstr "" " Veuillez indiquer le nom de la distribution à utiliser ou\n" " le chemin d'accès au fichier des paquets, terminé par un /.\n" " Les noms de distribution sont en général de la forme suivante :\n" " stable unstable testing non-US\n" -" \n" -" Distribution [stable] :" +"\n" +" Distribution [stable] :\n" -#. type: <p></p> -#: guide.sgml:222 +#. type: Content of: <book><chapter><para> +#: guide.dbk:244 msgid "" -"The distribution refers to the Debian version in the archive, <em>stable</" -"em> refers to the latest released version and <em>unstable</em> refers to " -"the developmental version. <em>non-US</em> is only available on some mirrors " -"and refers to packages that contain encryption technology or other things " -"that cannot be exported from the United States. Importing these packages " -"into the US is legal however." +"The distribution refers to the Debian version in the archive, " +"<emphasis>stable</emphasis> refers to the latest released version and " +"<emphasis>unstable</emphasis> refers to the developmental version. " +"<emphasis>non-US</emphasis> is only available on some mirrors and refers to " +"packages that contain encryption technology or other things that cannot be " +"exported from the United States. Importing these packages into the US is " +"legal however." msgstr "" "La distribution fait référence à la version de Debian dans l'archive. " -"<em>stable</em> est la dernière version publiée et <em>unstable</em> la " -"version en développement. <em>non-US</em> n'est disponible que sur certains " -"miroirs et fait référence à des paquets contenant des technologies de " -"chiffrement et d'autres élements dont l'exportation est interdite depuis les " -"États-Unis d'Amérique. Il est toutefois autorisé de les y importer. [Note du " -"traducteur : à la date de cette traduction, 2010, cette notion est " -"totalement obsolète]." - -#. type: <example></example> -#: guide.sgml:228 +"<emphasis>stable</emphasis> est la dernière version publiée et " +"<emphasis>unstable</emphasis> la version en développement. <emphasis>non-US</" +"emphasis> n'est disponible que sur certains miroirs et fait référence à des " +"paquets contenant des technologies de chiffrement et d'autres élements dont " +"l'exportation est interdite depuis les États-Unis d'Amérique. Il est " +"toutefois autorisé de les y importer. [Note du traducteur : à la date de " +"cette traduction, 2010, cette notion est totalement obsolète]." + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:253 #, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" msgstr "" " Veuillez indiquer les composants à utiliser\n" " Les composants sont en général de la forme suivante :\n" " main contrib non-free\n" -" \n" -" Composants [main contrib non-free] :" +"\n" +" Composants [main contrib non-free] :\n" -#. type: <p></p> -#: guide.sgml:236 +#. type: Content of: <book><chapter><para> +#: guide.dbk:259 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 " @@ -9025,8 +9068,8 @@ msgstr "" "Debian (DFSG) alors que contrib et non-free correspondent à des éléments qui " "comprennent des restrictions de distribution ou d'utilisation." -#. type: <p></p> -#: guide.sgml:240 +#. type: Content of: <book><chapter><para> +#: guide.dbk:265 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -9035,24 +9078,24 @@ msgstr "" "configuration continuera à les demander tant que vous n'indiquerez pas que " "le processus est terminé." -#. type: <p></p> -#: guide.sgml:247 +#. type: Content of: <book><chapter><para> +#: guide.dbk:269 msgid "" -"Before starting to use <prgn>dselect</prgn> it is necessary to update the " -"available list by selecting [U]pdate from the menu. This is a superset of " -"<tt>apt-get update</tt> that makes the fetched information available to " -"<prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get update</" -"tt> has been run before." +"Before starting to use <command>dselect</command> it is necessary to update " +"the available list by selecting [U]pdate from the menu. This is a superset " +"of <literal>apt-get update</literal> that makes the fetched information " +"available to <command>dselect</command>. [U]pdate must be performed even if " +"<literal>apt-get update</literal> has been run before." msgstr "" -"Avant d'utiliser <prgn>dselect</prgn>, il est nécessaire de mettre à jour la " -"liste de ce qui est disponible en choisissant « [M]ise à jour » depuis le " -"menu. Cette action exécutera la commande « apt-get update », ce qui rendra " -"les informations récupérées disponibles pour <prgn>dselect</prgn>. Elle doit " -"être utilisée même si la commande « apt-get » a déjà été utilisée sur ce " -"système." +"Avant d'utiliser <command>dselect</command>, il est nécessaire de mettre à " +"jour la liste de ce qui est disponible en choisissant « [M]ise à jour » " +"depuis le menu. Cette action exécutera la commande « apt-get update », ce " +"qui rendra les informations récupérées disponibles pour <command>dselect</" +"command>. Elle doit être utilisée même si la commande « apt-get » a déjà été " +"utilisée sur ce système." -#. type: <p></p> -#: guide.sgml:253 +#. type: Content of: <book><chapter><para> +#: guide.dbk:276 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 " @@ -9065,77 +9108,84 @@ msgstr "" "« [C]onfigurer » et « [R]etirer » ne sont pas utilisées, car « [I]nstaller » " "fait l'ensemble des opérations." -#. type: <p></p> -#: guide.sgml:258 +#. type: Content of: <book><chapter><para> +#: guide.dbk:282 msgid "" "By default APT will automatically remove the package (.deb) files once they " -"have been successfully installed. To change this behavior place <tt>Dselect::" -"clean \"prompt\";</tt> in /etc/apt/apt.conf." +"have been successfully installed. To change this behavior place " +"<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" "Par défait, APT supprimera automatiquement les fichiers des paquets " "(fichiers .deb) une fois qu'ils ont été installés correctement. Pour " -"modifier ce comportement, vous pouvez utiliser <tt>Dselect::clean \"prompt\";" -"</tt> dans /etc/apt/apt.conf." +"modifier ce comportement, vous pouvez utiliser <literal>Dselect::clean " +"\"prompt\";</literal> dans /etc/apt/apt.conf." -#. type: <heading></heading> -#: guide.sgml:264 +#. type: Content of: <book><chapter><title> +#: guide.dbk:288 msgid "The Interface" msgstr "L'interface" -#. type: <p></p> -#: guide.sgml:278 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:292 +msgid "" +"The <command>dselect</command> method actually is a set of wrapper scripts " +"to <command>apt-get</command>. The method actually provides more " +"functionality than is present in <command>apt-get</command> alone." +msgstr "" +"La méthode <command>dselect</command> consiste en fait en un jeu de scripts " +"qui encapsulent <command>apt-get</command>. Cela approte des fonctionnalités " +"supplémentaires à celles d'<command>apt-get</command> utilisé isolément." + +#. type: Content of: <book><chapter><para> +#: guide.dbk:290 msgid "" -"Both that APT <prgn>dselect</prgn> method and <prgn>apt-get</prgn> share the " -"same interface. It is a simple system that generally tells you what it will " -"do and then goes and does it. <footnote><p>The <prgn>dselect</prgn> method " -"actually is a set of wrapper scripts to <prgn>apt-get</prgn>. The method " -"actually provides more functionality than is present in <prgn>apt-get</prgn> " -"alone.</p></footnote> After printing out a summary of what will happen APT " +"Both that APT <command>dselect</command> method and <command>apt-get</" +"command> share the same interface. It is a simple system that generally " +"tells you what it will do and then goes and does it. <placeholder type=" +"\"footnote\" id=\"0\"/> After printing out a summary of what will happen APT " "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 "" -"La méthode APT de <prgn>dselect</prgn> et le programme <prgn>apt-get</prgn> " -"utilisent la même interface. Elle consiste en un système simple qui indique " -"les opérations qui seront effectuées puis les réalise.<footnote><p>La " -"méthode <prgn>dselect</prgn> consiste en fait en un jeu de scripts qui " -"encapsulent <prgn>apt-get</prgn>. Cela approte des fonctionnalités " -"supplémentaires à celles d'<prgn>apt-get</prgn> utilisé isolément.</p></" -"footnote> Après avoir indiqué un résumé des opérations qui seront " -"effectuées, APT donnera un certain nombre d'informations permettant " -"d'estimer sa progression, tout au long des actions qu'il effectue. " - -#. type: <heading></heading> -#: guide.sgml:280 +"La méthode APT de <command>dselect</command> et le programme <command>apt-" +"get</command> utilisent la même interface. Elle consiste en un système " +"simple qui indique les opérations qui seront effectuées puis les réalise." +"<placeholder type=\"footnote\" id=\"0\"/> Après avoir indiqué un résumé des " +"opérations qui seront effectuées, APT donnera un certain nombre " +"d'informations permettant d'estimer sa progression, tout au long des actions " +"qu'il effectue. " + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:301 msgid "Startup" msgstr "Démarrage" -#. type: <p></p> -#: guide.sgml:284 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:303 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 <tt>apt-get check</" -"tt>." +"At any time these operations can be performed by running <literal>apt-get " +"check</literal>." msgstr "" "Avant toute opération autre qu'une mise à jour, APT effectue un certain " "nombre d'actions pour préparer ses mécaismes internes de fonctionnement. Il " "vérifie également l'état du système. Ces opérations peuvent être effectuées " -"isolément avec la commande <tt>apt-get check</tt>." +"isolément avec la commande <literal>apt-get check</literal>." -#. type: <example></example> -#: guide.sgml:289 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:309 #, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get check\n" "Lecture de la liste des paquets... Fait\n" -"Construction de l'arbre des dépendances... Fait" +"Construction de l'arbre des dépendances... Fait\n" -#. type: <p></p> -#: guide.sgml:297 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:314 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. " @@ -9148,21 +9198,21 @@ msgstr "" "pas trouvés, ils seront ignorés et une informatique sera affichée quand apt-" "get se terminera." -#. type: <p></p> -#: guide.sgml:303 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:320 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " "package and considers if it is OK. Should this find a problem then a report " -"will be printed out and <prgn>apt-get</prgn> will refuse to run." +"will be printed out and <command>apt-get</command> will refuse to run." msgstr "" "Ensuite, une analyse détaillée des dépendances du système est réalisée. Les " "dépendances de chaque paquet installé ou décompressé sont vérifiées. Si un " -"problème est trouvé, il sera affiché et <prgn>apt-get</prgn> bloquera des " -"opérations ultérieures." +"problème est trouvé, il sera affiché et <command>apt-get</command> bloquera " +"des opérations ultérieures." -#. type: <example></example> -#: guide.sgml:320 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:326 #, no-wrap msgid "" "# apt-get check\n" @@ -9172,33 +9222,33 @@ msgid "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" msgstr "" "# apt-get check\n" "Lecture de la liste des paquets... Fait\n" -"Construction de l'arbre des dépendances.. Fait\n" +"Construction de l'arbre des dépendances... Fait\n" "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes.\n" "Les paquets suivants contiennent des dépendances non satisfaites :\n" " 9fonts: Depends: xlib6g mais il n'est pas installé\n" " uucp: Depends: mailx mais il n'est pas installé\n" -" blast: Depends: xlib6g (>= 3.3-5) mais il n'est pas installé\n" +" blast: Depends: xlib6g (>= 3.3-5) mais il n'est pas installé\n" " adduser: Depends: perl-base mais il n'est pas installé\n" " aumix: Depends: libgpmg1 mais il n'est pas installé\n" " debiandoc-sgml: Depends: sgml-base mais il n'est pas installé\n" -" bash-builtins: Depends: bash (>= 2.01) but 2.0-3 is installed\n" +" bash-builtins: Depends: bash (>= 2.01) but 2.0-3 is installed\n" " cthugha: Depends: svgalibg1 mais il n'est pas installé\n" -" Depends: xlib6g (>= 3.3-5) mais il n'est pas installé\n" -" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)" +" Depends: xlib6g (>= 3.3-5) mais il n'est pas installé\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" -#. type: <p></p> -#: guide.sgml:329 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:343 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 " @@ -9211,89 +9261,97 @@ msgstr "" "paquet dont les dépendances ne sont pas satisfaites, indiquant quel est le " "problème. Une explication simple du problème est donnée." -#. type: <p></p> -#: guide.sgml:337 +#. type: Content of: <book><chapter><section><para><footnote><para> +#: guide.dbk:352 +msgid "" +"APT however considers all known dependencies and attempts to prevent broken " +"packages" +msgstr "" +"Cependant, APT prend en compte les dépendances connues et s'efforce d'éviter " +"que cette situation ne se produise" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:350 msgid "" "There are two ways a system can get into a broken state like this. The first " -"is caused by <prgn>dpkg</prgn> missing some subtle relationships between " -"packages when performing upgrades. <footnote><p>APT however considers all " -"known dependencies and attempts to prevent broken packages</p></footnote>. " -"The second is if a package installation fails during an operation. In this " -"situation a package may have been unpacked without its dependents being " -"installed." +"is caused by <command>dpkg</command> missing some subtle relationships " +"between packages when performing upgrades. <placeholder type=\"footnote\" id=" +"\"0\"/>. The second is if a package installation fails during an operation. " +"In this situation a package may have been unpacked without its dependents " +"being installed." msgstr "" "Il existe deux façons pour le système d'aboutir à cet état. Cela peut " "d'abord être causé par des subtilités de relations entre les paquets que " -"<prgn>dpkg</prgn> aurait manquées lors de mises à jour. " -"<footnote><p>Cependant, APT prend en compte les dépendances connues et " -"s'efforce d'éviter que cette situation ne se produise</p></footnote>. Cela " -"peut également être dû à l'échec antérieur d'une installation de paquet. " -"Dans le cas présent, un paquet a pu être décompressé sans que ses " -"dépendances ne soient satisfaites." +"<command>dpkg</command> aurait manquées lors de mises à jour. <placeholder " +"type=\"footnote\" id=\"0\"/>. Cela peut également être dû à l'échec " +"antérieur d'une installation de paquet. Dans le cas présent, un paquet a pu " +"être décompressé sans que ses dépendances ne soient satisfaites." -#. type: <p></p> -#: guide.sgml:345 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:359 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 " -"supplying the <tt>-f</tt> option to <prgn>apt-get</prgn> will cause APT to " -"deduce a possible solution to the problem and then continue on. The APT " -"<prgn>dselect</prgn> method always supplies the <tt>-f</tt> option to allow " -"for easy continuation of failed maintainer scripts." +"supplying the <literal>-f</literal> option to <command>apt-get</command> " +"will cause APT to deduce a possible solution to the problem and then " +"continue on. The APT <command>dselect</command> method always supplies the " +"<literal>-f</literal> option to allow for easy continuation of failed " +"maintainer scripts." msgstr "" "La seconde situation est moins grave que la première car APT met certaines " "contraintes sur l'ordre d'installation des paquets. Dans les deux cas, " -"l'option <tt>-f</tt> utilisée avec <prgn>apt-get</prgn> conduira APT à " -"rechercher une solution possible puis à continuer. La méthode APT de " -"<prgn>dselect</prgn> utilise toujours cette option <tt>-f</tt> afin de " -"pouvoir poursuivre plus facilement ses opérations si un script de mainteneur " -"échoue de manière inopinée." - -#. type: <p></p> -#: guide.sgml:351 -msgid "" -"However, if the <tt>-f</tt> option is used to correct a seriously broken " -"system caused by the first case then it is possible that it will either fail " -"immediately or the installation sequence will fail. In either case it is " -"necessary to manually use dpkg (possibly with forcing options) to correct " -"the situation enough to allow APT to proceed." -msgstr "" -"Cependant, si l'option <tt>-f</tt> est utilisée pour corriger un système " -"fortement corrompu qui est dans le premier cas, il est possible que " +"l'option <literal>-f</literal> utilisée avec <command>apt-get</command> " +"conduira APT à rechercher une solution possible puis à continuer. La méthode " +"APT de <command>dselect</command> utilise toujours cette option <literal>-f</" +"literal> afin de pouvoir poursuivre plus facilement ses opérations si un " +"script de mainteneur échoue de manière inopinée." + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:368 +msgid "" +"However, if the <literal>-f</literal> option is used to correct a seriously " +"broken system caused by the first case then it is possible that it will " +"either fail immediately or the installation sequence will fail. In either " +"case it is necessary to manually use dpkg (possibly with forcing options) to " +"correct the situation enough to allow APT to proceed." +msgstr "" +"Cependant, si l'option <literal>-f</literal> est utilisée pour corriger un " +"système fortement corrompu qui est dans le premier cas, il est possible que " "l'opération échoue immédiatement ou au cours des diverses tentatives de " "réparation effectuées. Dans tous les cas, il peut être nécessaire de " "corriger la situation manuellement avec dpkg (éventuellement en utilisant " "des options pour forcer certains opérations) avant de pouvoir utiliser à " "nouveau APT." -#. type: <heading></heading> -#: guide.sgml:356 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:376 msgid "The Status Report" msgstr "Le rapport d'état" -#. type: <p></p> -#: guide.sgml:363 -msgid "" -"Before proceeding <prgn>apt-get</prgn> will present a report on what will " -"happen. Generally the report reflects the type of operation being performed " -"but there are several common elements. In all cases the lists reflect the " -"final state of things, taking into account the <tt>-f</tt> option and any " -"other relevant activities to the command being executed." -msgstr "" -"Avant de démarrer ses actions, <prgn>apt-get</prgn> en affiche un résumé. En " -"général, ce rapport dépend du type d'opération qui est entreprise, mais de " -"nombreux éléments sont communs aux différents types de rapports. Ainsi, dans " -"tous les cas, les listes reflètent l'état final du système, en tenant compte " -"de l'option <tt>-f</tt> et des autres opérations découlant du type de " -"commande utilisée." - -#. type: <heading></heading> -#: guide.sgml:364 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:378 +msgid "" +"Before proceeding <command>apt-get</command> will present a report on what " +"will happen. Generally the report reflects the type of operation being " +"performed but there are several common elements. In all cases the lists " +"reflect the final state of things, taking into account the <literal>-f</" +"literal> option and any other relevant activities to the command being " +"executed." +msgstr "" +"Avant de démarrer ses actions, <command>apt-get</command> en affiche un " +"résumé. En général, ce rapport dépend du type d'opération qui est " +"entreprise, mais de nombreux éléments sont communs aux différents types de " +"rapports. Ainsi, dans tous les cas, les listes reflètent l'état final du " +"système, en tenant compte de l'option <literal>-f</literal> et des autres " +"opérations découlant du type de commande utilisée." + +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:385 msgid "The Extra Package list" msgstr "La liste des paquets supplémentaires" -#. type: <example></example> -#: guide.sgml:372 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:387 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9301,86 +9359,86 @@ msgid "" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" msgstr "" "Les paquets supplémentaires suivants seront installés :\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" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" -#. type: <p></p> -#: guide.sgml:379 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:395 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 <tt>install</tt> command. The listed packages are often the " -"result of an Auto Install." +"generated for an <literal>install</literal> command. The listed packages are " +"often the result of an Auto Install." msgstr "" "La liste des paquets supplémentaires montre tous les paquets installés ou " "mis à jour en plus de ceux indiqués à la ligne de commande. Elle n'apparaît " -"qu'avec la commande <tt>install</tt>. Le plus souvent, les paquets concernés " -"sont le résultat d'une installation automatique." +"qu'avec la commande <literal>install</literal>. Le plus souvent, les paquets " +"concernés sont le résultat d'une installation automatique." -#. type: <heading></heading> -#: guide.sgml:382 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:402 msgid "The Packages to Remove" msgstr "Les paquets à supprimer" -#. type: <example></example> -#: guide.sgml:389 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:404 #, no-wrap msgid "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" msgstr "" "Les paquets suivants seront ENLEVÉS :\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" -" nas xpilot xfig" +" nas xpilot xfig\n" -#. type: <p></p> -#: guide.sgml:399 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:411 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 " "given a careful inspection to ensure nothing important is to be taken off. " -"The <tt>-f</tt> option is especially good at generating packages to remove " -"so extreme care should be used in that case. The list may contain packages " -"that are going to be removed because they are only partially installed, " -"possibly due to an aborted installation." +"The <literal>-f</literal> option is especially good at generating packages " +"to remove so extreme care should be used in that case. The list may contain " +"packages that are going to be removed because they are only partially " +"installed, possibly due to an aborted installation." msgstr "" "La liste des paquets à enlever montre tous les paquets qui seront supprimés " "du système. Elle peut apparaître pour tout type d'opération. Il est " "conseillé de l'inspecter en détail afin de vérifier qu'aucun paquet " -"important ne va être supprimé. L'option <tt>-f</tt> provoque notamment " -"souvent des suppressions de paquets et il est déconseillé d'être " +"important ne va être supprimé. L'option <literal>-f</literal> provoque " +"notamment souvent des suppressions de paquets et il est déconseillé d'être " "particulièrement attentif dans ce genre de cas. La liste peut comporter des " "paquets qui seront supprimés parce qu'ils sont seulement partiellement " "installés, par exemple après l'interruption d'une opération d'installation." -#. type: <heading></heading> -#: guide.sgml:402 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:421 msgid "The New Packages list" msgstr "La liste des nouveaux paquets" -#. type: <example></example> -#: guide.sgml:406 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:423 #, no-wrap msgid "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" msgstr "" "Les NOUVEAUX paquets suivants seront installés :\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" -#. type: <p></p> -#: guide.sgml:411 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:427 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 " @@ -9390,58 +9448,58 @@ msgstr "" "avoir lieu. Les paquets affichés ne sont pas encore présents sur le système " "mais le seront une fois qu'APT aura terminé." -#. type: <heading></heading> -#: guide.sgml:414 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:432 msgid "The Kept Back list" msgstr "La liste des paquets conservés" -#. type: <example></example> -#: guide.sgml:419 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:434 #, 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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" msgstr "" "Les paquets suivants ont été conservés :\n" " compface man-db tetex-base msql libpaper svgalib1\n" -" gs snmp arena lynx xpat2 groff xscreensaver" +" gs snmp arena lynx xpat2 groff xscreensaver\n" -#. type: <p></p> -#: guide.sgml:428 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:439 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 " "or conflict with already installed things. In this case the package will " "appear in the Kept Back list. The best way to convince packages listed there " -"to install is with <tt>apt-get install</tt> or by using <prgn>dselect</prgn> " -"to resolve their problems." +"to install is with <literal>apt-get install</literal> or by using " +"<command>dselect</command> to resolve their problems." msgstr "" "À chaque fois que le système entier est mis à jour, il est possible que de " "nouvelles versions de paquets ne puissent pas être installées car elles ont " "besoins ne nouveaux paquets ou qu'elles entrent en conflit avec des paquets " "existants. Ces paquets apparaîtront alors dans la liste des paquets " "conservés. Le meilleure méthode pour effectivement installer ces paquets est " -"souvent de le faire explicitement avec la commande <tt>apt-get install</tt> " -"ou avec <prgn>dselect</prgn>." +"souvent de le faire explicitement avec la commande <literal>apt-get install</" +"literal> ou avec <command>dselect</command>." -#. type: <heading></heading> -#: guide.sgml:431 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:448 msgid "Held Packages warning" msgstr "L'avertissement pour paquets retenus" -#. type: <example></example> -#: guide.sgml:435 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:450 #, no-wrap msgid "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" msgstr "" "Les paquets retenus suivants seront changés :\n" -" cvs" +" cvs\n" -#. type: <p></p> -#: guide.sgml:441 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:454 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. " @@ -9452,32 +9510,32 @@ msgstr "" "que le paquet retenu va être modifié. Cela ne se produira que lors de " "l'utilisation des commandes dist-upgrade ou install." -#. type: <heading></heading> -#: guide.sgml:444 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:460 msgid "Final summary" msgstr "Résumé final" -#. type: <p></p> -#: guide.sgml:447 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:462 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "Enfin, APT affichera un résumé de toutes les opérations qui prendront place." -#. type: <example></example> -#: guide.sgml:452 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:465 #, 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" "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.\n" -#. type: <p></p> -#: guide.sgml:470 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:470 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 " @@ -9508,8 +9566,8 @@ msgstr "" "opérations. Si de nombreux paquets sont supprimés, cette valeur peut " "représenter l'espace qui est alors libéré." -#. type: <p></p> -#: guide.sgml:473 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:484 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9517,13 +9575,13 @@ msgstr "" "D'autres rapports peuvent être créés avec l'option -u qui affiche les " "paquets à mettre à jour. Il sont analogues aux exemples précédents." -#. type: <heading></heading> -#: guide.sgml:477 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:491 msgid "The Status Display" msgstr "L'affichage d'état" -#. type: <p></p> -#: guide.sgml:481 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:493 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9531,8 +9589,8 @@ msgstr "" "Pendant le téléchargement des fichiers des paquets, APT affiche un certain " "nombre de messages d'avancement." -#. type: <example></example> -#: guide.sgml:490 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:497 #, no-wrap msgid "" "# apt-get update\n" @@ -9541,7 +9599,7 @@ msgid "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" msgstr "" "# apt-get update\n" "Réception de :1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" @@ -9549,71 +9607,73 @@ msgstr "" "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 :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" +"11% [5 testing/non-free `Attente du fichier' 0/32.1k 0%] 2203b/s 1m52s\n" -#. type: <p></p> -#: guide.sgml:500 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:506 msgid "" -"The lines starting with <em>Get</em> are printed out when APT begins to " -"fetch a file while the last line indicates the progress of the download. The " -"first percent value on the progress line indicates the total percent done of " -"all files. Unfortunately since the size of the Package files is unknown " -"<tt>apt-get update</tt> estimates the percent done which causes some " -"inaccuracies." +"The lines starting with <emphasis>Get</emphasis> are printed out when APT " +"begins to fetch a file while the last line indicates the progress of the " +"download. The first percent value on the progress line indicates the total " +"percent done of all files. Unfortunately since the size of the Package files " +"is unknown <literal>apt-get update</literal> estimates the percent done " +"which causes some inaccuracies." msgstr "" "Les lignes qui débutent par « Réception de » sont affichées quand APT " "démarre la récupération d'un fichier alors que la dernière ligne indique la " "progression du téléchargement. La première valeur de pourcentage de la ligne " "est le pourcentage de téléchargement déjà effectué, pour l'ensemble des " "fichiers. Il faut noter que, comme la taille des fichiers de paquets n'est " -"pas connue, <tt>apt-get update</tt> estime le pourcentage effectué ce qui " -"peut conduire à des imprécisions." +"pas connue, <literal>apt-get update</literal> estime le pourcentage effectué " +"ce qui peut conduire à des imprécisions." -#. type: <p></p> -#: guide.sgml:509 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:514 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " "information about what is happening. Sometimes this section will simply read " -"<em>Forking</em> which means the OS is loading the download module. The " -"first word after the [ is the fetch number as shown on the history lines. " -"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." +"<emphasis>Forking</emphasis> which means the OS is loading the download " +"module. The first word after the [ is the fetch number as shown on the " +"history lines. 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 section suivante de la ligne d'état est répétée pour chaque sous-tâche de " "téléchargement. Elle indique l'opération effectuée et d'autres informations " -"utiles sur ce qui est en cours. Cette section indiquera parfois <em>Forking</" -"em> ce qui indique que le système charge le module de téléchargement. Le " -"premier mot après le crochet ouvrant ([) est le numéro d'ordre de " -"téléchargement comme indiqué dans les lignes d'historique. Le mot suivant " -"est le nom court de l'objet téléchargé. Pour les archives, il s'agit du nom " -"du paquet en cours de récupération." +"utiles sur ce qui est en cours. Cette section indiquera parfois " +"<emphasis>Forking</emphasis> ce qui indique que le système charge le module " +"de téléchargement. Le premier mot après le crochet ouvrant ([) est le numéro " +"d'ordre de téléchargement comme indiqué dans les lignes d'historique. Le mot " +"suivant est le nom court de l'objet téléchargé. Pour les archives, il s'agit " +"du nom du paquet en cours de récupération." -#. type: <p></p> -#: guide.sgml:524 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:524 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " -"<em>Connecting</em> to <em>Waiting for file</em> to <em>Downloading</em> or " -"<em>Resuming</em>. The final value is the number of bytes downloaded from " -"the remote site. Once the download begins this is represented as " -"<tt>102/10.2k</tt> indicating that 102 bytes have been fetched and 10.2 " -"kilobytes is expected. The total size is always shown in 4 figure notation " -"to preserve space. After the size display is a percent meter for the file " -"itself. The second last element is the instantaneous average speed. This " -"values is updated every 5 seconds and reflects the rate of data transfer for " -"that period. Finally is shown the estimated transfer time. This is updated " -"regularly and reflects the time to complete everything at the shown transfer " -"rate." +"<emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to " +"<emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final " +"value is the number of bytes downloaded from the remote site. Once the " +"download begins this is represented as <literal>102/10.2k</literal> " +"indicating that 102 bytes have been fetched and 10.2 kilobytes is expected. " +"The total size is always shown in 4 figure notation to preserve space. After " +"the size display is a percent meter for the file itself. The second last " +"element is the instantaneous average speed. This values is updated every 5 " +"seconds and reflects the rate of data transfer for that period. Finally is " +"shown the estimated transfer time. This is updated regularly and reflects " +"the time to complete everything at the shown transfer rate." msgstr "" "À l'intérieur des guillemets, on trouve une information sur la progression " "de la phase de négociation du téléchargement. Usuellement, elle évolue de " -"<em>Connexion</em> à <em>Attente du fichier</em>, puis <em>Téléchargement</" -"em> ou <em>Reprise</em>. La valeur finale est le nombre d'octets téléchargés " -"depuis le site distant. Une fois le téléchargement commencé, cette " -"indication prend la forme <tt>102/10,2ko</tt>, ce qui indique que 102 octets " -"ont été téléchargés et que 10,2 kilo-octets sont attendus. La taille totale " -"est toujours représentées sur 4 digits pour des raisons de place disponible. " +"<emphasis>Connexion</emphasis> à <emphasis>Attente du fichier</emphasis>, " +"puis <emphasis>Téléchargement</emphasis> ou <emphasis>Reprise</emphasis>. La " +"valeur finale est le nombre d'octets téléchargés depuis le site distant. Une " +"fois le téléchargement commencé, cette indication prend la forme " +"<literal>102/10,2ko</literal>, ce qui indique que 102 octets ont été " +"téléchargés et que 10,2 kilo-octets sont attendus. La taille totale est " +"toujours représentées sur 4 digits pour des raisons de place disponible. " "Après cet affichage de taille, se trouve une barre de progression pour le " "téléchargement du fichier lui-même. L'élément suivant est la vitesse " "instantanée de téléchargement. Elle est mise à jour toutes les 5 secondes et " @@ -9622,57 +9682,52 @@ msgstr "" "régulièrement à jour et représete la durée estimée de téléchargement de " "toute ce qui est nécessaire, à la vitesse affichée." -#. type: <p></p> -#: guide.sgml:530 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:539 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 " "is started. Since the status display is constantly updated it is unsuitable " -"for logging to a file, use the <tt>-q</tt> option to remove the status " -"display." +"for logging to a file, use the <literal>-q</literal> option to remove the " +"status display." msgstr "" "La ligne d'état est mise à jour chaque demi-seconde afin de fournir un " "retour régulier sur la progression du téléchargement alors que les lignes " "« Réception de » reculent d'une unité à chaque fois qu'un nouveau fichier " "est démarré. Comme l'état est mis à jour régulièrement, il ne peut pas " "servir pour la journalisation dans un fichier. Il est nécessaire d'utiliser " -"l'option <tt>-q</tt> pour supprimer cet affichage." +"l'option <literal>-q</literal> pour supprimer cet affichage." -#. type: <heading></heading> -#: guide.sgml:535 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:547 msgid "Dpkg" msgstr "Dpkg" -#. type: <p></p> -#: guide.sgml:542 -msgid "" -"APT uses <prgn>dpkg</prgn> for installing the archives and will switch over " -"to the <prgn>dpkg</prgn> interface once downloading is completed. " -"<prgn>dpkg</prgn> will also ask a number of questions as it processes the " -"packages and the packages themselves may also ask several questions. Before " -"each question there is usually a description of what it is asking and the " -"questions are too varied to discuss completely here." -msgstr "" -"APT utilise <prgn>dpkg</prgn> pour installer les archives et bascule vers " -"l'interface de ce programme une fois le téléchargement terminé. <prgn>dpkg</" -"prgn> peut poser un certain nombre de questions pendant le traitement des " -"paquets, qui peuvent eux-même être amener à poser des questions. Chacune de " -"ces questions comporte un description de ce qui est attendu et elles sont " -"trop variables d'un paquet à l'autre pour qu'une description détaillée soit " -"donnée dans ce document." - -#. type: <title> -#: offline.sgml:4 +#. type: Content of:
+#: guide.dbk:549 +msgid "" +"APT uses dpkg for installing the archives and will switch " +"over to the dpkg interface once downloading is completed. " +"dpkg will also ask a number of questions as it processes " +"the packages and the packages themselves may also ask several questions. " +"Before each question there is usually a description of what it is asking and " +"the questions are too varied to discuss completely here." +msgstr "" +"APT utilise dpkg pour installer les archives et bascule " +"vers l'interface de ce programme une fois le téléchargement terminé. " +"dpkg peut poser un certain nombre de questions pendant le " +"traitement des paquets, qui peuvent eux-même être amener à poser des " +"questions. Chacune de ces questions comporte un description de ce qui est " +"attendu et elles sont trop variables d'un paquet à l'autre pour qu'une " +"description détaillée soit donnée dans ce document." + +#. type: Content of: +#: offline.dbk:10 msgid "Using APT Offline" msgstr "Utilisation d'APT hors ligne" -#. type: <version></version> -#: offline.sgml:7 -msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" - -#. type: <abstract></abstract> -#: offline.sgml:12 +#. type: Content of: <book><bookinfo><abstract><para> +#: offline.dbk:24 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9681,23 +9736,25 @@ msgstr "" "réseau, et plus particulièrement une approche « sneaker-net » pour les mises " "à jour." -#. type: <copyrightsummary></copyrightsummary> -#: offline.sgml:16 -msgid "Copyright © Jason Gunthorpe, 1999." -msgstr "Copyright © Jason Gunthorpe, 1999." +#. type: Content of: <book><bookinfo> +#: offline.dbk:29 +msgid "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" -#. type: <heading></heading> -#: offline.sgml:32 +#. type: Content of: <book><chapter><title> +#: offline.dbk:47 msgid "Introduction" msgstr "Introduction" -#. type: <heading></heading> -#: offline.sgml:34 offline.sgml:65 offline.sgml:180 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:49 offline.dbk:79 offline.dbk:191 msgid "Overview" msgstr "Aperçu" -#. type: <p></p> -#: offline.sgml:40 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:51 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9709,8 +9766,8 @@ msgstr "" "est celui d'une machine dotée d'une liaison peu rapide (comme un modem) avec " "une autre possédant une connexion à haut débit mais située à distance." -#. type: <p></p> -#: offline.sgml:51 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:57 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9718,9 +9775,9 @@ msgid "" "to use APT to generate a list of packages that are required and then fetch " "them onto the disc using another machine with good connectivity. It is even " "possible to use another Debian machine with APT or to use a completely " -"different OS and a download tool like wget. Let <em>remote host</em> mean " -"the machine downloading the packages, and <em>target host</em> the one with " -"bad or no connection." +"different OS and a download tool like wget. Let <emphasis>remote host</" +"emphasis> mean the machine downloading the packages, and <emphasis>target " +"host</emphasis> the one with bad or no connection." msgstr "" "Une solution est d'utiliser un support amovible de grande taille tel qu'un " "disque Zip ou un disque Superdisk (NdT : ce document est daté..:-)). Bien " @@ -9731,11 +9788,12 @@ msgstr "" "récupérer avec une machine disposant d'une bonne connectivité. Il est même " "possible d'utiliser soit une autre machine Debian avec APT soit un autre " "système d'exploitation et un outil de téléchargement tel que wget. Dans ce " -"qui suit, <em>machine distante</em> désignera la machine qui télécharge les " -"paquets et <em>machine cible</em>, celle qui a une connectivité limitée." +"qui suit, <emphasis>machine distante</emphasis> désignera la machine qui " +"télécharge les paquets et <emphasis>machine cible</emphasis>, celle qui a " +"une connectivité limitée." -#. type: <p></p> -#: offline.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:68 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9748,13 +9806,13 @@ msgstr "" "système de fichier autorisant les noms longs, par exemple ext2, fat32 ou " "vfat." -#. type: <heading></heading> -#: offline.sgml:63 +#. type: Content of: <book><chapter><title> +#: offline.dbk:77 msgid "Using APT on both machines" msgstr "Utilisation d'APT sur les deux machines" -#. type: <p><example> -#: offline.sgml:71 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:81 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9767,8 +9825,8 @@ msgstr "" "et choisir ceux à télécharger. La structure des répertoires du disque " "devraient ressembler à :" -#. type: <example></example> -#: offline.sgml:80 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:87 #, no-wrap msgid "" " /disc/\n" @@ -9778,7 +9836,7 @@ msgid "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" msgstr "" " /disc/\n" " archives/\n" @@ -9787,42 +9845,44 @@ msgstr "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" -#. type: <heading></heading> -#: offline.sgml:88 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:98 msgid "The configuration file" msgstr "Le fichier de configuration" -#. type: <p></p> -#: offline.sgml:96 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:100 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " "contain the proper sites that you wish to use from the remote machine, and " -"the status file should be a copy of <em>/var/lib/dpkg/status</em> from the " -"<em>target host</em>. Please note, if you are using a local archive you must " -"use copy URIs, the syntax is identical to file URIs." +"the status file should be a copy of <emphasis>/var/lib/dpkg/status</" +"emphasis> from the <emphasis>target host</emphasis>. Please note, if you are " +"using a local archive you must use copy URIs, the syntax is identical to " +"file URIs." msgstr "" "Le fichier de configuration indique à APT où conserver ses fichiers sur le " "disque et d'utiliser également les fichiers de configuration du disque. Le " "fichier sources.list devrait référencer les sites que vous souhaitez " "utiliser depuis la machine distante et le fichier d'état doit être une copie " -"de <em>/var/lib/dpkg/status</em> de l'<em>ordinateur cible</em>. Veuillez " -"noter que si sous utilisez une archive locale, les URI doivent en être " -"copiés. La syntaxe est la même que celle des URI fichiers." +"de <emphasis>/var/lib/dpkg/status</emphasis> de l'<emphasis>ordinateur " +"cible</emphasis>. Veuillez noter que si sous utilisez une archive locale, " +"les URI doivent en être copiés. La syntaxe est la même que celle des URI " +"fichiers." -#. type: <p><example> -#: offline.sgml:100 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:108 msgid "" -"<em>apt.conf</em> must contain the necessary information to make APT use the " -"disc:" +"<emphasis>apt.conf</emphasis> must contain the necessary information to make " +"APT use the disc:" msgstr "" -"<em>apt.conf</em> doit avoir les informations nécessaires pour qu'APT " -"utilise le disque.disc:" +"<emphasis>apt.conf</emphasis> doit avoir les informations nécessaires pour " +"qu'APT utilise le disque.disc:" -#. type: <example></example> -#: offline.sgml:124 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:112 #, no-wrap msgid "" " APT\n" @@ -9830,10 +9890,10 @@ msgid "" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -9844,20 +9904,20 @@ msgid "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" msgstr "" " APT\n" " {\n" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -9868,68 +9928,71 @@ msgstr "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" -#. type: </example></p> -#: offline.sgml:129 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:137 msgid "" "More details can be seen by examining the apt.conf man page and the sample " -"configuration file in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis>." msgstr "" "Plus d'informations peuvent être trouvées dans la page de manuel du fichier " "apt.conf et dans l'exemple de fichier de configuration que l'on peut trouver " -"dans <em>/usr/share/doc/apt/examples/apt.conf</em>." +"dans <emphasis>/usr/share/doc/apt/examples/apt.conf</emphasis>." -#. type: <p><example> -#: offline.sgml:136 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:142 msgid "" -"On the target machine the first thing to do is mount the disc and copy <em>/" -"var/lib/dpkg/status</em> to it. You will also need to create the directories " -"outlined in the Overview, <em>archives/partial/</em> and <em>lists/partial/</" -"em>. Then take the disc to the remote machine and configure the sources." -"list. On the remote machine execute the following:" +"On the target machine the first thing to do is mount the disc and copy " +"<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " +"create the directories outlined in the Overview, <emphasis>archives/partial/" +"</emphasis> and <emphasis>lists/partial/</emphasis>. Then take the disc to " +"the remote machine and configure the sources.list. On the remote machine " +"execute the following:" msgstr "" "Sur la machine cible, il est d'abord nécessaire de monter le disque et y " -"copier le fichier <em>/var/lib/dpkg/status</em>. Il sera aussi nécessaire de " -"créer les répertoires dans l'aperçu (Overview), <em>archives/partial/</em> " -"and <em>lists/partial/</em>. Connecter ensuite le disque à la machine " -"distante et configurer le fichier sources.list. Sur la machine distante, " -"exécuter la séquence de commandes suivante :" - -#. type: <example></example> -#: offline.sgml:142 +"copier le fichier <emphasis>/var/lib/dpkg/status</emphasis>. Il sera aussi " +"nécessaire de créer les répertoires dans l'aperçu (Overview), " +"<emphasis>archives/partial/</emphasis> and <emphasis>lists/partial/</" +"emphasis>. Connecter ensuite le disque à la machine distante et configurer " +"le fichier sources.list. Sur la machine distante, exécuter la séquence de " +"commandes suivante :" + +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:151 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT fetches the package files ]\n" " # apt-get dist-upgrade\n" -" [ APT fetches all the packages needed to upgrade the target machine ]" +" [ APT fetches all the packages needed to upgrade the target machine ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # 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 ]\n" -#. type: </example></p> -#: offline.sgml:149 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:158 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " -"such as <em>dselect</em>. However this presents a problem in communicating " -"your selections back to the local computer." +"such as <emphasis>dselect</emphasis>. However this presents a problem in " +"communicating your selections back to the local computer." msgstr "" "La commande dist-upgrade peut être remplacée par toute autres commande " "usuelle d'APT, notamment dselect-upgrade. Il est même possible d'utiliser " -"une interface comme <em>dselect</em>. Cependant, cela complique la " -"communication des choix vers l'ordinateur local." +"une interface comme <emphasis>dselect</emphasis>. Cependant, cela complique " +"la communication des choix vers l'ordinateur local." -#. type: <p><example> -#: offline.sgml:153 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:164 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9938,24 +10001,24 @@ msgstr "" "archives nécessaires pour mettr eà jour la machine cible. Il est alors " "possible d'y ramener le disque et exécuter :" -#. type: <example></example> -#: offline.sgml:159 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:168 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generates a local copy of the cache files ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Or any other APT command ]" +" [ Or any other APT command ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT crée la copie locale des fichiers de cache ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Ou toute autre commande APT ]" +" [ Ou toute autre commande APT ]\n" -#. type: <p></p> -#: offline.sgml:165 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:175 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -9963,8 +10026,8 @@ msgstr "" "Pour un fonctionnement correct, il est indispensable de ré-indiquer que le " "fichier d'état est le fichier local. Cela est très important." -#. type: <p></p> -#: offline.sgml:172 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:179 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -9979,25 +10042,25 @@ msgstr "" "possible. NE COPIEZ PAS le fichier d'état si dpkg ou APT ont été exécutés " "dans l'intervalle." -#. type: <heading></heading> -#: offline.sgml:178 +#. type: Content of: <book><chapter><title> +#: offline.dbk:189 msgid "Using APT and wget" msgstr "Utilisation d'APT et wget" -#. type: <p></p> -#: offline.sgml:185 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:193 msgid "" -"<em>wget</em> is a popular and portable download tool that can run on nearly " -"any machine. Unlike the method above this requires that the Debian machine " -"already has a list of available packages." +"<emphasis>wget</emphasis> is a popular and portable download tool that can " +"run on nearly any machine. Unlike the method above this requires that the " +"Debian machine already has a list of available packages." msgstr "" -"<em>wget</em> est un outil classique de téléchargement qui peut être exécuté " -"sur à peu près tout type de machine. À la différence de la méthode " -"précédente, cela impose que la machine Debian a déjà une liste des paquets " -"disponibles." +"<emphasis>wget</emphasis> est un outil classique de téléchargement qui peut " +"être exécuté sur à peu près tout type de machine. À la différence de la " +"méthode précédente, cela impose que la machine Debian a déjà une liste des " +"paquets disponibles." -#. type: <p></p> -#: offline.sgml:190 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:198 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -10009,13 +10072,13 @@ msgstr "" "l'option --print-uris d'apt-get puis de la préparation d'un script wget " "permettant de récupérer les paquets/" -#. type: <heading></heading> -#: offline.sgml:196 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:204 msgid "Operation" msgstr "Fonctionnement" -#. type: <p><example> -#: offline.sgml:200 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:206 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -10024,22 +10087,22 @@ msgstr "" "spécifique n'est nécessaire. Seules les commandes standard d'APT seront " "utilisées pour créer la liste de ficheirs." -#. type: <example></example> -#: offline.sgml:205 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:210 #, no-wrap msgid "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" " # apt-get dist-upgrade \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" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" -#. type: </example></p> -#: offline.sgml:210 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:216 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -10047,8 +10110,8 @@ msgstr "" "Toute autre commande que dist-upgrade peut être utilisée, y compris dselect-" "upgrade." -#. type: <p></p> -#: offline.sgml:216 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:220 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -10060,25 +10123,25 @@ msgstr "" "exécuté depuis le point de montage du disque afin que les fichiers soient " "écrits sur le disque." -#. type: <p><example> -#: offline.sgml:219 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:226 msgid "The remote machine would do something like" msgstr "Sur la machine distante, il faudra alors exécuter l'équivalent de :" -#. type: <example></example> -#: offline.sgml:223 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:229 #, no-wrap msgid "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" msgstr "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ attendre.. ]" +" [ attendre.. ]\n" -#. type: </example><example> -#: offline.sgml:228 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:234 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10086,14 +10149,14 @@ msgstr "" "Une fois les fichiers téléchargés et le disque reconnecté à la machine " "Debian, l'installation peut se poursuivre avec :" -#. type: <example></example> -#: offline.sgml:230 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:238 #, no-wrap -msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" +msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" +msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" -#. type: </example></p> -#: offline.sgml:234 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." msgstr "Cette commande utilisera les fichiers récupérés sur le disque." diff --git a/doc/po/it.po b/doc/po/it.po index c5ef090ff..e60dd79c1 100644 --- a/doc/po/it.po +++ b/doc/po/it.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-05-05 16:26+0200\n" -"PO-Revision-Date: 2014-04-01 14:00+0200\n" +"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"PO-Revision-Date: 2014-07-04 00:45+0200\n" "Last-Translator: Beatrice Torracca <beatricet@libero.it>\n" "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" "Language: it\n" @@ -874,7 +874,7 @@ msgstr "la riga <literal>Archive:</literal> o <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 #: apt-ftparchive.1.xml:609 msgid "See Also" @@ -1825,7 +1825,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 +#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 msgid "Files" msgstr "File" @@ -3033,10 +3033,10 @@ msgstr "" #: apt-secure.8.xml:195 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" msgstr "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:199 @@ -4593,15 +4593,27 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:607 +#, fuzzy +#| msgid "" +#| "<literal>Dir::Cache</literal> contains locations pertaining to local " +#| "cache information, such as the two package caches <literal>srcpkgcache</" +#| "literal> and <literal>pkgcache</literal> as well as the location to place " +#| "downloaded archives, <literal>Dir::Cache::archives</literal>. Generation " +#| "of caches can be turned off by setting their names to the empty string. " +#| "This will slow down startup but save disk space. It is probably " +#| "preferable to turn off the pkgcache rather than the srcpkgcache. Like " +#| "<literal>Dir::State</literal> the default directory is contained in " +#| "<literal>Dir::Cache</literal>" msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " "and <literal>pkgcache</literal> as well as the location to place downloaded " "archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " -"be turned off by setting their names to the empty string. This will slow " +"be turned off by setting <literal>pkgcache</literal> or " +"<literal>srcpkgcache</literal> to <literal>\"\"</literal>. This will slow " "down startup but save disk space. It is probably preferable to turn off the " -"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " -"default directory is contained in <literal>Dir::Cache</literal>" +"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 " @@ -4614,7 +4626,7 @@ msgstr "" "la directory predefinita è contenuta in <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:617 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4629,7 +4641,7 @@ msgstr "" "configurazione specificato da <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:622 +#: apt.conf.5.xml:623 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4640,7 +4652,7 @@ msgstr "" "termine viene caricato il file di configurazione principale." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:627 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4657,7 +4669,7 @@ msgstr "" "specificano la posizione dei rispettivi programmi." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:634 +#: apt.conf.5.xml:635 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4678,7 +4690,7 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:648 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4696,12 +4708,12 @@ msgstr "" "questi modelli possono usare una sintassi con espressioni regolari." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:657 msgid "APT in DSelect" msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:659 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4712,7 +4724,7 @@ msgstr "" "sezione <literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:664 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4734,7 +4746,7 @@ msgstr "" "scaricare i nuovi pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:677 +#: apt.conf.5.xml:678 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4744,7 +4756,7 @@ msgstr "" "installazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:683 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4754,7 +4766,7 @@ msgstr "" "aggiornamento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:688 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4764,12 +4776,12 @@ msgstr "" "solo in caso di errore." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:693 +#: apt.conf.5.xml:694 msgid "How APT calls &dpkg;" msgstr "Come APT invoca &dpkg;" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:695 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4778,7 +4790,7 @@ msgstr "" "&dpkg;; sono nella sezione <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:700 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4789,7 +4801,7 @@ msgstr "" "passata a &dpkg; come un singolo argomento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:705 +#: apt.conf.5.xml:706 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4802,7 +4814,7 @@ msgstr "" "bin/sh</filename>; se qualcuno dei comandi fallisce APT terminerà annullando." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:712 +#: apt.conf.5.xml:713 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4820,7 +4832,7 @@ msgstr "" "lo standard input." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:719 +#: apt.conf.5.xml:720 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4834,7 +4846,7 @@ msgstr "" "versione di cui viene fatto il dump." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:724 +#: apt.conf.5.xml:725 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4851,7 +4863,7 @@ msgstr "" "l'informazione nella versione più alta per cui ha il supporto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:731 +#: apt.conf.5.xml:732 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4869,7 +4881,7 @@ msgstr "" "file usato per conferma." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:742 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4878,7 +4890,7 @@ msgstr "" "valore predefinito è <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:746 +#: apt.conf.5.xml:747 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4888,12 +4900,12 @@ msgstr "" "binari." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:751 +#: apt.conf.5.xml:752 msgid "dpkg trigger usage (and related options)" msgstr "Uso dei trigger di dpkg (e relative opzioni)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:753 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4921,7 +4933,7 @@ msgstr "" "pacchetti." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:767 +#: apt.conf.5.xml:768 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4935,7 +4947,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:762 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4959,7 +4971,7 @@ msgstr "" "\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:774 +#: apt.conf.5.xml:775 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4981,7 +4993,7 @@ msgstr "" "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:782 +#: apt.conf.5.xml:783 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -5011,7 +5023,7 @@ msgstr "" "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:797 +#: apt.conf.5.xml:798 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5029,7 +5041,7 @@ msgstr "" "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:804 +#: apt.conf.5.xml:805 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5045,7 +5057,7 @@ msgstr "" "necessari per configurare il pacchetto in questione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:818 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5063,7 +5075,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:810 +#: apt.conf.5.xml:811 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5088,12 +5100,12 @@ msgstr "" "con i loro valori predefiniti. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:831 msgid "Periodic and Archives options" msgstr "Opzioni Periodic e Archives" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:832 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5107,12 +5119,12 @@ msgstr "" "all'inizio dello script." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:839 +#: apt.conf.5.xml:840 msgid "Debug options" msgstr "Opzioni di debug" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:841 +#: apt.conf.5.xml:842 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5130,7 +5142,7 @@ msgstr "" "esserlo:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:852 +#: apt.conf.5.xml:853 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5141,7 +5153,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:861 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5152,7 +5164,7 @@ msgstr "" "install</literal>) come utente non root." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:870 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5164,7 +5176,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:878 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5173,37 +5185,37 @@ msgstr "" "negli ID dei CD-ROM." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:888 msgid "A full list of debugging options to apt follows." msgstr "Segue un elenco completo delle opzioni di debug per apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:896 +#: apt.conf.5.xml:897 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:907 +#: apt.conf.5.xml:908 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:918 +#: apt.conf.5.xml:919 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:929 +#: apt.conf.5.xml:930 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:940 +#: apt.conf.5.xml:941 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5212,7 +5224,7 @@ msgstr "" "usando <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:951 +#: apt.conf.5.xml:952 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5221,14 +5233,14 @@ msgstr "" "pacchetti memorizzati su CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:961 +#: apt.conf.5.xml:962 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:971 +#: apt.conf.5.xml:972 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5237,7 +5249,7 @@ msgstr "" "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:981 +#: apt.conf.5.xml:982 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5248,7 +5260,7 @@ msgstr "" "system del CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:992 +#: apt.conf.5.xml:993 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." @@ -5258,14 +5270,14 @@ msgstr "" "contemporaneamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1004 +#: apt.conf.5.xml:1005 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:1014 +#: apt.conf.5.xml:1015 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5274,7 +5286,7 @@ msgstr "" "codici di controllo e delle firme di cifratura dei file scaricati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1024 +#: apt.conf.5.xml:1025 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5284,7 +5296,7 @@ msgstr "" "diff." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1036 +#: apt.conf.5.xml:1037 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5294,7 +5306,7 @@ msgstr "" "invece degli indici completi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1047 +#: apt.conf.5.xml:1048 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5302,7 +5314,7 @@ msgstr "" "realmente gli scaricamenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1058 +#: apt.conf.5.xml:1059 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5311,7 +5323,7 @@ msgstr "" "installato dei pacchetti e alla rimozione dei pacchetti non utilizzati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1068 +#: apt.conf.5.xml:1069 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5327,7 +5339,7 @@ msgstr "" "pkgProblemResolver</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1082 +#: apt.conf.5.xml:1083 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5359,7 +5371,7 @@ msgstr "" "sezione in cui compare il pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1103 +#: apt.conf.5.xml:1104 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5368,7 +5380,7 @@ msgstr "" "gli argomenti separati da un singolo carattere di spazio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1114 +#: apt.conf.5.xml:1115 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5377,7 +5389,7 @@ msgstr "" "di stato ed ogni errore incontrato durante la sua analisi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1125 +#: apt.conf.5.xml:1126 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5386,7 +5398,7 @@ msgstr "" "literal> deve passare i pacchetti a &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1137 +#: apt.conf.5.xml:1138 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5394,12 +5406,12 @@ msgstr "" "nell'invocazione di &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1148 +#: apt.conf.5.xml:1149 msgid "Output the priority of each package list on startup." 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:1158 +#: apt.conf.5.xml:1159 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5409,7 +5421,7 @@ msgstr "" "dipendenze)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1169 +#: apt.conf.5.xml:1170 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5420,7 +5432,7 @@ msgstr "" "la stessa descritta in <literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1181 +#: apt.conf.5.xml:1182 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5429,7 +5441,7 @@ msgstr "" "filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1191 +#: apt.conf.5.xml:1192 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5437,13 +5449,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Esempi" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1216 +#: apt.conf.5.xml:1217 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5453,7 +5465,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1228 +#: apt.conf.5.xml:1229 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -8479,36 +8491,53 @@ msgstr "" "<command>apt-ftparchive</command> restituisce zero in caso di funzionamento " "normale e il valore decimale 100 in caso di errore." -#. type: <title> -#: guide.sgml:4 +#. type: Attribute 'lang' of: +#: guide.dbk:8 offline.dbk:8 +msgid "en" +msgstr "it" + +#. type: Content of: +#: guide.dbk:10 msgid "APT User's Guide" msgstr "Guida dell'utente di APT" -#. type: <author></author> -#: guide.sgml:6 offline.sgml:6 -msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" -msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#. type: Content of: <book><bookinfo><authorgroup><author><personname> +#: guide.dbk:16 offline.dbk:16 +msgid "Jason Gunthorpe" +msgstr "Jason Gunthorpe" -#. type: <version></version> -#: guide.sgml:7 -msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#. type: Content of: <book><bookinfo><authorgroup><author><email> +#: guide.dbk:16 offline.dbk:16 +msgid "jgg@debian.org" +msgstr "jgg@debian.org" -#. type: <abstract></abstract> -#: guide.sgml:11 +#. type: Content of: <book><bookinfo><releaseinfo> +#: guide.dbk:20 offline.dbk:20 +msgid "Version &apt-product-version;" +msgstr "" + +#. type: Content of: <book><bookinfo><abstract><para> +#: guide.dbk:24 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" "Questo documento fornisce una panoramica su come usare il gestore di " "pacchetti APT." -#. type: <copyrightsummary></copyrightsummary> -#: guide.sgml:15 -msgid "Copyright © Jason Gunthorpe, 1998." -msgstr "Copyright © Jason Gunthorpe, 1998." +#. type: Content of: <book><bookinfo> +#: guide.dbk:28 +msgid "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" + +#. type: Content of: <book><bookinfo><legalnotice><title> +#: guide.dbk:31 offline.dbk:32 +msgid "License Notice" +msgstr "" -#. type: <p></p> -#: guide.sgml:21 offline.sgml:22 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:33 offline.dbk:34 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 " @@ -8520,8 +8549,8 @@ msgstr "" "pubblicata dalla Free Software Foundation, nella versione 2 o (a propria " "scelta) qualsiasi versione successiva." -#. type: <p></p> -#: guide.sgml:24 offline.sgml:25 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:42 offline.dbk:40 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8529,31 +8558,31 @@ msgstr "" "Per ulteriori dettagli, sui sistemi Debian, si veda il testo completo della " "licenza nel file /usr/share/common-licenses/GPL." -#. type: <heading></heading> -#: guide.sgml:32 +#. type: Content of: <book><chapter><title> +#: guide.dbk:49 msgid "General" msgstr "Descrizione generale" -#. type: <p></p> -#: guide.sgml:38 +#. type: Content of: <book><chapter><para> +#: guide.dbk:51 msgid "" -"The APT package currently contains two sections, the APT <prgn>dselect</" -"prgn> method and the <prgn>apt-get</prgn> command line user interface. Both " -"provide a way to install and remove packages as well as download new " -"packages from the Internet." +"The APT package currently contains two sections, the APT <command>dselect</" +"command> method and the <command>apt-get</command> 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 per " -"<prgn>dselect</prgn> e l'interfaccia utente a riga di comando <prgn>apt-get</" -"prgn>; entrambi forniscono un modo per installare e rimuovere pacchetti, " -"così come per scaricarne di nuovi da Internet." +"<command>dselect</command> e l'interfaccia utente a riga di comando " +"<command>apt-get</command>; entrambi forniscono un modo per installare e " +"rimuovere pacchetti, così come per scaricarne di nuovi da Internet." -#. type: <heading></heading> -#: guide.sgml:39 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:57 msgid "Anatomy of the Package System" msgstr "Anatomia del sistema dei pacchetti" -#. type: <p></p> -#: guide.sgml:44 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:59 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 " @@ -8564,8 +8593,8 @@ msgstr "" "maniera pulita nel sistema. La sua caratteristica più importante è il " "sistema di dipendenze." -#. type: <p></p> -#: guide.sgml:52 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:64 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8580,8 +8609,8 @@ msgstr "" "possibile avere più di una scelta per cose quali i programmi di " "trasferimento della posta elettronica, i server X e così via." -#. type: <p></p> -#: guide.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:71 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 " @@ -8592,8 +8621,8 @@ msgstr "" "concetto di dipendenza semplice: un pacchetto richiede che un altro sia " "installato insieme ad esso per poter funzionare." -#. type: <p></p> -#: guide.sgml:63 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:76 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 " @@ -8606,8 +8635,8 @@ msgstr "" "che si tratta di un'estensione di emacs, mailcrypt ha anche una dipendenza " "semplice da emacs, senza il quale è totalmente inutile." -#. type: <p></p> -#: guide.sgml:73 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:82 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 " @@ -8628,8 +8657,8 @@ msgstr "" "seriamente il sistema, quindi ciascun programma di trasporto della posta ha " "una dipendenza di conflitto verso tutti gli altri." -#. type: <p></p> -#: guide.sgml:83 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:92 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 " @@ -8650,8 +8679,8 @@ msgstr "" "dipendere da mail-transport-agent. Quando si cerca di modificare a mano i " "pacchetti, questo può portare a moltissima confusione." -#. type: <p></p> -#: guide.sgml:88 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:102 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 " @@ -8663,77 +8692,84 @@ msgstr "" "problemi di dipendenze fornendo svariati algoritmi automatici, che aiutano a " "selezionare i pacchetti da installare." -#. type: <heading></heading> -#: guide.sgml:96 +#. type: Content of: <book><chapter><title> +#: guide.dbk:111 msgid "apt-get" msgstr "apt-get" -#. type: <p></p> -#: guide.sgml:102 -msgid "" -"<prgn>apt-get</prgn> provides a simple way to install packages from the " -"command line. Unlike <prgn>dpkg</prgn>, <prgn>apt-get</prgn> does not " -"understand .deb files, it works with the package's proper name and can only " -"install .deb archives from a <em>Source</em>." -msgstr "" -"<prgn>apt-get</prgn> fornisce un modo semplice di installare i pacchetti " -"dalla riga di comando. Diversamente da <prgn>dpkg</prgn>, <prgn>apt-get</" -"prgn> non tratta i file .deb, ma utilizza il vero nome dei pacchetti e può " -"installare archivi .deb solo da una <em>fonte</em>." - -#. type: <p></p> -#: guide.sgml:109 -msgid "" -"The first <footnote><p>If you are using an http proxy server you must set " -"the http_proxy environment variable first, see sources.list(5)</p></" -"footnote> thing that should be done before using <prgn>apt-get</prgn> is to " -"fetch the package lists from the <em>Sources</em> so that it knows what " -"packages are available. This is done with <tt>apt-get update</tt>. For " -"instance," -msgstr "" -"La prima <footnote><p>Se si sta usando un server proxy http, si deve prima " -"ancora impostare la variabile d'ambiente http_proxy; vedere sources.list(5)." -"</p></footnote> cosa da fare prima di usare <prgn>apt-get</prgn> è scaricare " -"gli elenchi dei pacchetti dalle <em>fonti</em> in modo che il programma " -"sappia quali pacchetti sono disponibili. Lo si fa con <tt>apt-get update</" -"tt>. Ad esempio," - -#. type: <example></example> -#: guide.sgml:116 +#. type: Content of: <book><chapter><para> +#: guide.dbk:113 +msgid "" +"<command>apt-get</command> provides a simple way to install packages from " +"the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " +"does not understand .deb files, it works with the package's proper name and " +"can only install .deb archives from a <emphasis>Source</emphasis>." +msgstr "" +"<command>apt-get</command> fornisce un modo semplice di installare i " +"pacchetti dalla riga di comando. Diversamente da <command>dpkg</command>, " +"<command>apt-get</command> non tratta i file .deb, ma utilizza il vero nome " +"dei pacchetti e può installare archivi .deb solo da una <emphasis>fonte</" +"emphasis>." + +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:119 +msgid "" +"If you are using an http proxy server you must set the http_proxy " +"environment variable first, see sources.list(5)" +msgstr "" +"Se si sta usando un server proxy http, si deve prima ancora impostare la " +"variabile d'ambiente http_proxy; vedere sources.list(5)." + +#. type: Content of: <book><chapter><para> +#: guide.dbk:119 +msgid "" +"The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " +"done before using <command>apt-get</command> is to fetch the package lists " +"from the <emphasis>Sources</emphasis> so that it knows what packages are " +"available. This is done with <literal>apt-get update</literal>. For instance," +msgstr "" +"La prima <placeholder type=\"footnote\" id=\"0\"/> cosa da fare prima di " +"usare <command>apt-get</command> è scaricare gli elenchi dei pacchetti dalle " +"<emphasis>fonti</emphasis> in modo che il programma sappia quali pacchetti " +"sono disponibili. Lo si fa con <literal>apt-get update</literal>. Ad esempio," + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:127 #, no-wrap msgid "" "# 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" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get update\n" "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" +"Generazione albero delle dipendenze... Fatto\n" -#. type: <p><taglist> -#: guide.sgml:120 +#. type: Content of: <book><chapter><para> +#: guide.dbk:134 msgid "Once updated there are several commands that can be used:" msgstr "Una volta aggiornato l'elenco, si possono usare svariati comandi:" -#. type: <tag></tag> -#: guide.sgml:121 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:138 msgid "upgrade" msgstr "upgrade" -#. type: <p></p> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:141 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 " "upgrade a package that might cause some other package to break. This can be " "used daily to relatively safely upgrade the system. Upgrade will list all of " "the packages that it could not upgrade, this usually means that they depend " -"on new packages or conflict with some other package. <prgn>dselect</prgn> or " -"<tt>apt-get install</tt> can be used to force these packages to install." +"on new packages or conflict with some other package. <command>dselect</" +"command> or <literal>apt-get install</literal> can be used to force these " +"packages to install." msgstr "" "Upgrade tenterà di fare un aggiornamento indolore del sistema completo, " "senza installare mai nuovi pacchetti o rimuoverne di esistenti, e senza mai " @@ -8742,15 +8778,15 @@ msgstr "" "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 " -"<prgn>dselect</prgn> o <tt>apt-get install</tt>." +"<command>dselect</command> o <literal>apt-get install</literal>." -#. type: <tag></tag> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:153 msgid "install" msgstr "install" -#. type: <p></p> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:156 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 " @@ -8769,21 +8805,22 @@ msgstr "" "devono essere modificati altri pacchetti che non siano quelli sulla riga di " "comando." -#. type: <tag></tag> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:167 msgid "dist-upgrade" msgstr "dist-upgrade" -#. type: <p></p> -#: guide.sgml:149 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:170 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " "set of packages to install, upgrade and remove to get as much of the system " "to the newest release. In some situations it may be desired to use dist-" "upgrade rather than spend the time manually resolving dependencies in " -"<prgn>dselect</prgn>. Once dist-upgrade has completed then <prgn>dselect</" -"prgn> can be used to install any packages that may have been left out." +"<command>dselect</command>. Once dist-upgrade has completed then " +"<command>dselect</command> can be used to install any packages that may have " +"been left out." msgstr "" "Dist-upgrade fa un aggiornamento completo ed è progettato in modo da rendere " "semplici gli aggiornamenti tra i rilasci di Debian. Usa un algoritmo " @@ -8791,12 +8828,12 @@ msgstr "" "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 <prgn>dselect</prgn>. Una volta completato il lavoro di dist-" -"upgrade, si può usare <prgn>dselect</prgn> per installare eventuali " -"pacchetti che sono stati tralasciati." +"dipendenze con <command>dselect</command>. Una volta completato il lavoro di " +"dist-upgrade, si può usare <command>dselect</command> per installare " +"eventuali pacchetti che sono stati tralasciati." -#. type: <p></p> -#: guide.sgml:152 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:180 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8804,167 +8841,172 @@ msgstr "" "È importante controllare attentamente cosa intende fare dist-upgrade, dato " "che le sue decisioni a volte possono essere abbastanza sorprendenti." -#. type: <p></p> -#: guide.sgml:163 +#. type: Content of: <book><chapter><para> +#: guide.dbk:187 #, fuzzy #| msgid "" -#| "<prgn>apt-get</prgn> has several command line options that are detailed " -#| "in its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -#| "option is <tt>-d</tt> which does not install the fetched files. If the " -#| "system has to download a large number of package it would be undesired to " -#| "start installing them in case something goes wrong. When <tt>-d</tt> is " -#| "used the downloaded archives can be installed by simply running the " -#| "command that caused them to be downloaded again without <tt>-d</tt>." -msgid "" -"<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -"option is <tt>-d</tt> which does not install the fetched files. If the " -"system has to download a large number of package it would be undesired to " -"start installing them in case something goes wrong. When <tt>-d</tt> is used " -"the downloaded archives can be installed by simply running the command that " -"caused them to be downloaded again without <tt>-d</tt>." -msgstr "" -"<prgn>apt-get</prgn> ha diverse opzioni per la riga di comando, che sono " -"documentate dettagliatamente nella sua pagina di manuale, <manref section=" -"\"8\" name=\"apt-get\">. L'opzione più utile è <tt>-d</tt>, 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 <tt>-d</tt>, gli archivi scaricati possono essere installati " -"semplicemente eseguendo di nuovo lo stesso comando senza l'opzione <tt>-d</" -"tt>." - -#. type: <heading></heading> -#: guide.sgml:168 +#| "<command>apt-get</command> has several command line options that are " +#| "detailed in its man page, <manref section=\"8\" name=\"apt-get\">. The " +#| "most useful option is <literal>-d</literal> which does not install the " +#| "fetched files. If the system has to download a large number of package it " +#| "would be undesired to start installing them in case something goes wrong. " +#| "When <literal>-d</literal> is used the downloaded archives can be " +#| "installed by simply running the command that caused them to be downloaded " +#| "again without <literal>-d</literal>." +msgid "" +"<command>apt-get</command> has several command line options that are " +"detailed in its man page, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. The most useful " +"option is <literal>-d</literal> which does not install the fetched files. If " +"the system has to download a large number of package it would be undesired " +"to start installing them in case something goes wrong. When <literal>-d</" +"literal> is used the downloaded archives can be installed by simply running " +"the command that caused them to be downloaded again without <literal>-d</" +"literal>." +msgstr "" +"<command>apt-get</command> ha diverse opzioni per la riga di comando, che " +"sono documentate dettagliatamente nella sua pagina di manuale, <manref " +"section=\"8\" name=\"apt-get\">. L'opzione più utile è <literal>-d</" +"literal>, 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 <literal>-d</literal>, gli " +"archivi scaricati possono essere installati semplicemente eseguendo di nuovo " +"lo stesso comando senza l'opzione <literal>-d</literal>." + +#. type: Content of: <book><chapter><title> +#: guide.dbk:199 msgid "DSelect" msgstr "DSelect" -#. type: <p></p> -#: guide.sgml:173 +#. type: Content of: <book><chapter><para> +#: guide.dbk:201 msgid "" -"The APT <prgn>dselect</prgn> method provides the complete APT system with " -"the <prgn>dselect</prgn> package selection GUI. <prgn>dselect</prgn> is used " -"to select the packages to be installed or removed and APT actually installs " -"them." +"The APT <command>dselect</command> method provides the complete APT system " +"with the <command>dselect</command> package selection GUI. <command>dselect</" +"command> is used to select the packages to be installed or removed and APT " +"actually installs them." msgstr "" -"Il metodo APT di <prgn>dselect</prgn> fornisce tutte le funzionalità del " -"sistema APT con l'interfaccia grafica di selezione dei pacchetti " -"<prgn>dselect</prgn>. <prgn>dselect</prgn> viene usato per selezionare i " -"pacchetti da installare o rimuovere, ed APT fa l'effettiva installazione." +"Il metodo APT di <command>dselect</command> fornisce tutte le funzionalità " +"del sistema APT con l'interfaccia grafica di selezione dei pacchetti " +"<command>dselect</command>. <command>dselect</command> viene usato per " +"selezionare i pacchetti da installare o rimuovere, ed APT fa l'effettiva " +"installazione." -#. type: <p></p> -#: guide.sgml:184 +#. type: Content of: <book><chapter><para> +#: guide.dbk:207 msgid "" -"To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " -"and then choose the APT method. You will be prompted for a set of " -"<em>Sources</em> which are places to fetch archives from. These can be " -"remote Internet sites, local Debian mirrors or CD-ROMs. Each source can " -"provide a fragment of the total Debian archive, APT will automatically " +"To enable the APT method you need to select [A]ccess in <command>dselect</" +"command> and then choose the APT method. You will be prompted for a set of " +"<emphasis>Sources</emphasis> which are places to fetch archives from. These " +"can be remote Internet sites, local Debian mirrors or CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet." msgstr "" -"Per abilitare il metodo APT si deve selezionare [A]ccess in <prgn>dselect</" -"prgn> e scegliere il metodo APT; verrà chiesto un insieme di fonti " -"(<em>Sources</em>), 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: <example></example> -#: guide.sgml:198 +"Per abilitare il metodo APT si deve selezionare [A]ccess in " +"<command>dselect</command> e scegliere il metodo APT; verrà chiesto un " +"insieme di fonti (<emphasis>Sources</emphasis>), 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: Content of: <book><chapter><screen> +#: guide.dbk:218 #, no-wrap msgid "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" msgstr "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" -#. type: <p></p> -#: guide.sgml:205 +#. type: Content of: <book><chapter><para> +#: guide.dbk:232 msgid "" -"The <em>Sources</em> setup starts by asking for the base of the Debian " -"archive, defaulting to a HTTP mirror. Next it asks for the distribution to " -"get." +"The <emphasis>Sources</emphasis> 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 <em>fonti</em> inizia chiedendo la base " +"La configurazione delle <emphasis>fonti</emphasis> inizia chiedendo la base " "dell'archivio Debian, proponendo in modo predefinito un mirror HTTP; " "successivamente viene chiesta la distribuzione da scaricare." -#. type: <example></example> -#: guide.sgml:212 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:237 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" +"\n" +" Distribution [stable]:\n" msgstr "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" - -#. type: <p></p> -#: guide.sgml:222 -msgid "" -"The distribution refers to the Debian version in the archive, <em>stable</" -"em> refers to the latest released version and <em>unstable</em> refers to " -"the developmental version. <em>non-US</em> is only available on some mirrors " -"and refers to packages that contain encryption technology or other things " -"that cannot be exported from the United States. Importing these packages " -"into the US is legal however." -msgstr "" -"La distribuzione indica la versione Debian dell'archivio: <em>stable</em> è " -"l'ultima versione rilasciata e <em>unstable</em> è quella di sviluppo. " -"<em>non-US</em> è 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: <example></example> -#: guide.sgml:228 +"\n" +" Distribution [stable]:\n" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:244 +msgid "" +"The distribution refers to the Debian version in the archive, " +"<emphasis>stable</emphasis> refers to the latest released version and " +"<emphasis>unstable</emphasis> refers to the developmental version. " +"<emphasis>non-US</emphasis> is only available on some mirrors and refers to " +"packages that contain encryption technology or other things that cannot be " +"exported from the United States. Importing these packages into the US is " +"legal however." +msgstr "" +"La distribuzione indica la versione Debian dell'archivio: <emphasis>stable</" +"emphasis> è l'ultima versione rilasciata e <emphasis>unstable</emphasis> è " +"quella di sviluppo. <emphasis>non-US</emphasis> è 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: Content of: <book><chapter><screen> +#: guide.dbk:253 #, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" msgstr "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" -#. type: <p></p> -#: guide.sgml:236 +#. type: Content of: <book><chapter><para> +#: guide.dbk:259 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 " @@ -8977,8 +9019,8 @@ msgstr "" "mentre contrib e non-free contengono software che ha diverse restrizioni " "sull'uso e sulla distribuzione." -#. type: <p></p> -#: guide.sgml:240 +#. type: Content of: <book><chapter><para> +#: guide.dbk:265 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -8987,23 +9029,24 @@ msgstr "" "configurazione continuerà a chiedere fino a che non sono state specificate " "tutte quelle desiderate." -#. type: <p></p> -#: guide.sgml:247 +#. type: Content of: <book><chapter><para> +#: guide.dbk:269 msgid "" -"Before starting to use <prgn>dselect</prgn> it is necessary to update the " -"available list by selecting [U]pdate from the menu. This is a superset of " -"<tt>apt-get update</tt> that makes the fetched information available to " -"<prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get update</" -"tt> has been run before." +"Before starting to use <command>dselect</command> it is necessary to update " +"the available list by selecting [U]pdate from the menu. This is a superset " +"of <literal>apt-get update</literal> that makes the fetched information " +"available to <command>dselect</command>. [U]pdate must be performed even if " +"<literal>apt-get update</literal> has been run before." msgstr "" -"Prima di cominciare a usare <prgn>dselect</prgn> è necessario aggiornare " -"l'elenco dei pacchetti disponibili selezionando [U]pdate dal menù: si tratta " -"di un sovrainsieme di ciò che fa <tt>apt-get update</tt>, che rende le " -"informazioni scaricate disponibili a <prgn>dselect</prgn>. [U]pdate deve " -"essere usato anche se prima è stato eseguito <tt>apt-get update</tt>." +"Prima di cominciare a usare <command>dselect</command> è necessario " +"aggiornare l'elenco dei pacchetti disponibili selezionando [U]pdate dal " +"menù: si tratta di un sovrainsieme di ciò che fa <literal>apt-get update</" +"literal>, che rende le informazioni scaricate disponibili a " +"<command>dselect</command>. [U]pdate deve essere usato anche se prima è " +"stato eseguito <literal>apt-get update</literal>." -#. type: <p></p> -#: guide.sgml:253 +#. type: Content of: <book><chapter><para> +#: guide.dbk:276 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 " @@ -9015,77 +9058,94 @@ msgstr "" "[C]onfig e [R]emove non hanno significato, dato che entrambe le fasi sono " "contenute in [I]nstall." -#. type: <p></p> -#: guide.sgml:258 +#. type: Content of: <book><chapter><para> +#: guide.dbk:282 msgid "" "By default APT will automatically remove the package (.deb) files once they " -"have been successfully installed. To change this behavior place <tt>Dselect::" -"clean \"prompt\";</tt> in /etc/apt/apt.conf." +"have been successfully installed. To change this behavior place " +"<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" "In modo predefinito APT rimuoverà automaticamente i file (.deb) dei " "pacchetti che sono stati installati con successo. Per modificare questo " -"comportamento, inserire <tt>Dselect::clean \"prompt\";</tt> in /etc/apt/apt." -"conf." +"comportamento, inserire <literal>Dselect::clean \"prompt\";</literal> in /" +"etc/apt/apt.conf." -#. type: <heading></heading> -#: guide.sgml:264 +#. type: Content of: <book><chapter><title> +#: guide.dbk:288 msgid "The Interface" msgstr "L'interfaccia" -#. type: <p></p> -#: guide.sgml:278 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:292 msgid "" -"Both that APT <prgn>dselect</prgn> method and <prgn>apt-get</prgn> share the " -"same interface. It is a simple system that generally tells you what it will " -"do and then goes and does it. <footnote><p>The <prgn>dselect</prgn> method " -"actually is a set of wrapper scripts to <prgn>apt-get</prgn>. The method " -"actually provides more functionality than is present in <prgn>apt-get</prgn> " -"alone.</p></footnote> After printing out a summary of what will happen APT " +"The <command>dselect</command> method actually is a set of wrapper scripts " +"to <command>apt-get</command>. The method actually provides more " +"functionality than is present in <command>apt-get</command> alone." +msgstr "" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:290 +#, fuzzy +#| msgid "" +#| "Both that APT <command>dselect</command> method and <command>apt-get</" +#| "command> share the same interface. It is a simple system that generally " +#| "tells you what it will do and then goes and does it. <footnote><para>The " +#| "<command>dselect</command> method actually is a set of wrapper scripts to " +#| "<command>apt-get</command>. The method actually provides more " +#| "functionality than is present in <command>apt-get</command> alone.</" +#| "para></footnote> After printing out a summary of what will happen APT " +#| "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." +msgid "" +"Both that APT <command>dselect</command> method and <command>apt-get</" +"command> share the same interface. It is a simple system that generally " +"tells you what it will do and then goes and does it. <placeholder type=" +"\"footnote\" id=\"0\"/> After printing out a summary of what will happen APT " "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 "" -"Sia il metodo APT per <prgn>dselect</prgn> sia <prgn>apt-get</prgn> " -"condividono la stessa interfaccia; si tratta di un sistema semplice che " -"indica in genere cosa sta per fare, e poi lo fa. <footnote><p>Il metodo " -"<prgn>dselect</prgn> è in realtà un insieme di script di wrapper per " -"<prgn>apt-get</prgn>. Il metodo di fatto fornisce delle funzionalità " -"maggiori del solo <prgn>apt-get</prgn>.</p></footnote> Dopo la stampa di un " -"riassunto delle operazioni che saranno fatte, APT stampa dei messaggi " -"informativi sullo stato, in modo da poter avere un'idea del punto a cui " -"arrivato e di quanto ci sia ancora da fare." - -#. type: <heading></heading> -#: guide.sgml:280 +"Sia il metodo APT per <command>dselect</command> sia <command>apt-get</" +"command> condividono la stessa interfaccia; si tratta di un sistema semplice " +"che indica in genere cosa sta per fare, e poi lo fa. <footnote><para>Il " +"metodo <command>dselect</command> è in realtà un insieme di script di " +"wrapper per <command>apt-get</command>. Il metodo di fatto fornisce delle " +"funzionalità maggiori del solo <command>apt-get</command>.</para></footnote> " +"Dopo la stampa di un riassunto delle operazioni che saranno fatte, APT " +"stampa dei messaggi informativi sullo stato, in modo da poter avere un'idea " +"del punto a cui arrivato e di quanto ci sia ancora da fare." + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:301 msgid "Startup" msgstr "Avvio" -#. type: <p></p> -#: guide.sgml:284 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:303 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 <tt>apt-get check</" -"tt>." +"At any time these operations can be performed by running <literal>apt-get " +"check</literal>." msgstr "" "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 " -"<tt>apt-get check</tt>." +"<literal>apt-get check</literal>." -#. type: <example></example> -#: guide.sgml:289 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:309 #, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get check\n" "Lettura elenco pacchetti... Fatto\n" -"Generazione albero delle dipendenze... Fatto" +"Generazione albero delle dipendenze... Fatto\n" -#. type: <p></p> -#: guide.sgml:297 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:314 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. " @@ -9098,22 +9158,22 @@ msgstr "" "trovati, sono ignorati e viene stampato un avvertimento all'uscita di apt-" "get." -#. type: <p></p> -#: guide.sgml:303 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:320 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " "package and considers if it is OK. Should this find a problem then a report " -"will be printed out and <prgn>apt-get</prgn> will refuse to run." +"will be printed out and <command>apt-get</command> will refuse to run." 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, e <prgn>apt-get</prgn> esce senza " -"eseguire alcuna operazione." +"problemi, viene stampato un resoconto, e <command>apt-get</command> esce " +"senza eseguire alcuna operazione." -#. type: <example></example> -#: guide.sgml:320 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:326 #, no-wrap msgid "" "# apt-get check\n" @@ -9123,14 +9183,14 @@ msgid "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" msgstr "" "# apt-get check\n" "Lettura elenco pacchetti... Fatto\n" @@ -9139,17 +9199,17 @@ msgstr "" "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" +" 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" +" 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)" +" Dipende: xlib6g (>= 3.3-5) ma non è installato\n" +" libreadlineg2: Va in conflitto: libreadline2 (<< 2.1-2.1)\n" -#. type: <p></p> -#: guide.sgml:329 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:343 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 " @@ -9163,86 +9223,105 @@ msgstr "" "dipendenze non sono soddisfatte. Viene inclusa inoltre una breve spiegazione " "del perché il pacchetto ha un problema di dipendenze." -#. type: <p></p> -#: guide.sgml:337 +#. type: Content of: <book><chapter><section><para><footnote><para> +#: guide.dbk:352 +msgid "" +"APT however considers all known dependencies and attempts to prevent broken " +"packages" +msgstr "" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:350 +#, fuzzy +#| msgid "" +#| "There are two ways a system can get into a broken state like this. The " +#| "first is caused by <command>dpkg</command> missing some subtle " +#| "relationships between packages when performing upgrades. " +#| "<footnote><para>APT however considers all known dependencies and attempts " +#| "to prevent broken packages</para></footnote>. The second is if a package " +#| "installation fails during an operation. In this situation a package may " +#| "have been unpacked without its dependents being installed." msgid "" "There are two ways a system can get into a broken state like this. The first " -"is caused by <prgn>dpkg</prgn> missing some subtle relationships between " -"packages when performing upgrades. <footnote><p>APT however considers all " -"known dependencies and attempts to prevent broken packages</p></footnote>. " -"The second is if a package installation fails during an operation. In this " -"situation a package may have been unpacked without its dependents being " -"installed." +"is caused by <command>dpkg</command> missing some subtle relationships " +"between packages when performing upgrades. <placeholder type=\"footnote\" id=" +"\"0\"/>. The second is if a package installation fails during an operation. " +"In this situation a package may have been unpacked without its dependents " +"being installed." msgstr "" "Ci sono due modi in cui un sistema può arrivare in uno stato problematico di " -"questo genere: il primo avviene se <prgn>dpkg</prgn> non ha ravvisato alcune " -"relazioni delicate tra i pacchetti durante un aggiornamento. " -"<footnote><p>APT invece considera tutte le dipendenze note e cerca di " -"evitare la presenza di pacchetti difettosi.</p></footnote> Il secondo è " +"questo genere: il primo avviene se <command>dpkg</command> non ha ravvisato " +"alcune relazioni delicate tra i pacchetti durante un aggiornamento. " +"<footnote><para>APT invece considera tutte le dipendenze note e cerca di " +"evitare la presenza di pacchetti difettosi.</para></footnote> 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: <p></p> -#: guide.sgml:345 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:359 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 " -"supplying the <tt>-f</tt> option to <prgn>apt-get</prgn> will cause APT to " -"deduce a possible solution to the problem and then continue on. The APT " -"<prgn>dselect</prgn> method always supplies the <tt>-f</tt> option to allow " -"for easy continuation of failed maintainer scripts." +"supplying the <literal>-f</literal> option to <command>apt-get</command> " +"will cause APT to deduce a possible solution to the problem and then " +"continue on. The APT <command>dselect</command> method always supplies the " +"<literal>-f</literal> option to allow for easy continuation of failed " +"maintainer scripts." msgstr "" "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 <tt>-f</tt> di <prgn>apt-get</prgn> farà sì che APT trovi una " -"soluzione possibile e possa continuare. Il metodo APT di <prgn>dselect</" -"prgn> comprende sempre l'opzione <tt>-f</tt> per permettere di continuare " -"facilmente anche in caso di script dei manutentori errati." - -#. type: <p></p> -#: guide.sgml:351 -msgid "" -"However, if the <tt>-f</tt> option is used to correct a seriously broken " -"system caused by the first case then it is possible that it will either fail " -"immediately or the installation sequence will fail. In either case it is " -"necessary to manually use dpkg (possibly with forcing options) to correct " -"the situation enough to allow APT to proceed." -msgstr "" -"Tuttavia, se l'opzione <tt>-f</tt> 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 " +"casi l'opzione <literal>-f</literal> di <command>apt-get</command> farà sì " +"che APT trovi una soluzione possibile e possa continuare. Il metodo APT di " +"<command>dselect</command> comprende sempre l'opzione <literal>-f</literal> " +"per permettere di continuare facilmente anche in caso di script dei " +"manutentori errati." + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:368 +msgid "" +"However, if the <literal>-f</literal> option is used to correct a seriously " +"broken system caused by the first case then it is possible that it will " +"either fail immediately or the installation sequence will fail. In either " +"case it is necessary to manually use dpkg (possibly with forcing options) to " +"correct the situation enough to allow APT to proceed." +msgstr "" +"Tuttavia, se l'opzione <literal>-f</literal> 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: <heading></heading> -#: guide.sgml:356 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:376 msgid "The Status Report" msgstr "Il resoconto sullo stato" -#. type: <p></p> -#: guide.sgml:363 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:378 msgid "" -"Before proceeding <prgn>apt-get</prgn> will present a report on what will " -"happen. Generally the report reflects the type of operation being performed " -"but there are several common elements. In all cases the lists reflect the " -"final state of things, taking into account the <tt>-f</tt> option and any " -"other relevant activities to the command being executed." +"Before proceeding <command>apt-get</command> will present a report on what " +"will happen. Generally the report reflects the type of operation being " +"performed but there are several common elements. In all cases the lists " +"reflect the final state of things, taking into account the <literal>-f</" +"literal> option and any other relevant activities to the command being " +"executed." msgstr "" -"Prima di procedere, <prgn>apt-get</prgn> presenterà un resoconto delle " +"Prima di procedere, <command>apt-get</command> presenterà un resoconto delle " "operazioni che sta per fare. In genere tale resoconto varierà con il tipo di " "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 " -"<tt>-f</tt> e di altre attività rilevanti per il comando da eseguire." +"<literal>-f</literal> e di altre attività rilevanti per il comando da " +"eseguire." -#. type: <heading></heading> -#: guide.sgml:364 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:385 msgid "The Extra Package list" msgstr "L'elenco dei pacchetti extra" -#. type: <example></example> -#: guide.sgml:372 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:387 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9250,86 +9329,87 @@ msgid "" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" msgstr "" "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" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" -#. type: <p></p> -#: guide.sgml:379 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:395 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 <tt>install</tt> command. The listed packages are often the " -"result of an Auto Install." +"generated for an <literal>install</literal> 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 riga di comando. Viene " -"generato solo per il comando <tt>install</tt>. I pacchetti elencati sono " -"spesso il risultato di un'operazione di installazione automatica." +"generato solo per il comando <literal>install</literal>. I pacchetti " +"elencati sono spesso il risultato di un'operazione di installazione " +"automatica." -#. type: <heading></heading> -#: guide.sgml:382 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:402 msgid "The Packages to Remove" msgstr "I pacchetti da rimuovere" -#. type: <example></example> -#: guide.sgml:389 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:404 #, no-wrap msgid "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" msgstr "" "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" -" nas xpilot xfig" +" nas xpilot xfig\n" -#. type: <p></p> -#: guide.sgml:399 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:411 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 " "given a careful inspection to ensure nothing important is to be taken off. " -"The <tt>-f</tt> option is especially good at generating packages to remove " -"so extreme care should be used in that case. The list may contain packages " -"that are going to be removed because they are only partially installed, " -"possibly due to an aborted installation." +"The <literal>-f</literal> option is especially good at generating packages " +"to remove so extreme care should be used in that case. The list may contain " +"packages 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 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 <tt>-f</tt> è " +"eliminato qualcosa di importante. Con l'opzione <literal>-f</literal> è " "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: <heading></heading> -#: guide.sgml:402 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:421 msgid "The New Packages list" msgstr "L'elenco dei nuovi pacchetti installati" -#. type: <example></example> -#: guide.sgml:406 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:423 #, no-wrap msgid "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" msgstr "" "I seguenti pacchetti NUOVI saranno installati:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" -#. type: <p></p> -#: guide.sgml:411 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:427 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 " @@ -9339,32 +9419,32 @@ msgstr "" "quello che accadrà. I pacchetti nell'elenco non sono al momento installati " "nel sistema, ma lo saranno alla fine delle operazioni di APT." -#. type: <heading></heading> -#: guide.sgml:414 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:432 msgid "The Kept Back list" msgstr "L'elenco dei pacchetti bloccati" -#. type: <example></example> -#: guide.sgml:419 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:434 #, 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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" msgstr "" "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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" -#. type: <p></p> -#: guide.sgml:428 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:439 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 " "or conflict with already installed things. In this case the package will " "appear in the Kept Back list. The best way to convince packages listed there " -"to install is with <tt>apt-get install</tt> or by using <prgn>dselect</prgn> " -"to resolve their problems." +"to install is with <literal>apt-get install</literal> or by using " +"<command>dselect</command> to resolve their problems." 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 " @@ -9372,26 +9452,27 @@ msgstr "" "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 <tt>apt-get install</" -"tt> o usare <prgn>dselect</prgn> per risolvere i problemi." +"pacchetti elencati in questa lista è installarli con <literal>apt-get " +"install</literal> o usare <command>dselect</command> per risolvere i " +"problemi." -#. type: <heading></heading> -#: guide.sgml:431 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:448 msgid "Held Packages warning" msgstr "Messaggi di avvertimento sui pacchetti bloccati" -#. type: <example></example> -#: guide.sgml:435 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:450 #, no-wrap msgid "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" msgstr "" "I seguenti pacchetti bloccati saranno cambiati:\n" -" cvs" +" cvs\n" -#. type: <p></p> -#: guide.sgml:441 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:454 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. " @@ -9402,32 +9483,32 @@ msgstr "" "pacchetto verrà modificato. Questo dovrebbe accadere solo durante operazioni " "di dist-upgrade o di install." -#. type: <heading></heading> -#: guide.sgml:444 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:460 msgid "Final summary" msgstr "Resoconto finale" -#. type: <p></p> -#: guide.sgml:447 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:462 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." -#. type: <example></example> -#: guide.sgml:452 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:465 #, 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" "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." +"È necessario scaricare 65.7M/66.7M di archivi. Dopo quest'operazione, verranno occupati 26.5M di spazio su disco.\n" -#. type: <p></p> -#: guide.sgml:470 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:470 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 " @@ -9457,8 +9538,8 @@ msgstr "" "in /usr dopo l'installazione. Se si stanno rimuovendo molti pacchetti, " "allora il valore può indicare lo spazio che verrà liberato." -#. type: <p></p> -#: guide.sgml:473 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:484 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9466,13 +9547,13 @@ msgstr "" "Si possono generare altri resoconti usando l'opzione -u per mostrare i " "pacchetti da aggiornare, ma sono simili all'esempio precedente." -#. type: <heading></heading> -#: guide.sgml:477 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:491 msgid "The Status Display" msgstr "La visualizzazione dello stato" -#. type: <p></p> -#: guide.sgml:481 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:493 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9480,8 +9561,8 @@ msgstr "" "Durante lo scaricamento degli archivi e dei file dei pacchetti APT stampa " "una serie di messaggi di stato." -#. type: <example></example> -#: guide.sgml:490 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:497 #, no-wrap msgid "" "# apt-get update\n" @@ -9490,7 +9571,7 @@ msgid "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" msgstr "" "# apt-get update\n" "Scaricamento di:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" @@ -9498,129 +9579,127 @@ msgstr "" "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" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" -#. type: <p></p> -#: guide.sgml:500 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:506 msgid "" -"The lines starting with <em>Get</em> are printed out when APT begins to " -"fetch a file while the last line indicates the progress of the download. The " -"first percent value on the progress line indicates the total percent done of " -"all files. Unfortunately since the size of the Package files is unknown " -"<tt>apt-get update</tt> estimates the percent done which causes some " -"inaccuracies." +"The lines starting with <emphasis>Get</emphasis> are printed out when APT " +"begins to fetch a file while the last line indicates the progress of the " +"download. The first percent value on the progress line indicates the total " +"percent done of all files. Unfortunately since the size of the Package files " +"is unknown <literal>apt-get update</literal> estimates the percent done " +"which causes some inaccuracies." msgstr "" -"Le righe che cominciano con <em>Scaricamento di</em> 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 <tt>apt-get " -"update</tt> fa una stima poco accurata." +"Le righe che cominciano con <emphasis>Scaricamento di</emphasis> 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 <literal>apt-" +"get update</literal> fa una stima poco accurata." -#. type: <p></p> -#: guide.sgml:509 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:514 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " "information about what is happening. Sometimes this section will simply read " -"<em>Forking</em> which means the OS is loading the download module. The " -"first word after the [ is the fetch number as shown on the history lines. " -"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." +"<emphasis>Forking</emphasis> which means the OS is loading the download " +"module. The first word after the [ is the fetch number as shown on the " +"history lines. 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 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 <em>Forking</em>, che significa che il sistema operativo " -"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." +"contiene solamente <emphasis>Forking</emphasis>, che significa che il " +"sistema operativo 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: <p></p> -#: guide.sgml:524 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:524 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " -"<em>Connecting</em> to <em>Waiting for file</em> to <em>Downloading</em> or " -"<em>Resuming</em>. The final value is the number of bytes downloaded from " -"the remote site. Once the download begins this is represented as " -"<tt>102/10.2k</tt> indicating that 102 bytes have been fetched and 10.2 " -"kilobytes is expected. The total size is always shown in 4 figure notation " -"to preserve space. After the size display is a percent meter for the file " -"itself. The second last element is the instantaneous average speed. This " -"values is updated every 5 seconds and reflects the rate of data transfer for " -"that period. Finally is shown the estimated transfer time. This is updated " -"regularly and reflects the time to complete everything at the shown transfer " -"rate." +"<emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to " +"<emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final " +"value is the number of bytes downloaded from the remote site. Once the " +"download begins this is represented as <literal>102/10.2k</literal> " +"indicating that 102 bytes have been fetched and 10.2 kilobytes is expected. " +"The total size is always shown in 4 figure notation to preserve space. After " +"the size display is a percent meter for the file itself. The second last " +"element is the instantaneous average speed. This values is updated every 5 " +"seconds and reflects the rate of data transfer for that period. Finally is " +"shown the estimated transfer time. This is updated regularly and reflects " +"the time to complete everything at the shown transfer rate." msgstr "" "All'interno delle virgolette singole c'è una stringa informativa, che indica " "il progresso della fase di negoziazione dello scaricamento. Tipicamente " -"comincia con <em>Connecting</em>, procede con <em>Waiting for file</em> e " -"poi con <em>Downloading</em> o <em>Resuming</em>; il valore finale è il " -"numero di byte che sono stati scaricati dal sito remoto. Una volta " -"cominciato lo scaricamento, viene rappresentato come <tt>102/10.2k</tt>, 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: <p></p> -#: guide.sgml:530 +"comincia con <emphasis>Connecting</emphasis>, procede con <emphasis>Waiting " +"for file</emphasis> e poi con <emphasis>Downloading</emphasis> o " +"<emphasis>Resuming</emphasis>; il valore finale è il numero di byte che sono " +"stati scaricati dal sito remoto. Una volta cominciato lo scaricamento, viene " +"rappresentato come <literal>102/10.2k</literal>, 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: Content of: <book><chapter><section><para> +#: guide.dbk:539 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 " "is started. Since the status display is constantly updated it is unsuitable " -"for logging to a file, use the <tt>-q</tt> option to remove the status " -"display." +"for logging to a file, use the <literal>-q</literal> option to remove the " +"status display." msgstr "" "La visualizzazione dello stato viene aggiornata ogni mezzo secondo per " "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 <tt>-q</tt>." +"l'opzione <literal>-q</literal>." -#. type: <heading></heading> -#: guide.sgml:535 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:547 msgid "Dpkg" msgstr "Dpkg" -#. type: <p></p> -#: guide.sgml:542 -msgid "" -"APT uses <prgn>dpkg</prgn> for installing the archives and will switch over " -"to the <prgn>dpkg</prgn> interface once downloading is completed. " -"<prgn>dpkg</prgn> will also ask a number of questions as it processes the " -"packages and the packages themselves may also ask several questions. Before " -"each question there is usually a description of what it is asking and the " -"questions are too varied to discuss completely here." -msgstr "" -"APT usa <prgn>dpkg</prgn> per installare gli archivi e passerà " -"all'interfaccia di <prgn>dpkg</prgn> una volta completati gli scaricamenti. " -"<prgn>dpkg</prgn> 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: <title> -#: offline.sgml:4 +#. type: Content of:
+#: guide.dbk:549 +msgid "" +"APT uses dpkg for installing the archives and will switch " +"over to the dpkg interface once downloading is completed. " +"dpkg will also ask a number of questions as it processes " +"the packages and the packages themselves may also ask several questions. " +"Before each question there is usually a description of what it is asking and " +"the questions are too varied to discuss completely here." +msgstr "" +"APT usa dpkg per installare gli archivi e passerà " +"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: Content of: +#: offline.dbk:10 msgid "Using APT Offline" msgstr "Usare APT offline" -#. type: <version></version> -#: offline.sgml:7 -msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" - -#. type: <abstract></abstract> -#: offline.sgml:12 +#. type: Content of: <book><bookinfo><abstract><para> +#: offline.dbk:24 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9629,23 +9708,24 @@ msgstr "" "rete, specificatamente un approccio «sfrutta-altra-rete» per fare gli " "aggiornamenti." -#. type: <copyrightsummary></copyrightsummary> -#: offline.sgml:16 -msgid "Copyright © Jason Gunthorpe, 1999." -msgstr "Copyright © Jason Gunthorpe, 1999." +#. type: Content of: <book><bookinfo> +#: offline.dbk:29 +msgid "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" -#. type: <heading></heading> -#: offline.sgml:32 +#. type: Content of: <book><chapter><title> +#: offline.dbk:47 msgid "Introduction" msgstr "Introduzione" -#. type: <heading></heading> -#: offline.sgml:34 offline.sgml:65 offline.sgml:180 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:49 offline.dbk:79 offline.dbk:191 msgid "Overview" msgstr "Panoramica" -#. type: <p></p> -#: offline.sgml:40 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:51 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9657,8 +9737,8 @@ msgstr "" "ha un collegamento lento, come un modem, e un'altra macchina ha una " "connessione veloce, ma le due sono fisicamente distanti." -#. type: <p></p> -#: offline.sgml:51 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:57 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9666,9 +9746,9 @@ msgid "" "to use APT to generate a list of packages that are required and then fetch " "them onto the disc using another machine with good connectivity. It is even " "possible to use another Debian machine with APT or to use a completely " -"different OS and a download tool like wget. Let <em>remote host</em> mean " -"the machine downloading the packages, and <em>target host</em> the one with " -"bad or no connection." +"different OS and a download tool like wget. Let <emphasis>remote host</" +"emphasis> mean the machine downloading the packages, and <emphasis>target " +"host</emphasis> 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 " @@ -9678,12 +9758,12 @@ msgstr "" "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 <em>host remoto</em> viene indicata la macchina che " -"scarica i pacchetti, e <em>host di destinazione</em> è quella senza " -"connessione o con una connessione non buona." +"questo documento con <emphasis>host remoto</emphasis> viene indicata la " +"macchina che scarica i pacchetti, e <emphasis>host di destinazione</" +"emphasis> è quella senza connessione o con una connessione non buona." -#. type: <p></p> -#: offline.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:68 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9696,13 +9776,13 @@ msgstr "" "essere formattato con un file system che può gestire i nomi di file lunghi, " "come ext2, fat32 o vfat." -#. type: <heading></heading> -#: offline.sgml:63 +#. type: Content of: <book><chapter><title> +#: offline.dbk:77 msgid "Using APT on both machines" msgstr "Usare APT su entrambe le macchine" -#. type: <p><example> -#: offline.sgml:71 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:81 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9715,8 +9795,8 @@ msgstr "" "per decidere quali pacchetti scaricare. La struttura delle directory sul " "disco deve essere simile a:" -#. type: <example></example> -#: offline.sgml:80 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:87 #, no-wrap msgid "" " /disc/\n" @@ -9726,7 +9806,7 @@ msgid "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" msgstr "" " /disc/\n" " archives/\n" @@ -9735,42 +9815,43 @@ msgstr "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" -#. type: <heading></heading> -#: offline.sgml:88 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:98 msgid "The configuration file" msgstr "Il file di configurazione" -#. type: <p></p> -#: offline.sgml:96 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:100 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " "contain the proper sites that you wish to use from the remote machine, and " -"the status file should be a copy of <em>/var/lib/dpkg/status</em> from the " -"<em>target host</em>. Please note, if you are using a local archive you must " -"use copy URIs, the syntax is identical to file URIs." +"the status file should be a copy of <emphasis>/var/lib/dpkg/status</" +"emphasis> from the <emphasis>target host</emphasis>. 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 <em>/var/lib/" -"dpkg/status</em> della <em>macchina di destinazione</em>. Notare che, se si " -"sta usando un archivio locale, si devono usare URI «copy» la cui sintassi è " -"identica a quella degli URI «file»." +"macchina remota e il file di stato dovrebbe essere una copia di <emphasis>/" +"var/lib/dpkg/status</emphasis> della <emphasis>macchina di destinazione</" +"emphasis>. Notare che, se si sta usando un archivio locale, si devono usare " +"URI «copy» la cui sintassi è identica a quella degli URI «file»." -#. type: <p><example> -#: offline.sgml:100 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:108 msgid "" -"<em>apt.conf</em> must contain the necessary information to make APT use the " -"disc:" +"<emphasis>apt.conf</emphasis> must contain the necessary information to make " +"APT use the disc:" msgstr "" -"<em>apt.conf</em> deve contenere le informazioni necessarie per far sì che " -"APT usi il disco:" +"<emphasis>apt.conf</emphasis> deve contenere le informazioni necessarie per " +"far sì che APT usi il disco:" -#. type: <example></example> -#: offline.sgml:124 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:112 #, no-wrap msgid "" " APT\n" @@ -9778,10 +9859,10 @@ msgid "" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -9792,20 +9873,20 @@ msgid "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\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" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Usa il disco per le informazioni sullo stato e ridirige il file di stato\n" @@ -9816,67 +9897,70 @@ msgstr "" " // Le cache binarie saranno memorizzate in locale\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Posizione dell'elenco di fonti.\n" " Etc \"/disc/\";\n" -" };" +" };\n" -#. type: </example></p> -#: offline.sgml:129 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:137 msgid "" "More details can be seen by examining the apt.conf man page and the sample " -"configuration file in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis>." msgstr "" "Si possono vedere informazioni più dettagliate nella pagina di manuale di " -"apt.conf e nel file di configurazione d'esempio in <em>/usr/share/doc/apt/" -"examples/apt.conf</em>." +"apt.conf e nel file di configurazione d'esempio in <emphasis>/usr/share/doc/" +"apt/examples/apt.conf</emphasis>." -#. type: <p><example> -#: offline.sgml:136 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:142 msgid "" -"On the target machine the first thing to do is mount the disc and copy <em>/" -"var/lib/dpkg/status</em> to it. You will also need to create the directories " -"outlined in the Overview, <em>archives/partial/</em> and <em>lists/partial/</" -"em>. Then take the disc to the remote machine and configure the sources." -"list. On the remote machine execute the following:" +"On the target machine the first thing to do is mount the disc and copy " +"<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " +"create the directories outlined in the Overview, <emphasis>archives/partial/" +"</emphasis> and <emphasis>lists/partial/</emphasis>. 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 <em>/var/lib/dpkg/status</em>. Sarà anche necessario creare le " -"directory elencate nella panoramica: <em>archives/partial/</em> e <em>lists/" -"partial/</em>. Poi portare il disco nella macchina remota e configurare il " -"file sources.list; in tale macchina eseguire:" +"copiarvi <emphasis>/var/lib/dpkg/status</emphasis>. Sarà anche necessario " +"creare le directory elencate nella panoramica: <emphasis>archives/partial/</" +"emphasis> e <emphasis>lists/partial/</emphasis>. Poi portare il disco nella " +"macchina remota e configurare il file sources.list; in tale macchina " +"eseguire:" -#. type: <example></example> -#: offline.sgml:142 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:151 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT fetches the package files ]\n" " # apt-get dist-upgrade\n" -" [ APT fetches all the packages needed to upgrade the target machine ]" +" [ APT fetches all the packages needed to upgrade the target machine ]\n" 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 ]" +" [ APT scarica tutti i pacchetti necessari per aggiornare la macchina di destinazione ]\n" -#. type: </example></p> -#: offline.sgml:149 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:158 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " -"such as <em>dselect</em>. However this presents a problem in communicating " -"your selections back to the local computer." +"such as <emphasis>dselect</emphasis>. 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 <em>dselect</em>; questo tuttavia pone alcuni problemi " -"nel comunicare le selezioni fatte al computer locale." +"frontend per APT come <emphasis>dselect</emphasis>; questo tuttavia pone " +"alcuni problemi nel comunicare le selezioni fatte al computer locale." -#. type: <p><example> -#: offline.sgml:153 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:164 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9885,24 +9969,24 @@ msgstr "" "la macchina di destinazione. Riportare il disco alla macchina locale ed " "eseguire:" -#. type: <example></example> -#: offline.sgml:159 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:168 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generates a local copy of the cache files ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Or any other APT command ]" +" [ Or any other APT command ]\n" 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 ]" +" [ O qualsiasi altro comando APT ]\n" -#. type: <p></p> -#: offline.sgml:165 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:175 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -9910,8 +9994,8 @@ msgstr "" "Per il corretto funzionamento è necessario rispecificare il fatto che il " "file di stato è quello locale. Questo è molto importante!" -#. type: <p></p> -#: offline.sgml:172 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:179 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -9925,25 +10009,25 @@ msgstr "" "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: <heading></heading> -#: offline.sgml:178 +#. type: Content of: <book><chapter><title> +#: offline.dbk:189 msgid "Using APT and wget" msgstr "Usare APT e wget" -#. type: <p></p> -#: offline.sgml:185 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:193 msgid "" -"<em>wget</em> is a popular and portable download tool that can run on nearly " -"any machine. Unlike the method above this requires that the Debian machine " -"already has a list of available packages." +"<emphasis>wget</emphasis> is a popular and portable download tool that can " +"run on nearly any machine. Unlike the method above this requires that the " +"Debian machine already has a list of available packages." msgstr "" -"<em>wget</em> è 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." +"<emphasis>wget</emphasis> è 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: <p></p> -#: offline.sgml:190 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:198 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -9955,13 +10039,13 @@ msgstr "" "print-uris di apt-get e poi preparando uno script che usa wget per scaricare " "effettivamente i pacchetti." -#. type: <heading></heading> -#: offline.sgml:196 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:204 msgid "Operation" msgstr "Funzionamento" -#. type: <p><example> -#: offline.sgml:200 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:206 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -9970,22 +10054,22 @@ msgstr "" "configurazione speciali; vengono semplicemente usati i comandi APT standard " "per generare l'elenco dei file." -#. type: <example></example> -#: offline.sgml:205 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:210 #, no-wrap msgid "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" 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" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" -#. type: </example></p> -#: offline.sgml:210 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:216 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -9993,8 +10077,8 @@ msgstr "" "Si può usare qualsiasi comando che non sia dist-upgrade, incluso dselect-" "upgrade." -#. type: <p></p> -#: offline.sgml:216 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:220 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -10006,25 +10090,25 @@ msgstr "" "essere eseguito con il punto di mount del disco come directory attuale di " "lavoro, in modo che l'output venga salvato sul disco." -#. type: <p><example> -#: offline.sgml:219 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:226 msgid "The remote machine would do something like" msgstr "Nella macchina remota fare qualcosa come:" -#. type: <example></example> -#: offline.sgml:223 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:229 #, no-wrap msgid "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" msgstr "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ attendere... ]" +" [ attendere... ]\n" -#. type: </example><example> -#: offline.sgml:228 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:234 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10032,14 +10116,14 @@ 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: <example></example> -#: offline.sgml:230 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:238 #, no-wrap -msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" +msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" +msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" -#. type: </example></p> -#: offline.sgml:234 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." msgstr "che userà gli archivi già scaricati e presenti sul disco." @@ -10140,9 +10224,6 @@ msgstr "che userà gli archivi già scaricati e presenti sul disco." #~ msgid "FILES" #~ msgstr "FILE" -#~ msgid "<!-- -*- mode: sgml; mode: fold -*- -->" -#~ msgstr "<!-- -*- mode: sgml; mode: fold -*- -->" - #~ msgid "" #~ "<!-- Some common paths.. --> <!ENTITY docdir \"/usr/share/doc/apt/\"> <!" #~ "ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " @@ -11572,22 +11653,24 @@ msgstr "che userà gli archivi già scaricati e presenti sul disco." #, fuzzy #~ msgid "" -#~ "To enable the APT method you need to select [A]ccess in <prgn>dselect</" -#~ "prgn> and then choose the APT method. You will be prompted for a set of " -#~ "<em>Sources</em> 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." +#~ "To enable the APT method you need to select [A]ccess in <command>dselect</" +#~ "command> and then choose the APT method. You will be prompted for a set " +#~ "of <emphasis>Sources</emphasis> 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 <prgn>dselect</" -#~ "prgn> e scegliere il metodo APT; vi verrà chiesto un insieme di fonti " -#~ "(<em>Sources</em>), 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 dovete selezionare [A]ccess in " +#~ "<command>dselect</command> e scegliere il metodo APT; vi verrà chiesto un " +#~ "insieme di fonti (<emphasis>Sources</emphasis>), 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." diff --git a/doc/po/ja.po b/doc/po/ja.po index 2475b810d..45c264bd8 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -8,11 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.25.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-05-05 16:26+0200\n" -"PO-Revision-Date: 2014-04-01 14:00+0200\n" +"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"PO-Revision-Date: 2014-07-04 02:03+0200\n" "Last-Translator: KURASAWA Nozomu <nabetaro@debian.or.jp>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" -"Language: \n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -867,7 +867,7 @@ msgstr "<literal>Archive:</literal> 行や <literal>Suite:</literal> 行" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 #: apt-ftparchive.1.xml:609 msgid "See Also" @@ -1799,7 +1799,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 +#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 msgid "Files" msgstr "ファイル" @@ -2963,10 +2963,10 @@ msgstr "" #: apt-secure.8.xml:195 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" msgstr "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:199 @@ -4437,15 +4437,27 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:607 +#, fuzzy +#| msgid "" +#| "<literal>Dir::Cache</literal> contains locations pertaining to local " +#| "cache information, such as the two package caches <literal>srcpkgcache</" +#| "literal> and <literal>pkgcache</literal> as well as the location to place " +#| "downloaded archives, <literal>Dir::Cache::archives</literal>. Generation " +#| "of caches can be turned off by setting their names to the empty string. " +#| "This will slow down startup but save disk space. It is probably " +#| "preferable to turn off the pkgcache rather than the srcpkgcache. Like " +#| "<literal>Dir::State</literal> the default directory is contained in " +#| "<literal>Dir::Cache</literal>" msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " "and <literal>pkgcache</literal> as well as the location to place downloaded " "archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " -"be turned off by setting their names to the empty string. This will slow " +"be turned off by setting <literal>pkgcache</literal> or " +"<literal>srcpkgcache</literal> to <literal>\"\"</literal>. This will slow " "down startup but save disk space. It is probably preferable to turn off the " -"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " -"default directory is contained in <literal>Dir::Cache</literal>" +"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> は、ローカルキャッシュ情報に関する場所を格納し" "ています。これは、ダウンロード済アーカイブの場所を示す <literal>Dir::Cache::" @@ -4457,7 +4469,7 @@ msgstr "" "様、<literal>Dir::Cache</literal> はデフォルトディレクトリを含んでいます。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:617 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4471,7 +4483,7 @@ msgstr "" "ファイルを指定された場合のみ、この設定の効果があります)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:622 +#: apt.conf.5.xml:623 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4482,7 +4494,7 @@ msgstr "" "します。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:627 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4499,7 +4511,7 @@ msgstr "" "プログラムの場所を指定します。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:634 +#: apt.conf.5.xml:635 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4519,7 +4531,7 @@ msgstr "" "<filename>/tmp/staging/var/lib/dpkg/status</filename> から探します。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:648 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4535,12 +4547,12 @@ msgstr "" "フォルト値を見ればわかる通り、このパターンには正規表現を使用できます。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:657 msgid "APT in DSelect" msgstr "DSelect での APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:659 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4551,7 +4563,7 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:664 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4572,7 +4584,7 @@ msgstr "" "パッケージをダウンロードする直前に行います。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:677 +#: apt.conf.5.xml:678 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4581,7 +4593,7 @@ msgstr "" "されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:683 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4590,7 +4602,7 @@ msgstr "" "されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:688 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4599,12 +4611,12 @@ msgstr "" "します。デフォルトはエラーが発生した場合のみです。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:693 +#: apt.conf.5.xml:694 msgid "How APT calls &dpkg;" msgstr "APT が &dpkg; を呼ぶ方法" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:695 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4613,7 +4625,7 @@ msgstr "" "<literal>DPkg</literal> セクションにあります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:700 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4623,7 +4635,7 @@ msgstr "" "なければなりません。また、各リストは単一の引数として &dpkg; に渡されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:705 +#: apt.conf.5.xml:706 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4635,7 +4647,7 @@ msgstr "" "bin/sh</filename> を通して呼び出され、何か問題があれば APT が異常終了します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:712 +#: apt.conf.5.xml:713 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4658,7 +4670,7 @@ msgstr "" "マンドの標準入力に送ります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:719 +#: apt.conf.5.xml:720 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4679,7 +4691,7 @@ msgstr "" "Install-Pkgs</literal> で与えられるコマンドです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:724 +#: apt.conf.5.xml:725 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4690,7 +4702,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:731 +#: apt.conf.5.xml:732 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4701,7 +4713,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:742 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4710,7 +4722,7 @@ msgstr "" "<filename>/</filename> です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:746 +#: apt.conf.5.xml:747 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4719,12 +4731,12 @@ msgstr "" "ます。デフォルトでは署名を無効にし、全バイナリを生成します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:751 +#: apt.conf.5.xml:752 msgid "dpkg trigger usage (and related options)" msgstr "dpkg トリガの使い方 (および関連オプション)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:753 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4748,7 +4760,7 @@ msgstr "" "(もしくはそれ以上) の時間 100% のままとなり、進捗レポートを壊してしまいます。" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:767 +#: apt.conf.5.xml:768 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4762,7 +4774,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:762 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4785,7 +4797,7 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:774 +#: apt.conf.5.xml:775 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4805,7 +4817,7 @@ msgstr "" "在 APT は、このフラグを、展開呼び出しや削除呼び出しにも追加します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:782 +#: apt.conf.5.xml:783 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4832,7 +4844,7 @@ msgstr "" "能性があるからです。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:798 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4849,7 +4861,7 @@ msgstr "" "では、最後以外のすべての実行で、無効にできます。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:804 +#: apt.conf.5.xml:805 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4864,7 +4876,7 @@ msgstr "" "ことに注意してください。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:818 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4882,7 +4894,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:810 +#: apt.conf.5.xml:811 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4905,12 +4917,12 @@ msgstr "" "\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:831 msgid "Periodic and Archives options" msgstr "Periodic オプションと Archives オプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:832 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4923,12 +4935,12 @@ msgstr "" "トは、このスクリプトの先頭を参照してください。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:839 +#: apt.conf.5.xml:840 msgid "Debug options" msgstr "デバッグオプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:841 +#: apt.conf.5.xml:842 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4944,7 +4956,7 @@ msgstr "" "のオプションは興味がないでしょうが、以下のものは興味を引くかもしれません。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:852 +#: apt.conf.5.xml:853 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4955,7 +4967,7 @@ msgstr "" "にします。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:861 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4966,7 +4978,7 @@ msgstr "" "literal>) を行う場合に使用します。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:870 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4978,7 +4990,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:878 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -4987,34 +4999,34 @@ msgstr "" "ないようにします。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:888 msgid "A full list of debugging options to apt follows." msgstr "以下は apt に対するデバッグオプションのすべてです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:896 +#: apt.conf.5.xml:897 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:907 +#: apt.conf.5.xml:908 msgid "Print information related to downloading packages using FTP." msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:919 msgid "Print information related to downloading packages using HTTP." msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:930 msgid "Print information related to downloading packages using HTTPS." msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:940 +#: apt.conf.5.xml:941 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5022,7 +5034,7 @@ msgstr "" "<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:951 +#: apt.conf.5.xml:952 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5031,12 +5043,12 @@ msgstr "" "します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:961 +#: apt.conf.5.xml:962 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "&apt-get; での構築依存関係解決のプロセスを説明します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:971 +#: apt.conf.5.xml:972 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5044,7 +5056,7 @@ msgstr "" "<literal>apt</literal> ライブラリが生成した、暗号化ハッシュを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:981 +#: apt.conf.5.xml:982 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5054,7 +5066,7 @@ msgstr "" "システムにある使用済・未使用ブロックの数からの情報を含めないようにします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:992 +#: apt.conf.5.xml:993 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." @@ -5063,13 +5075,13 @@ msgstr "" "<quote><literal>apt-get update</literal></quote> を実行できるようになります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1004 +#: apt.conf.5.xml:1005 msgid "Log when items are added to or removed from the global download queue." msgstr "" "グローバルダウンロードキューに対する項目の追加・削除の際にログを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1014 +#: apt.conf.5.xml:1015 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5078,7 +5090,7 @@ msgstr "" "ジやエラーを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1024 +#: apt.conf.5.xml:1025 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5087,7 +5099,7 @@ msgstr "" "します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1036 +#: apt.conf.5.xml:1037 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5096,14 +5108,14 @@ msgstr "" "リストへのパッチ適用に関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1047 +#: apt.conf.5.xml:1048 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" "実際のダウンロードを行う際の、サブプロセスとのやりとりをログに出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1058 +#: apt.conf.5.xml:1059 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5112,7 +5124,7 @@ msgstr "" "に出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1068 +#: apt.conf.5.xml:1069 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5127,7 +5139,7 @@ msgstr "" "路に対応しています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1082 +#: apt.conf.5.xml:1083 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5156,7 +5168,7 @@ msgstr "" "ます。<literal>section</literal> はパッケージが現れるセクション名です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1103 +#: apt.conf.5.xml:1104 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5165,7 +5177,7 @@ msgstr "" "切られます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1114 +#: apt.conf.5.xml:1115 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5174,7 +5186,7 @@ msgstr "" "を解析中に発生したエラーを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1125 +#: apt.conf.5.xml:1126 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5183,18 +5195,18 @@ msgstr "" "のトレースを生成します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1137 +#: apt.conf.5.xml:1138 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "&dpkg; を呼び出す際に、実行手順を追跡した状態メッセージを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1148 +#: apt.conf.5.xml:1149 msgid "Output the priority of each package list on startup." msgstr "起動時の各パッケージの優先度を表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1158 +#: apt.conf.5.xml:1159 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5203,7 +5215,7 @@ msgstr "" "した場合にのみ、適用されます)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1169 +#: apt.conf.5.xml:1170 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5214,7 +5226,7 @@ msgstr "" "説明したものと同じです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1181 +#: apt.conf.5.xml:1182 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5223,7 +5235,7 @@ msgstr "" "します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1191 +#: apt.conf.5.xml:1192 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5231,13 +5243,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "サンプル" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1216 +#: apt.conf.5.xml:1217 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5247,7 +5259,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1228 +#: apt.conf.5.xml:1229 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -8194,34 +8206,51 @@ msgstr "" "<command>apt-ftparchive</command> は正常終了時に 0 を返します。エラー時には十" "進の 100 を返します。" -#. type: <title> -#: guide.sgml:4 +#. type: Attribute 'lang' of: +#: guide.dbk:8 offline.dbk:8 +msgid "en" +msgstr "ja" + +#. type: Content of: +#: guide.dbk:10 msgid "APT User's Guide" msgstr "APT ユーザガイド" -#. type: <author></author> -#: guide.sgml:6 offline.sgml:6 -msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" -msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#. type: Content of: <book><bookinfo><authorgroup><author><personname> +#: guide.dbk:16 offline.dbk:16 +msgid "Jason Gunthorpe" +msgstr "Jason Gunthorpe" + +#. type: Content of: <book><bookinfo><authorgroup><author><email> +#: guide.dbk:16 offline.dbk:16 +msgid "jgg@debian.org" +msgstr "jgg@debian.org" -#. type: <version></version> -#: guide.sgml:7 -msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#. type: Content of: <book><bookinfo><releaseinfo> +#: guide.dbk:20 offline.dbk:20 +msgid "Version &apt-product-version;" +msgstr "" -#. type: <abstract></abstract> -#: guide.sgml:11 +#. type: Content of: <book><bookinfo><abstract><para> +#: guide.dbk:24 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "本文書は APT パッケージマネージャの使い方の概要を提供します。" -#. type: <copyrightsummary></copyrightsummary> -#: guide.sgml:15 -msgid "Copyright © Jason Gunthorpe, 1998." -msgstr "Copyright © Jason Gunthorpe, 1998." +#. type: Content of: <book><bookinfo> +#: guide.dbk:28 +msgid "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" + +#. type: Content of: <book><bookinfo><legalnotice><title> +#: guide.dbk:31 offline.dbk:32 +msgid "License Notice" +msgstr "" -#. type: <p></p> -#: guide.sgml:21 offline.sgml:22 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:33 offline.dbk:34 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 " @@ -8233,8 +8262,8 @@ msgstr "" "published by the Free Software Foundation; either version 2 of the License, " "or (at your option) any later version." -#. type: <p></p> -#: guide.sgml:24 offline.sgml:25 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:42 offline.dbk:40 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8242,35 +8271,35 @@ msgstr "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." -#. type: <heading></heading> -#: guide.sgml:32 +#. type: Content of: <book><chapter><title> +#: guide.dbk:49 msgid "General" msgstr "全般" -#. type: <p></p> -#: guide.sgml:38 +#. type: Content of: <book><chapter><para> +#: guide.dbk:51 msgid "" -"The APT package currently contains two sections, the APT <prgn>dselect</" -"prgn> method and the <prgn>apt-get</prgn> command line user interface. Both " -"provide a way to install and remove packages as well as download new " -"packages from the Internet." +"The APT package currently contains two sections, the APT <command>dselect</" +"command> method and the <command>apt-get</command> command line user " +"interface. Both provide a way to install and remove packages as well as " +"download new packages from the Internet." msgstr "" -#. type: <heading></heading> -#: guide.sgml:39 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:57 msgid "Anatomy of the Package System" msgstr "パッケージシステムの構造" -#. type: <p></p> -#: guide.sgml:44 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:59 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 "" -#. type: <p></p> -#: guide.sgml:52 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:64 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8279,8 +8308,8 @@ msgid "" "in mail transport agents, X servers and so on." msgstr "" -#. type: <p></p> -#: guide.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:71 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 " @@ -8288,8 +8317,8 @@ msgid "" "properly." msgstr "" -#. type: <p></p> -#: guide.sgml:63 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:76 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 " @@ -8297,8 +8326,8 @@ msgid "" "simple dependency on emacs, without emacs it is completely useless." msgstr "" -#. type: <p></p> -#: guide.sgml:73 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:82 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 " @@ -8310,8 +8339,8 @@ msgid "" "other mail transport agents." msgstr "" -#. type: <p></p> -#: guide.sgml:83 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:92 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 " @@ -8323,8 +8352,8 @@ msgid "" "trying to manually fix packages." msgstr "" -#. type: <p></p> -#: guide.sgml:88 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:102 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 " @@ -8332,76 +8361,82 @@ msgid "" "packages for installation." msgstr "" -#. type: <heading></heading> -#: guide.sgml:96 +#. type: Content of: <book><chapter><title> +#: guide.dbk:111 msgid "apt-get" msgstr "apt-get" -#. type: <p></p> -#: guide.sgml:102 +#. type: Content of: <book><chapter><para> +#: guide.dbk:113 msgid "" -"<prgn>apt-get</prgn> provides a simple way to install packages from the " -"command line. Unlike <prgn>dpkg</prgn>, <prgn>apt-get</prgn> does not " -"understand .deb files, it works with the package's proper name and can only " -"install .deb archives from a <em>Source</em>." +"<command>apt-get</command> provides a simple way to install packages from " +"the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " +"does not understand .deb files, it works with the package's proper name and " +"can only install .deb archives from a <emphasis>Source</emphasis>." msgstr "" -#. type: <p></p> -#: guide.sgml:109 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:119 msgid "" -"The first <footnote><p>If you are using an http proxy server you must set " -"the http_proxy environment variable first, see sources.list(5)</p></" -"footnote> thing that should be done before using <prgn>apt-get</prgn> is to " -"fetch the package lists from the <em>Sources</em> so that it knows what " -"packages are available. This is done with <tt>apt-get update</tt>. For " -"instance," +"If you are using an http proxy server you must set the http_proxy " +"environment variable first, see sources.list(5)" msgstr "" -#. type: <example></example> -#: guide.sgml:116 +#. type: Content of: <book><chapter><para> +#: guide.dbk:119 +msgid "" +"The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " +"done before using <command>apt-get</command> is to fetch the package lists " +"from the <emphasis>Sources</emphasis> so that it knows what packages are " +"available. This is done with <literal>apt-get update</literal>. For instance," +msgstr "" + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:127 #, no-wrap msgid "" "# 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" +"Building Dependency Tree... Done\n" 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" +"Building Dependency Tree... Done\n" -#. type: <p><taglist> -#: guide.sgml:120 +#. type: Content of: <book><chapter><para> +#: guide.dbk:134 msgid "Once updated there are several commands that can be used:" msgstr "" -#. type: <tag></tag> -#: guide.sgml:121 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:138 msgid "upgrade" msgstr "upgrade" -#. type: <p></p> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:141 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 " "upgrade a package that might cause some other package to break. This can be " "used daily to relatively safely upgrade the system. Upgrade will list all of " "the packages that it could not upgrade, this usually means that they depend " -"on new packages or conflict with some other package. <prgn>dselect</prgn> or " -"<tt>apt-get install</tt> can be used to force these packages to install." +"on new packages or conflict with some other package. <command>dselect</" +"command> or <literal>apt-get install</literal> can be used to force these " +"packages to install." msgstr "" -#. type: <tag></tag> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:153 msgid "install" msgstr "install" -#. type: <p></p> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:156 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 " @@ -8412,130 +8447,134 @@ msgid "" "anything other than its arguments are changed." msgstr "" -#. type: <tag></tag> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:167 msgid "dist-upgrade" msgstr "dist-upgrade" -#. type: <p></p> -#: guide.sgml:149 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:170 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " "set of packages to install, upgrade and remove to get as much of the system " "to the newest release. In some situations it may be desired to use dist-" "upgrade rather than spend the time manually resolving dependencies in " -"<prgn>dselect</prgn>. Once dist-upgrade has completed then <prgn>dselect</" -"prgn> can be used to install any packages that may have been left out." +"<command>dselect</command>. Once dist-upgrade has completed then " +"<command>dselect</command> can be used to install any packages that may have " +"been left out." msgstr "" -#. type: <p></p> -#: guide.sgml:152 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:180 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." msgstr "" -#. type: <p></p> -#: guide.sgml:163 +#. type: Content of: <book><chapter><para> +#: guide.dbk:187 msgid "" -"<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -"option is <tt>-d</tt> which does not install the fetched files. If the " -"system has to download a large number of package it would be undesired to " -"start installing them in case something goes wrong. When <tt>-d</tt> is used " -"the downloaded archives can be installed by simply running the command that " -"caused them to be downloaded again without <tt>-d</tt>." +"<command>apt-get</command> has several command line options that are " +"detailed in its man page, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. The most useful " +"option is <literal>-d</literal> which does not install the fetched files. If " +"the system has to download a large number of package it would be undesired " +"to start installing them in case something goes wrong. When <literal>-d</" +"literal> is used the downloaded archives can be installed by simply running " +"the command that caused them to be downloaded again without <literal>-d</" +"literal>." msgstr "" -#. type: <heading></heading> -#: guide.sgml:168 +#. type: Content of: <book><chapter><title> +#: guide.dbk:199 msgid "DSelect" msgstr "DSelect" -#. type: <p></p> -#: guide.sgml:173 +#. type: Content of: <book><chapter><para> +#: guide.dbk:201 msgid "" -"The APT <prgn>dselect</prgn> method provides the complete APT system with " -"the <prgn>dselect</prgn> package selection GUI. <prgn>dselect</prgn> is used " -"to select the packages to be installed or removed and APT actually installs " -"them." +"The APT <command>dselect</command> method provides the complete APT system " +"with the <command>dselect</command> package selection GUI. <command>dselect</" +"command> is used to select the packages to be installed or removed and APT " +"actually installs them." msgstr "" -#. type: <p></p> -#: guide.sgml:184 +#. type: Content of: <book><chapter><para> +#: guide.dbk:207 msgid "" -"To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " -"and then choose the APT method. You will be prompted for a set of " -"<em>Sources</em> which are places to fetch archives from. These can be " -"remote Internet sites, local Debian mirrors or CD-ROMs. Each source can " -"provide a fragment of the total Debian archive, APT will automatically " +"To enable the APT method you need to select [A]ccess in <command>dselect</" +"command> and then choose the APT method. You will be prompted for a set of " +"<emphasis>Sources</emphasis> which are places to fetch archives from. These " +"can be remote Internet sites, local Debian mirrors or CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet." msgstr "" -#. type: <example></example> -#: guide.sgml:198 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:218 #, no-wrap msgid "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" -msgstr " " +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" +msgstr "" -#. type: <p></p> -#: guide.sgml:205 +#. type: Content of: <book><chapter><para> +#: guide.dbk:232 msgid "" -"The <em>Sources</em> setup starts by asking for the base of the Debian " -"archive, defaulting to a HTTP mirror. Next it asks for the distribution to " -"get." +"The <emphasis>Sources</emphasis> 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 "" -#. type: <example></example> -#: guide.sgml:212 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:237 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" -msgstr " " +"\n" +" Distribution [stable]:\n" +msgstr "" -#. type: <p></p> -#: guide.sgml:222 +#. type: Content of: <book><chapter><para> +#: guide.dbk:244 msgid "" -"The distribution refers to the Debian version in the archive, <em>stable</" -"em> refers to the latest released version and <em>unstable</em> refers to " -"the developmental version. <em>non-US</em> is only available on some mirrors " -"and refers to packages that contain encryption technology or other things " -"that cannot be exported from the United States. Importing these packages " -"into the US is legal however." +"The distribution refers to the Debian version in the archive, " +"<emphasis>stable</emphasis> refers to the latest released version and " +"<emphasis>unstable</emphasis> refers to the developmental version. " +"<emphasis>non-US</emphasis> is only available on some mirrors and refers to " +"packages that contain encryption technology or other things that cannot be " +"exported from the United States. Importing these packages into the US is " +"legal however." msgstr "" -#. type: <example></example> -#: guide.sgml:228 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:253 #, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" -msgstr " " +"\n" +" Components [main contrib non-free]:\n" +msgstr "" -#. type: <p></p> -#: guide.sgml:236 +#. type: Content of: <book><chapter><para> +#: guide.dbk:259 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 " @@ -8543,25 +8582,25 @@ msgid "" "restrictions placed on their use and distribution." msgstr "" -#. type: <p></p> -#: guide.sgml:240 +#. type: Content of: <book><chapter><para> +#: guide.dbk:265 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." msgstr "" -#. type: <p></p> -#: guide.sgml:247 +#. type: Content of: <book><chapter><para> +#: guide.dbk:269 msgid "" -"Before starting to use <prgn>dselect</prgn> it is necessary to update the " -"available list by selecting [U]pdate from the menu. This is a superset of " -"<tt>apt-get update</tt> that makes the fetched information available to " -"<prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get update</" -"tt> has been run before." +"Before starting to use <command>dselect</command> it is necessary to update " +"the available list by selecting [U]pdate from the menu. This is a superset " +"of <literal>apt-get update</literal> that makes the fetched information " +"available to <command>dselect</command>. [U]pdate must be performed even if " +"<literal>apt-get update</literal> has been run before." msgstr "" -#. type: <p></p> -#: guide.sgml:253 +#. type: Content of: <book><chapter><para> +#: guide.dbk:276 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 " @@ -8569,60 +8608,66 @@ msgid "" "them together." msgstr "" -#. type: <p></p> -#: guide.sgml:258 +#. type: Content of: <book><chapter><para> +#: guide.dbk:282 msgid "" "By default APT will automatically remove the package (.deb) files once they " -"have been successfully installed. To change this behavior place <tt>Dselect::" -"clean \"prompt\";</tt> in /etc/apt/apt.conf." +"have been successfully installed. To change this behavior place " +"<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" -#. type: <heading></heading> -#: guide.sgml:264 +#. type: Content of: <book><chapter><title> +#: guide.dbk:288 msgid "The Interface" msgstr "インターフェース" -#. type: <p></p> -#: guide.sgml:278 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:292 +msgid "" +"The <command>dselect</command> method actually is a set of wrapper scripts " +"to <command>apt-get</command>. The method actually provides more " +"functionality than is present in <command>apt-get</command> alone." +msgstr "" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:290 msgid "" -"Both that APT <prgn>dselect</prgn> method and <prgn>apt-get</prgn> share the " -"same interface. It is a simple system that generally tells you what it will " -"do and then goes and does it. <footnote><p>The <prgn>dselect</prgn> method " -"actually is a set of wrapper scripts to <prgn>apt-get</prgn>. The method " -"actually provides more functionality than is present in <prgn>apt-get</prgn> " -"alone.</p></footnote> After printing out a summary of what will happen APT " +"Both that APT <command>dselect</command> method and <command>apt-get</" +"command> share the same interface. It is a simple system that generally " +"tells you what it will do and then goes and does it. <placeholder type=" +"\"footnote\" id=\"0\"/> After printing out a summary of what will happen APT " "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 "" -#. type: <heading></heading> -#: guide.sgml:280 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:301 msgid "Startup" msgstr "スタートアップ" -#. type: <p></p> -#: guide.sgml:284 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:303 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 <tt>apt-get check</" -"tt>." +"At any time these operations can be performed by running <literal>apt-get " +"check</literal>." msgstr "" -#. type: <example></example> -#: guide.sgml:289 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:309 #, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" -#. type: <p></p> -#: guide.sgml:297 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:314 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. " @@ -8630,17 +8675,17 @@ msgid "" "warning will be printed when apt-get exits." msgstr "" -#. type: <p></p> -#: guide.sgml:303 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:320 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " "package and considers if it is OK. Should this find a problem then a report " -"will be printed out and <prgn>apt-get</prgn> will refuse to run." +"will be printed out and <command>apt-get</command> will refuse to run." msgstr "" -#. type: <example></example> -#: guide.sgml:320 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:326 #, no-wrap msgid "" "# apt-get check\n" @@ -8650,14 +8695,14 @@ msgid "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" msgstr "" "# apt-get check\n" "Reading Package Lists... Done\n" @@ -8666,17 +8711,17 @@ msgstr "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" -#. type: <p></p> -#: guide.sgml:329 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:343 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 " @@ -8685,61 +8730,69 @@ msgid "" "problem is also included." msgstr "" -#. type: <p></p> -#: guide.sgml:337 +#. type: Content of: <book><chapter><section><para><footnote><para> +#: guide.dbk:352 +msgid "" +"APT however considers all known dependencies and attempts to prevent broken " +"packages" +msgstr "" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:350 msgid "" "There are two ways a system can get into a broken state like this. The first " -"is caused by <prgn>dpkg</prgn> missing some subtle relationships between " -"packages when performing upgrades. <footnote><p>APT however considers all " -"known dependencies and attempts to prevent broken packages</p></footnote>. " -"The second is if a package installation fails during an operation. In this " -"situation a package may have been unpacked without its dependents being " -"installed." +"is caused by <command>dpkg</command> missing some subtle relationships " +"between packages when performing upgrades. <placeholder type=\"footnote\" id=" +"\"0\"/>. The second is if a package installation fails during an operation. " +"In this situation a package may have been unpacked without its dependents " +"being installed." msgstr "" -#. type: <p></p> -#: guide.sgml:345 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:359 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 " -"supplying the <tt>-f</tt> option to <prgn>apt-get</prgn> will cause APT to " -"deduce a possible solution to the problem and then continue on. The APT " -"<prgn>dselect</prgn> method always supplies the <tt>-f</tt> option to allow " -"for easy continuation of failed maintainer scripts." +"supplying the <literal>-f</literal> option to <command>apt-get</command> " +"will cause APT to deduce a possible solution to the problem and then " +"continue on. The APT <command>dselect</command> method always supplies the " +"<literal>-f</literal> option to allow for easy continuation of failed " +"maintainer scripts." msgstr "" -#. type: <p></p> -#: guide.sgml:351 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:368 msgid "" -"However, if the <tt>-f</tt> option is used to correct a seriously broken " -"system caused by the first case then it is possible that it will either fail " -"immediately or the installation sequence will fail. In either case it is " -"necessary to manually use dpkg (possibly with forcing options) to correct " -"the situation enough to allow APT to proceed." +"However, if the <literal>-f</literal> option is used to correct a seriously " +"broken system caused by the first case then it is possible that it will " +"either fail immediately or the installation sequence will fail. In either " +"case it is necessary to manually use dpkg (possibly with forcing options) to " +"correct the situation enough to allow APT to proceed." msgstr "" -#. type: <heading></heading> -#: guide.sgml:356 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:376 msgid "The Status Report" msgstr "状態レポート" -#. type: <p></p> -#: guide.sgml:363 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:378 msgid "" -"Before proceeding <prgn>apt-get</prgn> will present a report on what will " -"happen. Generally the report reflects the type of operation being performed " -"but there are several common elements. In all cases the lists reflect the " -"final state of things, taking into account the <tt>-f</tt> option and any " -"other relevant activities to the command being executed." +"Before proceeding <command>apt-get</command> will present a report on what " +"will happen. Generally the report reflects the type of operation being " +"performed but there are several common elements. In all cases the lists " +"reflect the final state of things, taking into account the <literal>-f</" +"literal> option and any other relevant activities to the command being " +"executed." msgstr "" -#. type: <heading></heading> -#: guide.sgml:364 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:385 msgid "The Extra Package list" msgstr "追加パッケージリスト" -#. type: <example></example> -#: guide.sgml:372 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:387 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -8747,156 +8800,156 @@ msgid "" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" msgstr "" "The following extra packages will be installed:\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" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" -#. type: <p></p> -#: guide.sgml:379 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:395 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 <tt>install</tt> command. The listed packages are often the " -"result of an Auto Install." +"generated for an <literal>install</literal> command. The listed packages are " +"often the result of an Auto Install." msgstr "" -#. type: <heading></heading> -#: guide.sgml:382 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:402 msgid "The Packages to Remove" msgstr "削除するパッケージ" -#. type: <example></example> -#: guide.sgml:389 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:404 #, no-wrap msgid "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" msgstr "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" -#. type: <p></p> -#: guide.sgml:399 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:411 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 " "given a careful inspection to ensure nothing important is to be taken off. " -"The <tt>-f</tt> option is especially good at generating packages to remove " -"so extreme care should be used in that case. The list may contain packages " -"that are going to be removed because they are only partially installed, " -"possibly due to an aborted installation." +"The <literal>-f</literal> option is especially good at generating packages " +"to remove so extreme care should be used in that case. The list may contain " +"packages that are going to be removed because they are only partially " +"installed, possibly due to an aborted installation." msgstr "" -#. type: <heading></heading> -#: guide.sgml:402 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:421 msgid "The New Packages list" msgstr "新規パッケージリスト" -#. type: <example></example> -#: guide.sgml:406 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:423 #, no-wrap msgid "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" msgstr "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" -#. type: <p></p> -#: guide.sgml:411 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:427 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 "" -#. type: <heading></heading> -#: guide.sgml:414 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:432 msgid "The Kept Back list" msgstr "一時固定リスト" -#. type: <example></example> -#: guide.sgml:419 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:434 #, 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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" msgstr "" "The following packages have been kept back\n" " compface man-db tetex-base msql libpaper svgalib1\n" -" gs snmp arena lynx xpat2 groff xscreensaver" +" gs snmp arena lynx xpat2 groff xscreensaver\n" -#. type: <p></p> -#: guide.sgml:428 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:439 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 " "or conflict with already installed things. In this case the package will " "appear in the Kept Back list. The best way to convince packages listed there " -"to install is with <tt>apt-get install</tt> or by using <prgn>dselect</prgn> " -"to resolve their problems." +"to install is with <literal>apt-get install</literal> or by using " +"<command>dselect</command> to resolve their problems." msgstr "" -#. type: <heading></heading> -#: guide.sgml:431 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:448 msgid "Held Packages warning" msgstr "保留パッケージの警告" -#. type: <example></example> -#: guide.sgml:435 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:450 #, no-wrap msgid "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" msgstr "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" -#. type: <p></p> -#: guide.sgml:441 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:454 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 "" -#. type: <heading></heading> -#: guide.sgml:444 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:460 msgid "Final summary" msgstr "最後のまとめ" -#. type: <p></p> -#: guide.sgml:447 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:462 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" -#. type: <example></example> -#: guide.sgml:452 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:465 #, 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" -#. type: <p></p> -#: guide.sgml:470 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:470 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 " @@ -8913,27 +8966,27 @@ msgid "" "the amount of space that will be freed." msgstr "" -#. type: <p></p> -#: guide.sgml:473 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:484 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." msgstr "" -#. type: <heading></heading> -#: guide.sgml:477 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:491 msgid "The Status Display" msgstr "状態表示" -#. type: <p></p> -#: guide.sgml:481 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:493 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." msgstr "" -#. type: <example></example> -#: guide.sgml:490 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:497 #, no-wrap msgid "" "# apt-get update\n" @@ -8942,7 +8995,7 @@ msgid "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" msgstr "" "# apt-get update\n" "Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" @@ -8950,87 +9003,83 @@ msgstr "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" -#. type: <p></p> -#: guide.sgml:500 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:506 msgid "" -"The lines starting with <em>Get</em> are printed out when APT begins to " -"fetch a file while the last line indicates the progress of the download. The " -"first percent value on the progress line indicates the total percent done of " -"all files. Unfortunately since the size of the Package files is unknown " -"<tt>apt-get update</tt> estimates the percent done which causes some " -"inaccuracies." +"The lines starting with <emphasis>Get</emphasis> are printed out when APT " +"begins to fetch a file while the last line indicates the progress of the " +"download. The first percent value on the progress line indicates the total " +"percent done of all files. Unfortunately since the size of the Package files " +"is unknown <literal>apt-get update</literal> estimates the percent done " +"which causes some inaccuracies." msgstr "" -#. type: <p></p> -#: guide.sgml:509 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:514 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " "information about what is happening. Sometimes this section will simply read " -"<em>Forking</em> which means the OS is loading the download module. The " -"first word after the [ is the fetch number as shown on the history lines. " -"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." +"<emphasis>Forking</emphasis> which means the OS is loading the download " +"module. The first word after the [ is the fetch number as shown on the " +"history lines. 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 "" -#. type: <p></p> -#: guide.sgml:524 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:524 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " -"<em>Connecting</em> to <em>Waiting for file</em> to <em>Downloading</em> or " -"<em>Resuming</em>. The final value is the number of bytes downloaded from " -"the remote site. Once the download begins this is represented as " -"<tt>102/10.2k</tt> indicating that 102 bytes have been fetched and 10.2 " -"kilobytes is expected. The total size is always shown in 4 figure notation " -"to preserve space. After the size display is a percent meter for the file " -"itself. The second last element is the instantaneous average speed. This " -"values is updated every 5 seconds and reflects the rate of data transfer for " -"that period. Finally is shown the estimated transfer time. This is updated " -"regularly and reflects the time to complete everything at the shown transfer " -"rate." -msgstr "" - -#. type: <p></p> -#: guide.sgml:530 +"<emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to " +"<emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final " +"value is the number of bytes downloaded from the remote site. Once the " +"download begins this is represented as <literal>102/10.2k</literal> " +"indicating that 102 bytes have been fetched and 10.2 kilobytes is expected. " +"The total size is always shown in 4 figure notation to preserve space. After " +"the size display is a percent meter for the file itself. The second last " +"element is the instantaneous average speed. This values is updated every 5 " +"seconds and reflects the rate of data transfer for that period. Finally is " +"shown the estimated transfer time. This is updated regularly and reflects " +"the time to complete everything at the shown transfer rate." +msgstr "" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:539 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 " "is started. Since the status display is constantly updated it is unsuitable " -"for logging to a file, use the <tt>-q</tt> option to remove the status " -"display." +"for logging to a file, use the <literal>-q</literal> option to remove the " +"status display." msgstr "" -#. type: <heading></heading> -#: guide.sgml:535 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:547 msgid "Dpkg" msgstr "Dpkg" -#. type: <p></p> -#: guide.sgml:542 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:549 msgid "" -"APT uses <prgn>dpkg</prgn> for installing the archives and will switch over " -"to the <prgn>dpkg</prgn> interface once downloading is completed. " -"<prgn>dpkg</prgn> will also ask a number of questions as it processes the " -"packages and the packages themselves may also ask several questions. Before " -"each question there is usually a description of what it is asking and the " -"questions are too varied to discuss completely here." +"APT uses <command>dpkg</command> for installing the archives and will switch " +"over to the <command>dpkg</command> interface once downloading is completed. " +"<command>dpkg</command> will also ask a number of questions as it processes " +"the packages and the packages themselves may also ask several questions. " +"Before each question there is usually a description of what it is asking and " +"the questions are too varied to discuss completely here." msgstr "" -#. type: <title> -#: offline.sgml:4 +#. type: Content of: +#: offline.dbk:10 msgid "Using APT Offline" msgstr "オフラインでの APT の使用法" -#. type: <version></version> -#: offline.sgml:7 -msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" - -#. type: <abstract></abstract> -#: offline.sgml:12 +#. type: Content of: <book><bookinfo><abstract><para> +#: offline.dbk:24 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9038,23 +9087,24 @@ msgstr "" "このドキュメントはネットワークがない環境での APT の使用方法を説明しています。" "具体的には、アップグレード時の「スニーカーネット」アプローチです。" -#. type: <copyrightsummary></copyrightsummary> -#: offline.sgml:16 -msgid "Copyright © Jason Gunthorpe, 1999." -msgstr "Copyright © Jason Gunthorpe, 1999." +#. type: Content of: <book><bookinfo> +#: offline.dbk:29 +msgid "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" -#. type: <heading></heading> -#: offline.sgml:32 +#. type: Content of: <book><chapter><title> +#: offline.dbk:47 msgid "Introduction" msgstr "はじめに" -#. type: <heading></heading> -#: offline.sgml:34 offline.sgml:65 offline.sgml:180 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:49 offline.dbk:79 offline.dbk:191 msgid "Overview" msgstr "概要" -#. type: <p></p> -#: offline.sgml:40 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:51 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9062,8 +9112,8 @@ msgid "" "fast connection but they are physically distant." msgstr "" -#. type: <p></p> -#: offline.sgml:51 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:57 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9071,13 +9121,13 @@ msgid "" "to use APT to generate a list of packages that are required and then fetch " "them onto the disc using another machine with good connectivity. It is even " "possible to use another Debian machine with APT or to use a completely " -"different OS and a download tool like wget. Let <em>remote host</em> mean " -"the machine downloading the packages, and <em>target host</em> the one with " -"bad or no connection." +"different OS and a download tool like wget. Let <emphasis>remote host</" +"emphasis> mean the machine downloading the packages, and <emphasis>target " +"host</emphasis> the one with bad or no connection." msgstr "" -#. type: <p></p> -#: offline.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:68 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9085,13 +9135,13 @@ msgid "" "names such as ext2, fat32 or vfat." msgstr "" -#. type: <heading></heading> -#: offline.sgml:63 +#. type: Content of: <book><chapter><title> +#: offline.dbk:77 msgid "Using APT on both machines" msgstr "両方のマシンでの APT の使用法" -#. type: <p><example> -#: offline.sgml:71 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:81 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9099,8 +9149,8 @@ msgid "" "to download. The disk directory structure should look like:" msgstr "" -#. type: <example></example> -#: offline.sgml:80 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:87 #, no-wrap msgid "" " /disc/\n" @@ -9110,7 +9160,7 @@ msgid "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" msgstr "" " /disc/\n" " archives/\n" @@ -9119,33 +9169,34 @@ msgstr "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" -#. type: <heading></heading> -#: offline.sgml:88 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:98 msgid "The configuration file" msgstr "設定ファイル" -#. type: <p></p> -#: offline.sgml:96 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:100 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " "contain the proper sites that you wish to use from the remote machine, and " -"the status file should be a copy of <em>/var/lib/dpkg/status</em> from the " -"<em>target host</em>. Please note, if you are using a local archive you must " -"use copy URIs, the syntax is identical to file URIs." +"the status file should be a copy of <emphasis>/var/lib/dpkg/status</" +"emphasis> from the <emphasis>target host</emphasis>. Please note, if you are " +"using a local archive you must use copy URIs, the syntax is identical to " +"file URIs." msgstr "" -#. type: <p><example> -#: offline.sgml:100 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:108 msgid "" -"<em>apt.conf</em> must contain the necessary information to make APT use the " -"disc:" +"<emphasis>apt.conf</emphasis> must contain the necessary information to make " +"APT use the disc:" msgstr "" -#. type: <example></example> -#: offline.sgml:124 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:112 #, no-wrap msgid "" " APT\n" @@ -9153,10 +9204,10 @@ msgid "" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -9167,20 +9218,20 @@ msgid "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" msgstr "" " APT\n" " {\n" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -9191,85 +9242,87 @@ msgstr "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" -#. type: </example></p> -#: offline.sgml:129 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:137 msgid "" "More details can be seen by examining the apt.conf man page and the sample " -"configuration file in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis>." msgstr "" -#. type: <p><example> -#: offline.sgml:136 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:142 msgid "" -"On the target machine the first thing to do is mount the disc and copy <em>/" -"var/lib/dpkg/status</em> to it. You will also need to create the directories " -"outlined in the Overview, <em>archives/partial/</em> and <em>lists/partial/</" -"em>. Then take the disc to the remote machine and configure the sources." -"list. On the remote machine execute the following:" +"On the target machine the first thing to do is mount the disc and copy " +"<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " +"create the directories outlined in the Overview, <emphasis>archives/partial/" +"</emphasis> and <emphasis>lists/partial/</emphasis>. Then take the disc to " +"the remote machine and configure the sources.list. On the remote machine " +"execute the following:" msgstr "" -#. type: <example></example> -#: offline.sgml:142 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:151 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT fetches the package files ]\n" " # apt-get dist-upgrade\n" -" [ APT fetches all the packages needed to upgrade the target machine ]" +" [ APT fetches all the packages needed to upgrade the target machine ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ package ファイルを APT が取得します ]\n" " # apt-get dist-upgrade\n" -" [ 対象マシンをアップグレードするのに必要なパッケージを、APT が取得します ]" +" [ 対象マシンをアップグレードするのに必要なパッケージを、APT が取得します ]\n" -#. type: </example></p> -#: offline.sgml:149 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:158 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " -"such as <em>dselect</em>. However this presents a problem in communicating " -"your selections back to the local computer." +"such as <emphasis>dselect</emphasis>. However this presents a problem in " +"communicating your selections back to the local computer." msgstr "" -#. type: <p><example> -#: offline.sgml:153 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:164 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 "" -#. type: <example></example> -#: offline.sgml:159 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:168 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generates a local copy of the cache files ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Or any other APT command ]" +" [ Or any other APT command ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" -" [ キャッシュファイルのローカルコピーを生成します ]\n" -" # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ もしくはその他の APT コマンド ]" +" [ キャッシュファイルのローカルコピーを生成します ]\n" +" # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" +" [ もしくはその他の APT コマンド ]\n" -#. type: <p></p> -#: offline.sgml:165 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:175 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" msgstr "" -#. type: <p></p> -#: offline.sgml:172 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:179 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -9278,21 +9331,21 @@ msgid "" "status file if dpkg or APT have been run in the mean time!!" msgstr "" -#. type: <heading></heading> -#: offline.sgml:178 +#. type: Content of: <book><chapter><title> +#: offline.dbk:189 msgid "Using APT and wget" msgstr "APT と wget の使用法" -#. type: <p></p> -#: offline.sgml:185 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:193 msgid "" -"<em>wget</em> is a popular and portable download tool that can run on nearly " -"any machine. Unlike the method above this requires that the Debian machine " -"already has a list of available packages." +"<emphasis>wget</emphasis> is a popular and portable download tool that can " +"run on nearly any machine. Unlike the method above this requires that the " +"Debian machine already has a list of available packages." msgstr "" -#. type: <p></p> -#: offline.sgml:190 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:198 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -9300,41 +9353,41 @@ msgid "" "packages." msgstr "" -#. type: <heading></heading> -#: offline.sgml:196 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:204 msgid "Operation" msgstr "操作" -#. type: <p><example> -#: offline.sgml:200 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:206 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." msgstr "" -#. type: <example></example> -#: offline.sgml:205 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:210 #, no-wrap msgid "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" -#. type: </example></p> -#: offline.sgml:210 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:216 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." msgstr "" -#. type: <p></p> -#: offline.sgml:216 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:220 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -9342,38 +9395,38 @@ msgid "" "output on the disc." msgstr "" -#. type: <p><example> -#: offline.sgml:219 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:226 msgid "The remote machine would do something like" msgstr "リモートマシンでは以下のようにします。" -#. type: <example></example> -#: offline.sgml:223 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:229 #, no-wrap msgid "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" msgstr "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ お待ちください... ]" +" [ お待ちください... ]\n" -#. type: </example><example> -#: offline.sgml:228 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:234 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," msgstr "" -#. type: <example></example> -#: offline.sgml:230 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:238 #, no-wrap -msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" +msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" +msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" -#. type: </example></p> -#: offline.sgml:234 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." msgstr "これで、disc にある取得済みのアーカイブを使用するようになります。" diff --git a/doc/po/pl.po b/doc/po/pl.po index 5f92c521c..0eb144f5a 100644 --- a/doc/po/pl.po +++ b/doc/po/pl.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-05-05 16:26+0200\n" -"PO-Revision-Date: 2014-04-01 13:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"PO-Revision-Date: 2014-07-04 02:13+0200\n" "Last-Translator: Robert Luberda <robert@debian.org>\n" "Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n" "Language: pl\n" @@ -870,7 +870,7 @@ msgstr "linia <literal>Archive:</literal> lub <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 #: apt-ftparchive.1.xml:609 msgid "See Also" @@ -1888,7 +1888,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 +#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 msgid "Files" msgstr "Pliki" @@ -3131,10 +3131,10 @@ msgstr "" #: apt-secure.8.xml:195 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" msgstr "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:199 @@ -4317,14 +4317,15 @@ msgid "" "information, such as the two package caches <literal>srcpkgcache</literal> " "and <literal>pkgcache</literal> as well as the location to place downloaded " "archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " -"be turned off by setting their names to the empty string. This will slow " +"be turned off by setting <literal>pkgcache</literal> or " +"<literal>srcpkgcache</literal> to <literal>\"\"</literal>. This will slow " "down startup but save disk space. It is probably preferable to turn off the " -"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " -"default directory is contained in <literal>Dir::Cache</literal>" +"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> " +"the default directory is contained in <literal>Dir::Cache</literal>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:617 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4334,7 +4335,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:622 +#: apt.conf.5.xml:623 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4342,7 +4343,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:627 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4353,7 +4354,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:634 +#: apt.conf.5.xml:635 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4366,7 +4367,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:648 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4377,12 +4378,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:657 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:659 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4390,7 +4391,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:664 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4403,40 +4404,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:677 +#: apt.conf.5.xml:678 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:683 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:688 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:693 +#: apt.conf.5.xml:694 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:695 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:700 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4444,7 +4445,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:705 +#: apt.conf.5.xml:706 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4453,7 +4454,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:712 +#: apt.conf.5.xml:713 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4464,7 +4465,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:719 +#: apt.conf.5.xml:720 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4473,7 +4474,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:724 +#: apt.conf.5.xml:725 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4484,7 +4485,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:731 +#: apt.conf.5.xml:732 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4495,26 +4496,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:742 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:746 +#: apt.conf.5.xml:747 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:751 +#: apt.conf.5.xml:752 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:753 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4529,7 +4530,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:767 +#: apt.conf.5.xml:768 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4543,7 +4544,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:762 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4557,7 +4558,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:774 +#: apt.conf.5.xml:775 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4570,7 +4571,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:782 +#: apt.conf.5.xml:783 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4587,7 +4588,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:798 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4598,7 +4599,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:804 +#: apt.conf.5.xml:805 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4608,7 +4609,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:818 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4626,7 +4627,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:810 +#: apt.conf.5.xml:811 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4640,12 +4641,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:831 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:832 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4654,13 +4655,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:839 +#: apt.conf.5.xml:840 #, fuzzy msgid "Debug options" msgstr "opcje" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:841 +#: apt.conf.5.xml:842 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4671,7 +4672,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:852 +#: apt.conf.5.xml:853 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4679,7 +4680,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:861 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4687,7 +4688,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:870 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4697,7 +4698,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:878 #, fuzzy msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " @@ -4707,59 +4708,59 @@ msgstr "" "in CDROM IDs." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:888 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:896 +#: apt.conf.5.xml:897 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:907 +#: apt.conf.5.xml:908 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:919 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:930 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:940 +#: apt.conf.5.xml:941 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:951 +#: apt.conf.5.xml:952 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:961 +#: apt.conf.5.xml:962 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:971 +#: apt.conf.5.xml:972 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:981 +#: apt.conf.5.xml:982 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -4767,53 +4768,53 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:992 +#: apt.conf.5.xml:993 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 "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1004 +#: apt.conf.5.xml:1005 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1014 +#: apt.conf.5.xml:1015 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1024 +#: apt.conf.5.xml:1025 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1036 +#: apt.conf.5.xml:1037 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1047 +#: apt.conf.5.xml:1048 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1058 +#: apt.conf.5.xml:1059 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1068 +#: apt.conf.5.xml:1069 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -4823,7 +4824,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1082 +#: apt.conf.5.xml:1083 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -4841,46 +4842,46 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1103 +#: apt.conf.5.xml:1104 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1114 +#: apt.conf.5.xml:1115 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1125 +#: apt.conf.5.xml:1126 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1137 +#: apt.conf.5.xml:1138 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1148 +#: apt.conf.5.xml:1149 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1158 +#: apt.conf.5.xml:1159 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1169 +#: apt.conf.5.xml:1170 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -4888,14 +4889,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1181 +#: apt.conf.5.xml:1182 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1191 +#: apt.conf.5.xml:1192 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -4903,13 +4904,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Przykłady" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1216 +#: apt.conf.5.xml:1217 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -4917,7 +4918,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1228 +#: apt.conf.5.xml:1229 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -7763,34 +7764,51 @@ msgstr "" "<command>apt-ftparchive</command> zwraca zero, gdy zakończyło się pomyślnie, " "100 - w przypadku błędu." -#. type: <title> -#: guide.sgml:4 +#. type: Attribute 'lang' of: +#: guide.dbk:8 offline.dbk:8 +msgid "en" +msgstr "pl" + +#. type: Content of: +#: guide.dbk:10 msgid "APT User's Guide" msgstr "Podręcznik użytkownika APT" -#. type: <author></author> -#: guide.sgml:6 offline.sgml:6 -msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" -msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#. type: Content of: <book><bookinfo><authorgroup><author><personname> +#: guide.dbk:16 offline.dbk:16 +msgid "Jason Gunthorpe" +msgstr "Jason Gunthorpe" -#. type: <version></version> -#: guide.sgml:7 -msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#. type: Content of: <book><bookinfo><authorgroup><author><email> +#: guide.dbk:16 offline.dbk:16 +msgid "jgg@debian.org" +msgstr "jgg@debian.org" -#. type: <abstract></abstract> -#: guide.sgml:11 +#. type: Content of: <book><bookinfo><releaseinfo> +#: guide.dbk:20 offline.dbk:20 +msgid "Version &apt-product-version;" +msgstr "" + +#. type: Content of: <book><bookinfo><abstract><para> +#: guide.dbk:24 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "Dokument zawiera opis używania menadżera pakietów APT." -#. type: <copyrightsummary></copyrightsummary> -#: guide.sgml:15 -msgid "Copyright © Jason Gunthorpe, 1998." -msgstr "Copyright © Jason Gunthorpe, 1998." +#. type: Content of: <book><bookinfo> +#: guide.dbk:28 +msgid "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" + +#. type: Content of: <book><bookinfo><legalnotice><title> +#: guide.dbk:31 offline.dbk:32 +msgid "License Notice" +msgstr "" -#. type: <p></p> -#: guide.sgml:21 offline.sgml:22 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:33 offline.dbk:34 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 " @@ -7803,8 +7821,8 @@ msgstr "" "\" (GNU General Public License) publikowanej przez \"Fundację Wolnego " "Oprogramowania (Free Software Foundation)." -#. type: <p></p> -#: guide.sgml:24 offline.sgml:25 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:42 offline.dbk:40 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -7812,31 +7830,31 @@ msgstr "" "Więcej szczegółów można uzyskać, przeglądając plik zawierający pełen tekst " "licencji (w systemach Debian jest to plik /usr/share/common-licenses/GPL)." -#. type: <heading></heading> -#: guide.sgml:32 +#. type: Content of: <book><chapter><title> +#: guide.dbk:49 msgid "General" msgstr "Ogólne" -#. type: <p></p> -#: guide.sgml:38 +#. type: Content of: <book><chapter><para> +#: guide.dbk:51 msgid "" -"The APT package currently contains two sections, the APT <prgn>dselect</" -"prgn> method and the <prgn>apt-get</prgn> command line user interface. Both " -"provide a way to install and remove packages as well as download new " -"packages from the Internet." +"The APT package currently contains two sections, the APT <command>dselect</" +"command> method and the <command>apt-get</command> command line user " +"interface. Both provide a way to install and remove packages as well as " +"download new packages from the Internet." msgstr "" -"Pakiet APT składa się z dwóch części: z metody APT programu <prgn>dselect</" -"prgn> oraz z programu <prgn>apt-get</prgn> będącego interfejsem linii " -"poleceń. Obie części pozwalają na instalowanie i usuwanie pakietów oraz na " -"pobieranie nowych pakietów z Internetu." +"Pakiet APT składa się z dwóch części: z metody APT programu " +"<command>dselect</command> oraz z programu <command>apt-get</command> " +"będącego interfejsem linii poleceń. Obie części pozwalają na instalowanie i " +"usuwanie pakietów oraz na pobieranie nowych pakietów z Internetu." -#. type: <heading></heading> -#: guide.sgml:39 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:57 msgid "Anatomy of the Package System" msgstr "Budowa systemu pakietów" -#. type: <p></p> -#: guide.sgml:44 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:59 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 " @@ -7846,8 +7864,8 @@ msgstr "" "pakietem, zapewniających integralność pakietów w systemie. Najbardziej " "widoczną cechą systemu pakietów jest system zależności." -#. type: <p></p> -#: guide.sgml:52 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:64 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -7861,8 +7879,8 @@ msgstr "" "liczbę pakietów instalowanych przez przeciętnego użytkownika. Pozwala także " "wybierać programy odpowiedzialne za dostarczanie poczty, serwery X-ów itp." -#. type: <p></p> -#: guide.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:71 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 " @@ -7873,8 +7891,8 @@ msgstr "" "zrozumienie koncepcji prostej zależności. Prosta zależność oznacza, że dany " "pakiet do poprawnego działania wymaga zainstalowania innego pakietu." -#. type: <p></p> -#: guide.sgml:63 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:76 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 " @@ -7887,8 +7905,8 @@ msgstr "" "GPG. Ma także prostą zależność od pakietu emacs, ponieważ jest rozszerzeniem " "emacsa, więc i bez emacsa jest równie bezużyteczny." -#. type: <p></p> -#: guide.sgml:73 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:82 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 " @@ -7910,8 +7928,8 @@ msgstr "" "są w konflikcie ze wszystkimi innymi programami obsługującymi dostarczanie " "poczty." -#. type: <p></p> -#: guide.sgml:83 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:92 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 " @@ -7932,8 +7950,8 @@ msgstr "" "obsługi poczty. Może to być bardzo mylące podczas próby ręcznego naprawiania " "zależności pakietów." -#. type: <p></p> -#: guide.sgml:88 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:102 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 " @@ -7944,77 +7962,85 @@ msgstr "" "obecnie zainstalowane pakiety. ATP próbuje rozwiązać zależności używając " "pewnej liczby algorytmów pomagających w wyborze pakietów do zainstalowania." -#. type: <heading></heading> -#: guide.sgml:96 +#. type: Content of: <book><chapter><title> +#: guide.dbk:111 msgid "apt-get" msgstr "apt-get" -#. type: <p></p> -#: guide.sgml:102 -msgid "" -"<prgn>apt-get</prgn> provides a simple way to install packages from the " -"command line. Unlike <prgn>dpkg</prgn>, <prgn>apt-get</prgn> does not " -"understand .deb files, it works with the package's proper name and can only " -"install .deb archives from a <em>Source</em>." -msgstr "" -"<prgn>apt-get</prgn> dostarcza prostego sposobu na zainstalowanie pakietów z " -"linii poleceń. W przeciwieństwie do <prgn>dpkg</prgn>, <prgn>apt-get</prgn> " -"nie posługuje się nazwami plików \".deb\", lecz używa nazw pakietów i może " -"zainstalować tylko archiwa \".deb\" ze skonfigurowanych <em>źródeł</em>." - -#. type: <p></p> -#: guide.sgml:109 -msgid "" -"The first <footnote><p>If you are using an http proxy server you must set " -"the http_proxy environment variable first, see sources.list(5)</p></" -"footnote> thing that should be done before using <prgn>apt-get</prgn> is to " -"fetch the package lists from the <em>Sources</em> so that it knows what " -"packages are available. This is done with <tt>apt-get update</tt>. For " -"instance," -msgstr "" -"Pierwszą rzeczą <footnote><p> Aby używać serwera proxy, należy najpierw " -"ustawić zmienną środowiskową http_proxy, proszę przeczytać sources.list(5)</" -"p></footnote>, którą należy zrobić przed użyciem <prgn>apt-get</prgn> jest " -"pobranie listy pakietów (ze <em>źródeł</em> wymienionych w pliku sources." -"list(5)), tak żeby APT wiedział, jakie pakiety są dostępne. Robi się to za " -"pomocą polecenia <tt>apt-get update</tt>. Na przykład:" - -#. type: <example></example> -#: guide.sgml:116 +#. type: Content of: <book><chapter><para> +#: guide.dbk:113 +msgid "" +"<command>apt-get</command> provides a simple way to install packages from " +"the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " +"does not understand .deb files, it works with the package's proper name and " +"can only install .deb archives from a <emphasis>Source</emphasis>." +msgstr "" +"<command>apt-get</command> dostarcza prostego sposobu na zainstalowanie " +"pakietów z linii poleceń. W przeciwieństwie do <command>dpkg</command>, " +"<command>apt-get</command> nie posługuje się nazwami plików \".deb\", lecz " +"używa nazw pakietów i może zainstalować tylko archiwa \".deb\" ze " +"skonfigurowanych <emphasis>źródeł</emphasis>." + +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:119 +msgid "" +"If you are using an http proxy server you must set the http_proxy " +"environment variable first, see sources.list(5)" +msgstr "" +"Aby używać serwera proxy, należy najpierw ustawić zmienną środowiskową " +"http_proxy, proszę przeczytać sources.list(5)" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:119 +msgid "" +"The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " +"done before using <command>apt-get</command> is to fetch the package lists " +"from the <emphasis>Sources</emphasis> so that it knows what packages are " +"available. This is done with <literal>apt-get update</literal>. For instance," +msgstr "" +"Pierwszą rzeczą <placeholder type=\"footnote\" id=\"0\"/>, którą należy " +"zrobić przed użyciem <command>apt-get</command> jest pobranie listy pakietów " +"(ze <emphasis>źródeł</emphasis> wymienionych w pliku sources.list(5)), tak " +"żeby APT wiedział, jakie pakiety są dostępne. Robi się to za pomocą " +"polecenia <literal>apt-get update</literal>. Na przykład:" + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:127 #, no-wrap msgid "" "# 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" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get update\n" "Pob: http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" "Pob: http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" "Czytanie list pakietów... Gotowe\n" -"Budowanie drzewa zależności.. Gotowe" +"Budowanie drzewa zależności... Gotowe\n" -#. type: <p><taglist> -#: guide.sgml:120 +#. type: Content of: <book><chapter><para> +#: guide.dbk:134 msgid "Once updated there are several commands that can be used:" msgstr "Po zaktualizowaniu można użyć następnych poleceń:" -#. type: <tag></tag> -#: guide.sgml:121 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:138 msgid "upgrade" msgstr "upgrade" -#. type: <p></p> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:141 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 " "upgrade a package that might cause some other package to break. This can be " "used daily to relatively safely upgrade the system. Upgrade will list all of " "the packages that it could not upgrade, this usually means that they depend " -"on new packages or conflict with some other package. <prgn>dselect</prgn> or " -"<tt>apt-get install</tt> can be used to force these packages to install." +"on new packages or conflict with some other package. <command>dselect</" +"command> or <literal>apt-get install</literal> can be used to force these " +"packages to install." msgstr "" "Upgrade spróbuje delikatnie zaktualizować cały system. Upgrade nigdy nie " "zainstaluje nowego pakietu ani nie usunie istniejącego pakiety, ani też nie " @@ -8023,15 +8049,16 @@ msgstr "" "aktualizacji systemu. Upgrade wypisze listę pakietów, których nie potrafił " "zaktualizować, co zazwyczaj oznacza, że zależą one od nowych pakietów lub są " "w konflikcie z innymi pakietami. Można wymusić instalację takich pakietów, " -"używając do tego <prgn>dselect</prgn> lub <tt>apt-get install</tt>." +"używając do tego <command>dselect</command> lub <literal>apt-get install</" +"literal>." -#. type: <tag></tag> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:153 msgid "install" msgstr "install" -#. type: <p></p> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:156 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 " @@ -8050,21 +8077,22 @@ msgstr "" "wypisze podsumowanie i poprosi o potwierdzenie, jeśli zamierza zmienić " "cokolwiek innego niż pakiety podane jako jego argumenty." -#. type: <tag></tag> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:167 msgid "dist-upgrade" msgstr "dist-upgrade" -#. type: <p></p> -#: guide.sgml:149 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:170 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " "set of packages to install, upgrade and remove to get as much of the system " "to the newest release. In some situations it may be desired to use dist-" "upgrade rather than spend the time manually resolving dependencies in " -"<prgn>dselect</prgn>. Once dist-upgrade has completed then <prgn>dselect</" -"prgn> can be used to install any packages that may have been left out." +"<command>dselect</command>. Once dist-upgrade has completed then " +"<command>dselect</command> can be used to install any packages that may have " +"been left out." msgstr "" "Dist-upgrade powoduje całkowitą aktualizację systemu i jest zaprojektowany " "do uproszczenia aktualizacji z jednego wydania Debiana do kolejnego. Używa " @@ -8072,11 +8100,12 @@ msgstr "" "zainstalowania, aktualizacji lub usunięcia, tak aby zaktualizować jak " "najwięcej pakietów w systemie do nowszego wydania. W niektórych sytuacjach, " "może być prościej użyć dist-upgrade niż ręcznie rozwiązywać zależności w " -"programie <prgn>dselect</prgn>. Kiedy dist-upgrade zakończy działanie, można " -"użyć programu <prgn>dselect</prgn> do zainstalowania pominiętych pakietów." +"programie <command>dselect</command>. Kiedy dist-upgrade zakończy działanie, " +"można użyć programu <command>dselect</command> do zainstalowania pominiętych " +"pakietów." -#. type: <p></p> -#: guide.sgml:152 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:180 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8084,168 +8113,165 @@ msgstr "" "Jest ważne, aby dokładnie przyjrzeć się temu, co dist-upgrade zamierza " "zrobić, gdyż jego decyzje mogą czasami zdumiewać." -#. type: <p></p> -#: guide.sgml:163 -#, fuzzy -#| msgid "" -#| "<prgn>apt-get</prgn> has several command line options that are detailed " -#| "in its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -#| "option is <tt>-d</tt> which does not install the fetched files. If the " -#| "system has to download a large number of package it would be undesired to " -#| "start installing them in case something goes wrong. When <tt>-d</tt> is " -#| "used the downloaded archives can be installed by simply running the " -#| "command that caused them to be downloaded again without <tt>-d</tt>." -msgid "" -"<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -"option is <tt>-d</tt> which does not install the fetched files. If the " -"system has to download a large number of package it would be undesired to " -"start installing them in case something goes wrong. When <tt>-d</tt> is used " -"the downloaded archives can be installed by simply running the command that " -"caused them to be downloaded again without <tt>-d</tt>." -msgstr "" -"Zachowanie programu <prgn>apt-get</prgn> można kontrolować za pomocą opcji " -"linii poleceń szczegółowo opisanych w stronie podręcznika ekranowego <manref " -"section=\"8\" name=\"apt-get\">. Najbardziej użyteczną z nich jest <tt>-d</" -"tt>, która nie instaluje pobranych plików. Jeśli system musi pobrać dużą " -"liczbę pakietów, instalowanie ich może być niepożądane, jeśli coś pójdzie " -"nie tak. Jeśli użyto <tt>-d</tt>, to pobrane archiwa można zainstalować, " -"ponownie uruchamiając polecenie, które spowodowało ich pobranie, tym razem " -"bez opcji <tt>-d</tt>." - -#. type: <heading></heading> -#: guide.sgml:168 +#. type: Content of: <book><chapter><para> +#: guide.dbk:187 +msgid "" +"<command>apt-get</command> has several command line options that are " +"detailed in its man page, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. The most useful " +"option is <literal>-d</literal> which does not install the fetched files. If " +"the system has to download a large number of package it would be undesired " +"to start installing them in case something goes wrong. When <literal>-d</" +"literal> is used the downloaded archives can be installed by simply running " +"the command that caused them to be downloaded again without <literal>-d</" +"literal>." +msgstr "" +"Zachowanie programu <command>apt-get</command> można kontrolować za pomocą " +"opcji linii poleceń szczegółowo opisanych w stronie podręcznika ekranowego " +"<citerefentry><refentrytitle>apt-get</refentrytitle><manvolnum>8</" +"manvolnum></citerefentry>. Najbardziej użyteczną z nich jest <literal>-d</" +"literal>, która nie instaluje pobranych plików. Jeśli system musi pobrać " +"dużą liczbę pakietów, instalowanie ich może być niepożądane, jeśli coś " +"pójdzie nie tak. Jeśli użyto <literal>-d</literal>, to pobrane archiwa można " +"zainstalować, ponownie uruchamiając polecenie, które spowodowało ich " +"pobranie, tym razem bez opcji <literal>-d</literal>." + +#. type: Content of: <book><chapter><title> +#: guide.dbk:199 msgid "DSelect" msgstr "DSelect" -#. type: <p></p> -#: guide.sgml:173 +#. type: Content of: <book><chapter><para> +#: guide.dbk:201 msgid "" -"The APT <prgn>dselect</prgn> method provides the complete APT system with " -"the <prgn>dselect</prgn> package selection GUI. <prgn>dselect</prgn> is used " -"to select the packages to be installed or removed and APT actually installs " -"them." +"The APT <command>dselect</command> method provides the complete APT system " +"with the <command>dselect</command> package selection GUI. <command>dselect</" +"command> is used to select the packages to be installed or removed and APT " +"actually installs them." msgstr "" -"Metoda APT <prgn>dselect</prgn> dostarcza kompletnego systemu APT w " -"interfejsie użytkownika programu wyboru pakietów <prgn>dselect</prgn>. " -"<prgn>dselect</prgn> może być użyty do wybrania pakietów przeznaczonych do " -"zainstalowania lub usunięcia, a APT zainstaluje lub usunie te pakiety." +"Metoda APT <command>dselect</command> dostarcza kompletnego systemu APT w " +"interfejsie użytkownika programu wyboru pakietów <command>dselect</command>. " +"<command>dselect</command> może być użyty do wybrania pakietów " +"przeznaczonych do zainstalowania lub usunięcia, a APT zainstaluje lub usunie " +"te pakiety." -#. type: <p></p> -#: guide.sgml:184 +#. type: Content of: <book><chapter><para> +#: guide.dbk:207 msgid "" -"To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " -"and then choose the APT method. You will be prompted for a set of " -"<em>Sources</em> which are places to fetch archives from. These can be " -"remote Internet sites, local Debian mirrors or CD-ROMs. Each source can " -"provide a fragment of the total Debian archive, APT will automatically " +"To enable the APT method you need to select [A]ccess in <command>dselect</" +"command> and then choose the APT method. You will be prompted for a set of " +"<emphasis>Sources</emphasis> which are places to fetch archives from. These " +"can be remote Internet sites, local Debian mirrors or CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet." msgstr "" "Aby włączyć metodę APT należy wybrać opcję \"[A] Dostęp\" w programie " -"<prgn>dselect</prgn> , a następnie wybrać metodę APT. Użytkownik zostanie " -"poproszony o skonfigurowanie listy <em>źródeł</em>, będących lokalizacjami, " -"z których będą pobierane pakiety. Mogą być to strony internetowe, lokalne " -"serwery lustrzane Debiana lub CD-ROM-y. Każde źródło może dostarczać tylko " -"fragmentu pełnego archiwum Debiana, a APT automatycznie połączy je w " -"kompletny zbiór pakietów. Jeśli używany jest CD-ROM, to dobrym pomysłem jest " -"podanie najpierw jego, a potem podanie mirrorów umożliwiających dostęp do " -"najnowszych wersji pakietów zawierających poprawki błędów. APT automatycznie " -"użyje pakietów z CD-ROM-u zanim zacznie pobierać pakiety z Internetu." - -#. type: <example></example> -#: guide.sgml:198 +"<command>dselect</command> , a następnie wybrać metodę APT. Użytkownik " +"zostanie poproszony o skonfigurowanie listy <emphasis>źródeł</emphasis>, " +"będących lokalizacjami, z których będą pobierane pakiety. Mogą być to strony " +"internetowe, lokalne serwery lustrzane Debiana lub CD-ROM-y. Każde źródło " +"może dostarczać tylko fragmentu pełnego archiwum Debiana, a APT " +"automatycznie połączy je w kompletny zbiór pakietów. Jeśli używany jest CD-" +"ROM, to dobrym pomysłem jest podanie najpierw jego, a potem podanie mirrorów " +"umożliwiających dostęp do najnowszych wersji pakietów zawierających poprawki " +"błędów. APT automatycznie użyje pakietów z CD-ROM-u zanim zacznie pobierać " +"pakiety z Internetu." + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:218 #, no-wrap msgid "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" msgstr "" " Ustawianie listy źródłowych lokalizacji dystrybucji\n" -"\t \n" +"\n" " Proszę podać bazowy URL dystrybucji Debiana.\n" " Obsługiwane schematy połączeń to: http ftp file\n" -"\t \n" +"\n" " Przykłady:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.pl.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" -#. type: <p></p> -#: guide.sgml:205 +#. type: Content of: <book><chapter><para> +#: guide.dbk:232 msgid "" -"The <em>Sources</em> setup starts by asking for the base of the Debian " -"archive, defaulting to a HTTP mirror. Next it asks for the distribution to " -"get." +"The <emphasis>Sources</emphasis> 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 "" "Ustawianie źródeł zaczyna się od pytania o bazową lokalizację Debiana. " "Domyślną wartością jest mirror HTTP. Następnie użytkownik jest pytany o " "dystrybucję do pobrania." -#. type: <example></example> -#: guide.sgml:212 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:237 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" +"\n" +" Distribution [stable]:\n" msgstr "" " Proszę podać znacznik dystrybucji do pobrania lub ścieżkę do pliku\n" " pakietów kończącą się znakiem \"/\". Zazwyczaj znacznikiem dystrybucji\n" " jest coś w rodzaju: stable unstable testing non-US\n" -" \n" -" Dystrybucja [stable]:" - -#. type: <p></p> -#: guide.sgml:222 -msgid "" -"The distribution refers to the Debian version in the archive, <em>stable</" -"em> refers to the latest released version and <em>unstable</em> refers to " -"the developmental version. <em>non-US</em> is only available on some mirrors " -"and refers to packages that contain encryption technology or other things " -"that cannot be exported from the United States. Importing these packages " -"into the US is legal however." -msgstr "" -"Dystrybucja odnosi się do wersji Debiana: <em>stable</em>(stabilna) to " -"najnowsza wydana wersja, a <em>unstable</em> (niestabilna) to wersja " -"rozwojowa. <em>non-US</em> jest dostępna tylko na wybranych serwerach " -"lustrzanych i zawiera pakiety, które wykorzystują technologie szyfrowania " -"danych lub inne rzeczy, które nie mogą być eksportowane z serwerów " -"umieszczonych w Stanach Zjednoczonych. Importowanie tych pakietów do Stanów " -"Zjednoczonych jest jednakże legalne." - -#. type: <example></example> -#: guide.sgml:228 +"\n" +" Dystrybucja [stable]:\n" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:244 +msgid "" +"The distribution refers to the Debian version in the archive, " +"<emphasis>stable</emphasis> refers to the latest released version and " +"<emphasis>unstable</emphasis> refers to the developmental version. " +"<emphasis>non-US</emphasis> is only available on some mirrors and refers to " +"packages that contain encryption technology or other things that cannot be " +"exported from the United States. Importing these packages into the US is " +"legal however." +msgstr "" +"Dystrybucja odnosi się do wersji Debiana: <emphasis>stable</" +"emphasis>(stabilna) to najnowsza wydana wersja, a <emphasis>unstable</" +"emphasis> (niestabilna) to wersja rozwojowa. <emphasis>non-US</emphasis> " +"jest dostępna tylko na wybranych serwerach lustrzanych i zawiera pakiety, " +"które wykorzystują technologie szyfrowania danych lub inne rzeczy, które nie " +"mogą być eksportowane z serwerów umieszczonych w Stanach Zjednoczonych. " +"Importowanie tych pakietów do Stanów Zjednoczonych jest jednakże legalne." + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:253 #, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" msgstr "" " Proszę podać komponenty do pobrania\n" " Zazwyczaj komponentem jest coś w rodzaju: main contrib non-free\n" -" \n" -" Komponenty [main contrib non-free]:" +"\n" +" Komponenty [main contrib non-free]:\n" -#. type: <p></p> -#: guide.sgml:236 +#. type: Content of: <book><chapter><para> +#: guide.dbk:259 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 " @@ -8258,8 +8284,8 @@ msgstr "" "\"),contrib i non-free zawierają pakiety, które zawierają restrykcje " "związane z ich używaniem lub rozpowszechnianiem." -#. type: <p></p> -#: guide.sgml:240 +#. type: Content of: <book><chapter><para> +#: guide.dbk:265 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -8268,24 +8294,24 @@ msgstr "" "odpytywanie użytkownika dopóty, dopóki nie poda wszystkich źródeł, które " "chciał skonfigurować." -#. type: <p></p> -#: guide.sgml:247 +#. type: Content of: <book><chapter><para> +#: guide.dbk:269 msgid "" -"Before starting to use <prgn>dselect</prgn> it is necessary to update the " -"available list by selecting [U]pdate from the menu. This is a superset of " -"<tt>apt-get update</tt> that makes the fetched information available to " -"<prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get update</" -"tt> has been run before." +"Before starting to use <command>dselect</command> it is necessary to update " +"the available list by selecting [U]pdate from the menu. This is a superset " +"of <literal>apt-get update</literal> that makes the fetched information " +"available to <command>dselect</command>. [U]pdate must be performed even if " +"<literal>apt-get update</literal> has been run before." msgstr "" -"Przed rozpoczęciem używania programu <prgn>dselect</prgn> należy w menu tego " -"programu wybrać \"[U] Aktualizacja\", abyzaktualizować listę dostępnych " -"pakietów. To polecenie jest nadzbiorem polecenia <tt>apt-get update</tt>, " -"zapewniającym programowi <prgn>dselect</prgn> dostęp do pobranych informacji " -"o pakietach. \"[U] Aktualizacja\" musi być wykonana, nawet jeśli wcześniej " -"uruchomiono <tt>apt-get update</tt>." +"Przed rozpoczęciem używania programu <command>dselect</command> należy w " +"menu tego programu wybrać \"[U] Aktualizacja\", abyzaktualizować listę " +"dostępnych pakietów. To polecenie jest nadzbiorem polecenia <literal>apt-get " +"update</literal>, zapewniającym programowi <command>dselect</command> dostęp " +"do pobranych informacji o pakietach. \"[U] Aktualizacja\" musi być wykonana, " +"nawet jeśli wcześniej uruchomiono <literal>apt-get update</literal>." -#. type: <p></p> -#: guide.sgml:253 +#. type: Content of: <book><chapter><para> +#: guide.dbk:276 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 " @@ -8298,76 +8324,83 @@ msgstr "" "bezużytecznymi, gdyż \"[I] Instalacja\" przeprowadza również te dwie " "operacje." -#. type: <p></p> -#: guide.sgml:258 +#. type: Content of: <book><chapter><para> +#: guide.dbk:282 msgid "" "By default APT will automatically remove the package (.deb) files once they " -"have been successfully installed. To change this behavior place <tt>Dselect::" -"clean \"prompt\";</tt> in /etc/apt/apt.conf." +"have been successfully installed. To change this behavior place " +"<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" "Domyślnie APT automatycznie usunie pliki pakietów (.deb), gdy tylko zostaną " -"zainstalowane. Aby zmienić to zachowanie, proszę umieścić <tt>Dselect::" -"clean \"prompt\";</tt> w /etc/apt/apt.conf." +"zainstalowane. Aby zmienić to zachowanie, proszę umieścić <literal>Dselect::" +"clean \"prompt\";</literal> w /etc/apt/apt.conf." -#. type: <heading></heading> -#: guide.sgml:264 +#. type: Content of: <book><chapter><title> +#: guide.dbk:288 msgid "The Interface" msgstr "Interfejs" -#. type: <p></p> -#: guide.sgml:278 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:292 +msgid "" +"The <command>dselect</command> method actually is a set of wrapper scripts " +"to <command>apt-get</command>. The method actually provides more " +"functionality than is present in <command>apt-get</command> alone." +msgstr "" +"Metoda programu <command>dselect</command> jest tak naprawdę zbiorem " +"skryptów wywołujących <command>apt-get</command>. Metoda ta ma jednakże " +"większą funkcjonalność niż sam program <command>apt-get</command>." + +#. type: Content of: <book><chapter><para> +#: guide.dbk:290 msgid "" -"Both that APT <prgn>dselect</prgn> method and <prgn>apt-get</prgn> share the " -"same interface. It is a simple system that generally tells you what it will " -"do and then goes and does it. <footnote><p>The <prgn>dselect</prgn> method " -"actually is a set of wrapper scripts to <prgn>apt-get</prgn>. The method " -"actually provides more functionality than is present in <prgn>apt-get</prgn> " -"alone.</p></footnote> After printing out a summary of what will happen APT " +"Both that APT <command>dselect</command> method and <command>apt-get</" +"command> share the same interface. It is a simple system that generally " +"tells you what it will do and then goes and does it. <placeholder type=" +"\"footnote\" id=\"0\"/> After printing out a summary of what will happen APT " "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 "" -"Metoda APT programu <prgn>dselect</prgn> i program <prgn>apt-get</prgn> " -"dzielą wspólny interfejs. Jest to prosty system, który najpierw informuje " -"użytkownika, co będzie zrobione, a następnie to robi<footnote><p>Metoda " -"programu <prgn>dselect</prgn> jest tak naprawdę zbiorem skryptów " -"wywołujących <prgn>apt-get</prgn>. Metoda ta ma jednakże większą " -"funkcjonalność niż sam program <prgn>apt-get</prgn>.</p></footnote>. Po " -"wyświetleniu podsumowania informującego o tym, co będzie zrobione, APT " -"wyświetla komunikaty dotyczące postępu przeprowadzanych operacji, tak żeby " -"można było oszacować czas pozostały do ich zakończenia." - -#. type: <heading></heading> -#: guide.sgml:280 +"Metoda APT programu <command>dselect</command> i program <command>apt-get</" +"command> dzielą wspólny interfejs. Jest to prosty system, który najpierw " +"informuje użytkownika, co będzie zrobione, a następnie to robi. <placeholder " +"type=\"footnote\" id=\"0\"/> Po wyświetleniu podsumowania informującego o " +"tym, co będzie zrobione, APT wyświetla komunikaty dotyczące postępu " +"przeprowadzanych operacji, tak żeby można było oszacować czas pozostały do " +"ich zakończenia." + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:301 msgid "Startup" msgstr "Uruchamianie" -#. type: <p></p> -#: guide.sgml:284 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:303 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 <tt>apt-get check</" -"tt>." +"At any time these operations can be performed by running <literal>apt-get " +"check</literal>." msgstr "" "Przed każdą operacją, z wyjątkiem update, APT przeprowadza pewne akcje " "przygotowujące wewnętrzny stan. Sprawdza również stan systemu. Te same " -"operacje można przeprowadzić w dowolnej chwili, uruchamiając <tt>apt-get " -"check</tt>." +"operacje można przeprowadzić w dowolnej chwili, uruchamiając <literal>apt-" +"get check</literal>." -#. type: <example></example> -#: guide.sgml:289 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:309 #, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get check\n" "Czytanie list pakietów... Gotowe\n" -"Budowanie drzewa zależności... Gotowe" +"Budowanie drzewa zależności... Gotowe\n" -#. type: <p></p> -#: guide.sgml:297 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:314 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. " @@ -8379,21 +8412,21 @@ msgstr "" "następnym uruchomieniu. Jeśli nie znajdzie niektórych plików pakietów, to " "wypisze ostrzeżenie, a te pakiety zignoruje." -#. type: <p></p> -#: guide.sgml:303 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:320 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " "package and considers if it is OK. Should this find a problem then a report " -"will be printed out and <prgn>apt-get</prgn> will refuse to run." +"will be printed out and <command>apt-get</command> will refuse to run." msgstr "" "Końcową operacją jest szczegółowa analiza zależności w systemie. Sprawdzana " "jest każda zależność każdego pakietu zainstalowanego lub rozpakowanego. W " -"razie wykrycia problemów z zależnościami <prgn>apt-get</prgn> wypisze " +"razie wykrycia problemów z zależnościami <command>apt-get</command> wypisze " "odpowiedni komunikat i odmówi dalszego działania." -#. type: <example></example> -#: guide.sgml:320 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:326 #, no-wrap msgid "" "# apt-get check\n" @@ -8403,14 +8436,14 @@ msgid "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" msgstr "" "# apt-get check\n" "Czytanie list pakietów... Gotowe\n" @@ -8419,17 +8452,17 @@ msgstr "" "Następujące pakiety mają niespełnione zależności:\n" " 9fonts: Wymaga: xlib6g ale nie jest zainstalowany\n" " uucp: Wymaga: mailx ale nie jest zainstalowany\n" -" blast: Wymaga: xlib6g (>= 3.3-5) ale nie jest zainstalowany\n" +" blast: Wymaga: xlib6g (>= 3.3-5) ale nie jest zainstalowany\n" " adduser: Wymaga: perl-base ale nie jest zainstalowany\n" " aumix: Wymaga: libgpmg1 but ale nie jest zainstalowany\n" " debiandoc-sgml: Wymaga: sgml-base ale nie jest zainstalowany\n" -" bash-builtins: Wymaga: bash (>= 2.01) but 2.0-3 is installed\n" +" bash-builtins: Wymaga: bash (>= 2.01) but 2.0-3 is installed\n" " cthugha: Wymaga: svgalibg1 but it is not installed\n" -" Wymaga: xlib6g (>= 3.3-5) ale nie jest zainstalowany\n" -" libreadlineg2: Jest w konflikcie z: libreadline2 (<< 2.1-2.1)" +" Wymaga: xlib6g (>= 3.3-5) ale nie jest zainstalowany\n" +" libreadlineg2: Jest w konflikcie z: libreadline2 (<< 2.1-2.1)\n" -#. type: <p></p> -#: guide.sgml:329 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:343 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 " @@ -8442,87 +8475,98 @@ msgstr "" "jest wypisywany w osobnej linii razem z niespełnionymi zależnościami. Podane " "jest również krótkie wyjaśnienie dotyczące przyczyny problemu." -#. type: <p></p> -#: guide.sgml:337 +#. type: Content of: <book><chapter><section><para><footnote><para> +#: guide.dbk:352 +msgid "" +"APT however considers all known dependencies and attempts to prevent broken " +"packages" +msgstr "" +"APT rozważa wszystkie znane zależności i próbuje nie dopuścić do zepsucia " +"pakietów." + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:350 msgid "" "There are two ways a system can get into a broken state like this. The first " -"is caused by <prgn>dpkg</prgn> missing some subtle relationships between " -"packages when performing upgrades. <footnote><p>APT however considers all " -"known dependencies and attempts to prevent broken packages</p></footnote>. " -"The second is if a package installation fails during an operation. In this " -"situation a package may have been unpacked without its dependents being " -"installed." +"is caused by <command>dpkg</command> missing some subtle relationships " +"between packages when performing upgrades. <placeholder type=\"footnote\" id=" +"\"0\"/>. The second is if a package installation fails during an operation. " +"In this situation a package may have been unpacked without its dependents " +"being installed." msgstr "" "Są dwie przyczyny, z których powodu system może być zepsuty w powyższy " -"sposób. Pierwszą jest to, że <prgn>dpkg</prgn> podczas aktualizacji systemu " -"nie zauważył jakiejś subtelnej relacji między pakietami<footnote><p>APT " -"rozważa wszystkie znane zależności i próbuje nie dopuścić do zepsucia " -"pakietów.</p></footnote>. Drugą przyczyną jest wystąpienie błędu w czasie " -"instalowania pakietu. W takim przypadku pakiet może być rozpakowany, mimo że " -"pakiety od niego zależące nie są zainstalowane." +"sposób. Pierwszą jest to, że <command>dpkg</command> podczas aktualizacji " +"systemu nie zauważył jakiejś subtelnej relacji między pakietami<placeholder " +"type=\"footnote\" id=\"0\"/>. Drugą przyczyną jest wystąpienie błędu w " +"czasie instalowania pakietu. W takim przypadku pakiet może być rozpakowany, " +"mimo że pakiety od niego zależące nie są zainstalowane." -#. type: <p></p> -#: guide.sgml:345 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:359 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 " -"supplying the <tt>-f</tt> option to <prgn>apt-get</prgn> will cause APT to " -"deduce a possible solution to the problem and then continue on. The APT " -"<prgn>dselect</prgn> method always supplies the <tt>-f</tt> option to allow " -"for easy continuation of failed maintainer scripts." +"supplying the <literal>-f</literal> option to <command>apt-get</command> " +"will cause APT to deduce a possible solution to the problem and then " +"continue on. The APT <command>dselect</command> method always supplies the " +"<literal>-f</literal> option to allow for easy continuation of failed " +"maintainer scripts." msgstr "" "Druga przyczyna jest o wiele mniej poważna niż pierwsza, ponieważ APT " "wymusza pewne więzy integralności dotyczące kolejności instalowania " -"pakietów. W obu przypadkach przekazanie programowi <prgn>apt-get</prgn> " -"opcji <tt>-f</tt> wymusi na APT znalezienie rozwiązania umożliwiającego mu " -"kontynuowanie działania. Metoda APT programu <prgn>dselect</prgn> zawsze " -"przekazuje opcję <tt>-f</tt>, aby móc kontynuować po wystąpieniu błędu w " -"skryptach opiekunów pakietów." - -#. type: <p></p> -#: guide.sgml:351 -msgid "" -"However, if the <tt>-f</tt> option is used to correct a seriously broken " -"system caused by the first case then it is possible that it will either fail " -"immediately or the installation sequence will fail. In either case it is " -"necessary to manually use dpkg (possibly with forcing options) to correct " -"the situation enough to allow APT to proceed." -msgstr "" -"Jednak gdy opcja <tt>-f</tt> jest używana do poprawienia zależności w " -"poważnie uszkodzonym systemie (pierwsza z opisanych wyżej przyczyn), możliwe " -"jest że albo od razu zwróci błąd, albo nie powiedzie się sekwencja " -"instalowania pakietów. W obu przypadkach należy poprawić zależności ręcznie, " -"używając do tego dpkg (być może przekazując mu opcje wymuszające \"--" -"force-...\"), w takim stopniu, aby umożliwić działanie systemowi APT." - -#. type: <heading></heading> -#: guide.sgml:356 +"pakietów. W obu przypadkach przekazanie programowi <command>apt-get</" +"command> opcji <literal>-f</literal> wymusi na APT znalezienie rozwiązania " +"umożliwiającego mu kontynuowanie działania. Metoda APT programu " +"<command>dselect</command> zawsze przekazuje opcję <literal>-f</literal>, " +"aby móc kontynuować po wystąpieniu błędu w skryptach opiekunów pakietów." + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:368 +msgid "" +"However, if the <literal>-f</literal> option is used to correct a seriously " +"broken system caused by the first case then it is possible that it will " +"either fail immediately or the installation sequence will fail. In either " +"case it is necessary to manually use dpkg (possibly with forcing options) to " +"correct the situation enough to allow APT to proceed." +msgstr "" +"Jednak gdy opcja <literal>-f</literal> jest używana do poprawienia " +"zależności w poważnie uszkodzonym systemie (pierwsza z opisanych wyżej " +"przyczyn), możliwe jest że albo od razu zwróci błąd, albo nie powiedzie się " +"sekwencja instalowania pakietów. W obu przypadkach należy poprawić " +"zależności ręcznie, używając do tego dpkg (być może przekazując mu opcje " +"wymuszające \"--force-...\"), w takim stopniu, aby umożliwić działanie " +"systemowi APT." + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:376 msgid "The Status Report" msgstr "Raport stanu" -#. type: <p></p> -#: guide.sgml:363 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:378 msgid "" -"Before proceeding <prgn>apt-get</prgn> will present a report on what will " -"happen. Generally the report reflects the type of operation being performed " -"but there are several common elements. In all cases the lists reflect the " -"final state of things, taking into account the <tt>-f</tt> option and any " -"other relevant activities to the command being executed." +"Before proceeding <command>apt-get</command> will present a report on what " +"will happen. Generally the report reflects the type of operation being " +"performed but there are several common elements. In all cases the lists " +"reflect the final state of things, taking into account the <literal>-f</" +"literal> option and any other relevant activities to the command being " +"executed." msgstr "" -"Przed rozpoczęciem przetwarzania <prgn>apt-get</prgn> wyświetli raport " +"Przed rozpoczęciem przetwarzania <command>apt-get</command> wyświetli raport " "zawierający informacje o tym, co będzie zrobione. W ogólności raport ten " "zależy od typu wykonywanej operacji, jednakże występuje w nim kilka " "elementów wspólnych dla wszystkich typów. We wszystkich wypadkach " -"wyświetlane są informacje o końcowym stanie, brana jest pod uwagę opcja <tt>-" -"f</tt>, a także wszystkie istotne działania wykonywanego polecenia." +"wyświetlane są informacje o końcowym stanie, brana jest pod uwagę opcja " +"<literal>-f</literal>, a także wszystkie istotne działania wykonywanego " +"polecenia." -#. type: <heading></heading> -#: guide.sgml:364 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:385 msgid "The Extra Package list" msgstr "Lista dodatkowych pakietów" -#. type: <example></example> -#: guide.sgml:372 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:387 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -8530,86 +8574,86 @@ msgid "" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" msgstr "" "Zostaną zainstalowane następujące dodatkowe pakiety:\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" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" -#. type: <p></p> -#: guide.sgml:379 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:395 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 <tt>install</tt> command. The listed packages are often the " -"result of an Auto Install." +"generated for an <literal>install</literal> command. The listed packages are " +"often the result of an Auto Install." msgstr "" "Lista dodatkowych pakietów wyświetla wszystkie pakiety, które będą " "zainstalowane lub zaktualizowane oprócz tych wymienionych w linii poleceń. " -"Jest generowana tylko dla polecenia <tt>install</tt>. Wymienione pakiety są " -"najczęściej wynikiem automatycznej instalacji." +"Jest generowana tylko dla polecenia <literal>install</literal>. Wymienione " +"pakiety są najczęściej wynikiem automatycznej instalacji." -#. type: <heading></heading> -#: guide.sgml:382 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:402 msgid "The Packages to Remove" msgstr "Pakiety przeznaczone do usunięcia" -#. type: <example></example> -#: guide.sgml:389 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:404 #, no-wrap msgid "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" msgstr "" "Następujące pakiety zostaną USUNIĘTE:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" -#. type: <p></p> -#: guide.sgml:399 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:411 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 " "given a careful inspection to ensure nothing important is to be taken off. " -"The <tt>-f</tt> option is especially good at generating packages to remove " -"so extreme care should be used in that case. The list may contain packages " -"that are going to be removed because they are only partially installed, " -"possibly due to an aborted installation." +"The <literal>-f</literal> option is especially good at generating packages " +"to remove so extreme care should be used in that case. The list may contain " +"packages that are going to be removed because they are only partially " +"installed, possibly due to an aborted installation." msgstr "" "Lista pakietów przeznaczonych do usunięcia wyświetla wszystkie pakiety, " "które zostaną usunięte z systemu. Może być pokazana dla każdej operacji i " "powinna być szczegółowo przeanalizowana, aby zapewnić, że żaden istotny " -"pakiet nie będzie usunięty. W szczególności opcja <tt>-f</tt> może " +"pakiet nie będzie usunięty. W szczególności opcja <literal>-f</literal> może " "wygenerować sporo pakietów do usunięcia, także w przypadku jej użycia należy " "szczególnie dokładnie przeanalizować wyświetlany raport. Lista może zawierać " "pakiety usuwane z powodu ich tylko częściowego zainstalowania, wynikającego " "być może z przerwania wcześniejszej instalacji." -#. type: <heading></heading> -#: guide.sgml:402 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:421 msgid "The New Packages list" msgstr "Lista nowych pakietów" -#. type: <example></example> -#: guide.sgml:406 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:423 #, no-wrap msgid "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" msgstr "" "Zostaną zainstalowane następujące NOWE pakiety:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" -#. type: <p></p> -#: guide.sgml:411 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:427 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 " @@ -8619,58 +8663,58 @@ msgstr "" "pakiety nie są obecnie zainstalowane w systemie, ale będą, kiedy APT skończy " "działanie." -#. type: <heading></heading> -#: guide.sgml:414 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:432 msgid "The Kept Back list" msgstr "Lista zatrzymanych pakietów" -#. type: <example></example> -#: guide.sgml:419 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:434 #, 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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" msgstr "" "Następujące pakiety zostały zatrzymane:\n" " compface man-db tetex-base msql libpaper svgalib1\n" -" gs snmp arena lynx xpat2 groff xscreensaver" +" gs snmp arena lynx xpat2 groff xscreensaver\n" -#. type: <p></p> -#: guide.sgml:428 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:439 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 " "or conflict with already installed things. In this case the package will " "appear in the Kept Back list. The best way to convince packages listed there " -"to install is with <tt>apt-get install</tt> or by using <prgn>dselect</prgn> " -"to resolve their problems." +"to install is with <literal>apt-get install</literal> or by using " +"<command>dselect</command> to resolve their problems." msgstr "" "Jeśli aktualizowany jest cały system, to jest możliwe, że nowe wersje " "pakietów nie będą mogły być zainstalowane, ponieważ wymagają nowych pakietów " "lub są w konflikcie z już zainstalowanymi pakietami. W takim wypadku pakiet " "pojawi się na liście pakietów zatrzymanych. Najlepszym sposobem na " -"zainstalowanie takich pakietów jest użycie <tt>apt-get install</tt> lub " -"rozwiązanie problemów z zależnościami za pomocą programu <prgn>dselect</" -"prgn>." +"zainstalowanie takich pakietów jest użycie <literal>apt-get install</" +"literal> lub rozwiązanie problemów z zależnościami za pomocą programu " +"<command>dselect</command>." -#. type: <heading></heading> -#: guide.sgml:431 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:448 msgid "Held Packages warning" msgstr "Ostrzeżenie o zmianie zatrzymanych pakietów" -#. type: <example></example> -#: guide.sgml:435 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:450 #, no-wrap msgid "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" msgstr "" "Zostaną zmienione następujące zatrzymane pakiety:\n" -" cvs" +" cvs\n" -#. type: <p></p> -#: guide.sgml:441 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:454 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. " @@ -8680,32 +8724,32 @@ msgstr "" "W takim przypadku wypisywane jest ostrzeżenie o zmianie zatrzymanego " "pakietu. Może się to zdarzyć tylko podczas dist-upgrade lub install." -#. type: <heading></heading> -#: guide.sgml:444 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:460 msgid "Final summary" msgstr "Podsumowanie" -#. type: <p></p> -#: guide.sgml:447 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:462 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "APT zakończy raport podsumowaniem wszystkich zmian, które przeprowadzi." -#. type: <example></example> -#: guide.sgml:452 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:465 #, 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" "206 aktualizowanych, 8 nowo instalowanych, 25 usuwanych i 51 nieaktualizowanych.\n" "12 nie w pełni zainstalowanych lub usuniętych.\n" -"Konieczne pobranie 65.7M/66.7M archiwów. Po rozpakowaniu zostanie użyte 26.5M." +"Konieczne pobranie 65.7M/66.7M archiwów. Po rozpakowaniu zostanie użyte 26.5M.\n" -#. type: <p></p> -#: guide.sgml:470 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:470 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 " @@ -8734,8 +8778,8 @@ msgstr "" "będzie zajęta w /usr po zakończeniu instalacji. Wartość ta może wskazywać na " "zwolnienie miejsca na dysku, jeśli usuwana jest duża liczba pakietów." -#. type: <p></p> -#: guide.sgml:473 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:484 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -8743,13 +8787,13 @@ msgstr "" "Używając opcji -u, można wygenerować raport pokazujący pakiety przeznaczone " "do aktualizacji, podobny do tego pokazanego w poprzednim przykładzie." -#. type: <heading></heading> -#: guide.sgml:477 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:491 msgid "The Status Display" msgstr "Wyświetlanie stanu przetwarzania" -#. type: <p></p> -#: guide.sgml:481 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:493 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -8757,8 +8801,8 @@ msgstr "" "Podczas pobierania archiwów i plików pakietów APT wyświetla serię " "komunikatów o stanie." -#. type: <example></example> -#: guide.sgml:490 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:497 #, no-wrap msgid "" "# apt-get update\n" @@ -8767,7 +8811,7 @@ msgid "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" msgstr "" "# apt-get update\n" "Pob:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" @@ -8775,127 +8819,126 @@ msgstr "" "Traf http://llug.sep.bnl.gov/debian/ testing/main Packages\n" "Pob:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages\n" "Pob:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" -"11% [5 testing/non-free `Oczekiwane na nagłówki' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Oczekiwane na nagłówki' 0/32.1k 0%] 2203b/s 1m52s\n" -#. type: <p></p> -#: guide.sgml:500 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:506 msgid "" -"The lines starting with <em>Get</em> are printed out when APT begins to " -"fetch a file while the last line indicates the progress of the download. The " -"first percent value on the progress line indicates the total percent done of " -"all files. Unfortunately since the size of the Package files is unknown " -"<tt>apt-get update</tt> estimates the percent done which causes some " -"inaccuracies." +"The lines starting with <emphasis>Get</emphasis> are printed out when APT " +"begins to fetch a file while the last line indicates the progress of the " +"download. The first percent value on the progress line indicates the total " +"percent done of all files. Unfortunately since the size of the Package files " +"is unknown <literal>apt-get update</literal> estimates the percent done " +"which causes some inaccuracies." msgstr "" -"Linie zaczynające się od <em>Pob:</em> są wypisywane, kiedy APT zaczyna " -"pobierać plik, a ostatnia linia oznacza postęp pobierania. Pierwsza wartość " -"podana w procentach określa całkowity procent pobierania wszystkich plików. " -"Niestety rozmiar plików Package nie jest znany, tak więc <tt>apt-get update</" -"tt> estymuje procent wykonanego pobierania, co powoduje pewne nieścisłości." +"Linie zaczynające się od <emphasis>Pob:</emphasis> są wypisywane, kiedy APT " +"zaczyna pobierać plik, a ostatnia linia oznacza postęp pobierania. Pierwsza " +"wartość podana w procentach określa całkowity procent pobierania wszystkich " +"plików. Niestety rozmiar plików Package nie jest znany, tak więc " +"<literal>apt-get update</literal> estymuje procent wykonanego pobierania, co " +"powoduje pewne nieścisłości." -#. type: <p></p> -#: guide.sgml:509 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:514 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " "information about what is happening. Sometimes this section will simply read " -"<em>Forking</em> which means the OS is loading the download module. The " -"first word after the [ is the fetch number as shown on the history lines. " -"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." +"<emphasis>Forking</emphasis> which means the OS is loading the download " +"module. The first word after the [ is the fetch number as shown on the " +"history lines. 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 "" "Następna sekcja linii statusu powtarza się dla każdego wątku pobierania, " "oznacza przeprowadzanie operacji i podaje kilka użytecznych informacji na " -"temat tego, co się dzieje. Czasem sekcja ta zawiera komunikat <em>Tworzenie " -"procesu potomnego</em>, co oznacza, że system operacyjny ładuje moduł " -"pobierania. Pierwszym słowem po znaku \"[\" jest liczba pobrań, dokładnie " -"taka jaka jest pokazana liczba linii historii pobrań. Następnie w skróconej " -"formie wyświetlana jest nazwa pobieranego obiektu. W przypadku archiwów " -"nazwa ta będzie zawierać nazwę pobieranego pakietu." +"temat tego, co się dzieje. Czasem sekcja ta zawiera komunikat " +"<emphasis>Tworzenie procesu potomnego</emphasis>, co oznacza, że system " +"operacyjny ładuje moduł pobierania. Pierwszym słowem po znaku \"[\" jest " +"liczba pobrań, dokładnie taka jaka jest pokazana liczba linii historii " +"pobrań. Następnie w skróconej formie wyświetlana jest nazwa pobieranego " +"obiektu. W przypadku archiwów nazwa ta będzie zawierać nazwę pobieranego " +"pakietu." -#. type: <p></p> -#: guide.sgml:524 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:524 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " -"<em>Connecting</em> to <em>Waiting for file</em> to <em>Downloading</em> or " -"<em>Resuming</em>. The final value is the number of bytes downloaded from " -"the remote site. Once the download begins this is represented as " -"<tt>102/10.2k</tt> indicating that 102 bytes have been fetched and 10.2 " -"kilobytes is expected. The total size is always shown in 4 figure notation " -"to preserve space. After the size display is a percent meter for the file " -"itself. The second last element is the instantaneous average speed. This " -"values is updated every 5 seconds and reflects the rate of data transfer for " -"that period. Finally is shown the estimated transfer time. This is updated " -"regularly and reflects the time to complete everything at the shown transfer " -"rate." +"<emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to " +"<emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final " +"value is the number of bytes downloaded from the remote site. Once the " +"download begins this is represented as <literal>102/10.2k</literal> " +"indicating that 102 bytes have been fetched and 10.2 kilobytes is expected. " +"The total size is always shown in 4 figure notation to preserve space. After " +"the size display is a percent meter for the file itself. The second last " +"element is the instantaneous average speed. This values is updated every 5 " +"seconds and reflects the rate of data transfer for that period. Finally is " +"shown the estimated transfer time. This is updated regularly and reflects " +"the time to complete everything at the shown transfer rate." msgstr "" "W pojedynczych cudzysłowach podawany jest komunikat wskazujący na postęp " "tworzenia połączenia pobierania danych. Zazwyczaj postęp ten jest sekwencją " -"zdarzeń od <em>Podłączanie</em> przez <em>Oczekiwanie na nagłówki</em> do " -"<em>Pobieranie</em> lub <em>Wznawianie</em>. Końcową wartością jest liczba " -"bajtów pobranych ze zdalnego serwera. Kiedy tylko pobieranie się rozpocznie, " -"wartość ta jest wyświetlana jw formacie typu <tt>102/10.2k</tt>, co oznacza, " -"że pobrano 102 bajty, a oczekuje się jeszcze pobrania 10.2 kilobajtów. Aby " -"zaoszczędzić miejsce, całkowity rozmiar jest zawsze wyświetlany jako w " -"postaci 4-znakowej. Po rozmiarze następuje procentowy wskaźnik postępu " -"pobierania danego pliku. Przedostatnim elementem jest bieżąca średnia " -"prędkość pobierania, która jest aktualizowane co każde 5 sekund i " -"odzwierciedla tempo pobierania w tym okresie. W końcu wyświetlany jest " -"estymowany czas pobierania, regularnie aktualizowany i odzwierciedlający " -"czas pozostały do zakończenia pobierania przy założeniu utrzymania się " -"pokazanego tempa pobierania." - -#. type: <p></p> -#: guide.sgml:530 +"zdarzeń od <emphasis>Podłączanie</emphasis> przez <emphasis>Oczekiwanie na " +"nagłówki</emphasis> do <emphasis>Pobieranie</emphasis> lub " +"<emphasis>Wznawianie</emphasis>. Końcową wartością jest liczba bajtów " +"pobranych ze zdalnego serwera. Kiedy tylko pobieranie się rozpocznie, " +"wartość ta jest wyświetlana jw formacie typu <literal>102/10.2k</literal>, " +"co oznacza, że pobrano 102 bajty, a oczekuje się jeszcze pobrania 10.2 " +"kilobajtów. Aby zaoszczędzić miejsce, całkowity rozmiar jest zawsze " +"wyświetlany jako w postaci 4-znakowej. Po rozmiarze następuje procentowy " +"wskaźnik postępu pobierania danego pliku. Przedostatnim elementem jest " +"bieżąca średnia prędkość pobierania, która jest aktualizowane co każde 5 " +"sekund i odzwierciedla tempo pobierania w tym okresie. W końcu wyświetlany " +"jest estymowany czas pobierania, regularnie aktualizowany i " +"odzwierciedlający czas pozostały do zakończenia pobierania przy założeniu " +"utrzymania się pokazanego tempa pobierania." + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:539 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 " "is started. Since the status display is constantly updated it is unsuitable " -"for logging to a file, use the <tt>-q</tt> option to remove the status " -"display." +"for logging to a file, use the <literal>-q</literal> option to remove the " +"status display." msgstr "" "Linia stanu jest aktualizowana co każde pół sekundy, aby na bieżąco " "informować użytkownika o postępie pobierania, podczas gdy linie \"Pob:\" są " "przesuwane w dół, gdy tylko zacznie się pobieranie nowego pliku. Ponieważ " "linia stanu jest ciągle zmieniana, wyjście programu nie jest odpowiednie do " -"przekierowania do pliku. Aby usunąć linie stanu, należy użyć opcji <tt>-q</" -"tt>." +"przekierowania do pliku. Aby usunąć linie stanu, należy użyć opcji <literal>-" +"q</literal>." -#. type: <heading></heading> -#: guide.sgml:535 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:547 msgid "Dpkg" msgstr "Dpkg" -#. type: <p></p> -#: guide.sgml:542 -msgid "" -"APT uses <prgn>dpkg</prgn> for installing the archives and will switch over " -"to the <prgn>dpkg</prgn> interface once downloading is completed. " -"<prgn>dpkg</prgn> will also ask a number of questions as it processes the " -"packages and the packages themselves may also ask several questions. Before " -"each question there is usually a description of what it is asking and the " -"questions are too varied to discuss completely here." -msgstr "" -"APT używa programu <prgn>dpkg</prgn> do instalowania archiwów i przełączy " -"się do interfejsu <prgn>dpkg</prgn>, gdy tylko zakończy pobieranie plików. " -"<prgn>dpkg</prgn> może również zadawać pytania podczas przetwarzania " -"pakietów, a same pakiety także mogą zadawać pytania. Każde pytanie zazwyczaj " -"jest poprzedzone opisem, a same pytania są zbyt zróżnicowane, by je tutaj " -"opisać." - -#. type: <title> -#: offline.sgml:4 +#. type: Content of:
+#: guide.dbk:549 +msgid "" +"APT uses dpkg for installing the archives and will switch " +"over to the dpkg interface once downloading is completed. " +"dpkg will also ask a number of questions as it processes " +"the packages and the packages themselves may also ask several questions. " +"Before each question there is usually a description of what it is asking and " +"the questions are too varied to discuss completely here." +msgstr "" +"APT używa programu dpkg do instalowania archiwów i " +"przełączy się do interfejsu dpkg, gdy tylko zakończy " +"pobieranie plików. dpkg może również zadawać pytania " +"podczas przetwarzania pakietów, a same pakiety także mogą zadawać pytania. " +"Każde pytanie zazwyczaj jest poprzedzone opisem, a same pytania są zbyt " +"zróżnicowane, by je tutaj opisać." + +#. type: Content of: +#: offline.dbk:10 msgid "Using APT Offline" msgstr "Używanie APT w trybie offline" -#. type: <version></version> -#: offline.sgml:7 -msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" - -#. type: <abstract></abstract> -#: offline.sgml:12 +#. type: Content of: <book><bookinfo><abstract><para> +#: offline.dbk:24 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -8904,23 +8947,24 @@ msgstr "" "dostępu, do sieci, a w szczególności metodę pozwalającą na przeprowadzanie " "aktualizacji systemu." -#. type: <copyrightsummary></copyrightsummary> -#: offline.sgml:16 -msgid "Copyright © Jason Gunthorpe, 1999." -msgstr "Copyright © Jason Gunthorpe, 1999." +#. type: Content of: <book><bookinfo> +#: offline.dbk:29 +msgid "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" -#. type: <heading></heading> -#: offline.sgml:32 +#. type: Content of: <book><chapter><title> +#: offline.dbk:47 msgid "Introduction" msgstr "Wstęp" -#. type: <heading></heading> -#: offline.sgml:34 offline.sgml:65 offline.sgml:180 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:49 offline.dbk:79 offline.dbk:191 msgid "Overview" msgstr "Wprowadzenie" -#. type: <p></p> -#: offline.sgml:40 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:51 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -8932,8 +8976,8 @@ msgstr "" "że nasz komputer, który pracuje na powolnym łączu takim jak modem, jest " "znacznie oddalony od innego komputera z szybkim łączem." -#. type: <p></p> -#: offline.sgml:51 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:57 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -8941,9 +8985,9 @@ msgid "" "to use APT to generate a list of packages that are required and then fetch " "them onto the disc using another machine with good connectivity. It is even " "possible to use another Debian machine with APT or to use a completely " -"different OS and a download tool like wget. Let <em>remote host</em> mean " -"the machine downloading the packages, and <em>target host</em> the one with " -"bad or no connection." +"different OS and a download tool like wget. Let <emphasis>remote host</" +"emphasis> mean the machine downloading the packages, and <emphasis>target " +"host</emphasis> the one with bad or no connection." msgstr "" "Rozwiązaniem tego problemu jest użycie pojemnych przenośnych nośników takich " "jak dyskietka Zip lub dysk SuperDisk. Nośniki te nie są wystarczająco " @@ -8956,8 +9000,8 @@ msgstr "" "innym systemem operacyjnym i programem narzędziowym do pobierania plików " "takim jak wget." -#. type: <p></p> -#: offline.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:68 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -8970,13 +9014,13 @@ msgstr "" "sformatowany do obsługi systemu plików pozwalającego posługiwać się długimi " "nazwami plików (np. ext2, fat32 albo vfat)." -#. type: <heading></heading> -#: offline.sgml:63 +#. type: Content of: <book><chapter><title> +#: offline.dbk:77 msgid "Using APT on both machines" msgstr "Używanie programu APT na obu komputerach" -#. type: <p><example> -#: offline.sgml:71 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:81 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -8989,8 +9033,8 @@ msgstr "" "które pakiety trzeba pobrać. Struktura katalogów na dysku powinna wyglądać " "następująco:" -#. type: <example></example> -#: offline.sgml:80 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:87 #, no-wrap msgid "" " /disc/\n" @@ -9000,7 +9044,7 @@ msgid "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" msgstr "" " /disc/\n" " archives/\n" @@ -9009,40 +9053,42 @@ msgstr "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" -#. type: <heading></heading> -#: offline.sgml:88 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:98 msgid "The configuration file" msgstr "Plik konfiguracyjny" -#. type: <p></p> -#: offline.sgml:96 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:100 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " "contain the proper sites that you wish to use from the remote machine, and " -"the status file should be a copy of <em>/var/lib/dpkg/status</em> from the " -"<em>target host</em>. Please note, if you are using a local archive you must " -"use copy URIs, the syntax is identical to file URIs." +"the status file should be a copy of <emphasis>/var/lib/dpkg/status</" +"emphasis> from the <emphasis>target host</emphasis>. Please note, if you are " +"using a local archive you must use copy URIs, the syntax is identical to " +"file URIs." msgstr "" "Plik konfiguracyjny powinien informować program APT, aby przechowywał swoje " "pliki na dysku, a także używał plików konfiguracyjnych z dysku. Plik sources." "list powinien zawierać prawidłowe odnośniki, których należy użyć na zdalnym " -"komputerze, a plik status powinien być kopią <em>/var/lib/dpkg/status</em>. " -"Należy zauważyć, że podczas używania lokalnego archiwum trzeba użyć tych " -"samych odnośników o identycznej składni." +"komputerze, a plik status powinien być kopią <emphasis>/var/lib/dpkg/status</" +"emphasis>. Należy zauważyć, że podczas używania lokalnego archiwum trzeba " +"użyć tych samych odnośników o identycznej składni." -#. type: <p><example> -#: offline.sgml:100 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:108 msgid "" -"<em>apt.conf</em> must contain the necessary information to make APT use the " -"disc:" +"<emphasis>apt.conf</emphasis> must contain the necessary information to make " +"APT use the disc:" msgstr "" -"<em>apt.conf</em> musi zawierać niezbędne wpisy, by APT korzystał z dysku:" +"<emphasis>apt.conf</emphasis> musi zawierać niezbędne wpisy, by APT " +"korzystał z dysku:" -#. type: <example></example> -#: offline.sgml:124 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:112 #, no-wrap msgid "" " APT\n" @@ -9050,10 +9096,10 @@ msgid "" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -9064,20 +9110,20 @@ msgid "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" msgstr "" " APT\n" " {\n" " /* Wpis nie jest wymagany, jeśli oba komputery mają tę samą architekturę;\n" " podaje architekturę naszego komputera programowi APT na odległym komputerze */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Używaj katalogu disc na informacje stanu i przekieruj plik status\n" @@ -9088,68 +9134,71 @@ msgstr "" " // Katalog lokalnie przechowywanych pakietów binarnych\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Lokalizacja pliku sources.list.\n" " Etc \"/disc\";\n" -" };" +" };\n" -#. type: </example></p> -#: offline.sgml:129 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:137 msgid "" "More details can be seen by examining the apt.conf man page and the sample " -"configuration file in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis>." msgstr "" "Więcej szczegółów można zobaczyć w stronie podręcznika apt.conf i w " -"przykładowym pliku konfiguracyjnym <em>/usr/share/doc/apt/examples/apt.conf</" -"em>." +"przykładowym pliku konfiguracyjnym <emphasis>/usr/share/doc/apt/examples/apt." +"conf</emphasis>." -#. type: <p><example> -#: offline.sgml:136 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:142 msgid "" -"On the target machine the first thing to do is mount the disc and copy <em>/" -"var/lib/dpkg/status</em> to it. You will also need to create the directories " -"outlined in the Overview, <em>archives/partial/</em> and <em>lists/partial/</" -"em>. Then take the disc to the remote machine and configure the sources." -"list. On the remote machine execute the following:" +"On the target machine the first thing to do is mount the disc and copy " +"<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " +"create the directories outlined in the Overview, <emphasis>archives/partial/" +"</emphasis> and <emphasis>lists/partial/</emphasis>. Then take the disc to " +"the remote machine and configure the sources.list. On the remote machine " +"execute the following:" msgstr "" "Pierwszą rzeczą, jaką należy zrobić na oddalonym komputerze z Debianem to " -"zamontować dysk i przekopiować na niego plik <em>/var/lib/dpkg/status</em>. " -"Trzeba także utworzyć strukturę katalogów przedstawioną we \"Wprowadzeniu\": " -"<em>archives/partial/</em> i <em>lists/partial/</em>. Następnie należy " -"przenieść dysk do oddalonego komputera z szybkim łączem i skonfigurować plik " -"sources.list. Na oddalonym komputerze wykonujemy kolejno:" - -#. type: <example></example> -#: offline.sgml:142 +"zamontować dysk i przekopiować na niego plik <emphasis>/var/lib/dpkg/status</" +"emphasis>. Trzeba także utworzyć strukturę katalogów przedstawioną we " +"\"Wprowadzeniu\": <emphasis>archives/partial/</emphasis> i <emphasis>lists/" +"partial/</emphasis>. Następnie należy przenieść dysk do oddalonego komputera " +"z szybkim łączem i skonfigurować plik sources.list. Na oddalonym komputerze " +"wykonujemy kolejno:" + +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:151 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT fetches the package files ]\n" " # apt-get dist-upgrade\n" -" [ APT fetches all the packages needed to upgrade the target machine ]" +" [ APT fetches all the packages needed to upgrade the target machine ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT aktualizuje ustawienia ]\n" " # apt-get dist-upgrade\n" -" [ APT pobiera wszystkie pakiety potrzebne do aktualizacji Twojego systemu ]" +" [ APT pobiera wszystkie pakiety potrzebne do aktualizacji Twojego systemu ]\n" -#. type: </example></p> -#: offline.sgml:149 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:158 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " -"such as <em>dselect</em>. However this presents a problem in communicating " -"your selections back to the local computer." +"such as <emphasis>dselect</emphasis>. However this presents a problem in " +"communicating your selections back to the local computer." msgstr "" "Polecenie dist-upgrade można zastąpić każdym innym podstawowym poleceniem " "APT, w szczególności dselect-upgrade. Można nawet użyć APT jako metody " -"dostępu dla <em>dselect</em>. Jednak stworzy to problem w przeniesieniu " -"Twoich operacji wyborów z powrotem na lokalny komputer." +"dostępu dla <emphasis>dselect</emphasis>. Jednak stworzy to problem w " +"przeniesieniu Twoich operacji wyborów z powrotem na lokalny komputer." -#. type: <p><example> -#: offline.sgml:153 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:164 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9158,24 +9207,24 @@ msgstr "" "niezbędne do aktualizacji maszyny z Debianem. Bierzemy dysk z powrotem do " "siebie i wpisujemy:" -#. type: <example></example> -#: offline.sgml:159 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:168 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generates a local copy of the cache files ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Or any other APT command ]" +" [ Or any other APT command ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT tworzy lokalną kopię plików cache ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Może też być inne polecenie programu APT ]" +" [ Może też być inne polecenie programu APT ]\n" -#. type: <p></p> -#: offline.sgml:165 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:175 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -9183,8 +9232,8 @@ msgstr "" "Do prawidłowego działania koniecznie należy podać plik status z lokalnej " "maszyny. To jest bardzo ważne!" -#. type: <p></p> -#: offline.sgml:172 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:179 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -9199,25 +9248,25 @@ msgstr "" "to możliwe. NIE podmieniaj pliku status, jeśli dpkg lub APT były uruchamiane " "w międzyczasie!" -#. type: <heading></heading> -#: offline.sgml:178 +#. type: Content of: <book><chapter><title> +#: offline.dbk:189 msgid "Using APT and wget" msgstr "Używanie programów APT i wget" -#. type: <p></p> -#: offline.sgml:185 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:193 msgid "" -"<em>wget</em> is a popular and portable download tool that can run on nearly " -"any machine. Unlike the method above this requires that the Debian machine " -"already has a list of available packages." +"<emphasis>wget</emphasis> is a popular and portable download tool that can " +"run on nearly any machine. Unlike the method above this requires that the " +"Debian machine already has a list of available packages." msgstr "" -"<em>wget</em> jest popularnym i przenośnym programem narzędziowym pobierania " -"plików, który działa prawie na każdym komputerze. W przeciwieństwie do " -"metody opisanej powyżej ta wymaga, aby na lokalnym komputerze była aktualna " -"lista dostępnych pakietów." +"<emphasis>wget</emphasis> jest popularnym i przenośnym programem " +"narzędziowym pobierania plików, który działa prawie na każdym komputerze. W " +"przeciwieństwie do metody opisanej powyżej ta wymaga, aby na lokalnym " +"komputerze była aktualna lista dostępnych pakietów." -#. type: <p></p> -#: offline.sgml:190 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:198 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -9229,13 +9278,13 @@ msgstr "" "następnie przygotujemy skrypt dla programu wget, który pobierze właściwe " "pakiety." -#. type: <heading></heading> -#: offline.sgml:196 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:204 msgid "Operation" msgstr "Kolejne kroki" -#. type: <p><example> -#: offline.sgml:200 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:206 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -9244,22 +9293,22 @@ msgstr "" "plików konfiguracyjnych. Używamy jedynie podstawowych poleceń APT, by " "wygenerować listę plików." -#. type: <example></example> -#: offline.sgml:205 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:210 #, no-wrap msgid "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" " # apt-get dist-upgrade \n" " [ Wybierz \"no\" po znaku zachęty, upewnij się, czy to właściwy wybór ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" -#. type: </example></p> -#: offline.sgml:210 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:216 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -9267,8 +9316,8 @@ msgstr "" "Można tu użyć także polecenia innego niż dist-upgrade, na przykład dselect-" "upgrade." -#. type: <p></p> -#: offline.sgml:216 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:220 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -9280,25 +9329,25 @@ msgstr "" "uruchomić w bieżącym katalogu o punkcie montowania disc, tak aby zapisywał " "dane na tym dysku." -#. type: <p><example> -#: offline.sgml:219 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:226 msgid "The remote machine would do something like" msgstr "Na oddalonym komputerze należy wykonać coś takiego" -#. type: <example></example> -#: offline.sgml:223 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:229 #, no-wrap msgid "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" msgstr "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ czekaj.. ]" +" [ czekaj.. ]\n" -#. type: </example><example> -#: offline.sgml:228 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:234 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -9306,14 +9355,14 @@ msgstr "" "Gdy archiwa zostaną pobrane i dysk wróci do komputera z Debianem, " "instalowanie można prowadzić dalej poleceniem:" -#. type: <example></example> -#: offline.sgml:230 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:238 #, no-wrap -msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" +msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" +msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" -#. type: </example></p> -#: offline.sgml:234 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." msgstr "Które użyje pobranych uprzednio archiwów z dysku." @@ -9329,14 +9378,12 @@ msgstr "Które użyje pobranych uprzednio archiwów z dysku." #~ msgid "NAME" #~ msgstr "NAZWA" -# #~ msgid "apt - Advanced Package Tool" #~ msgstr "apt - Zaawansowane narzędzie zarządzania pakietami" #~ msgid "SYNOPSIS" #~ msgstr "SKŁADNIA" -# #~ msgid "B<apt>" #~ msgstr "B<apt>" @@ -9364,7 +9411,6 @@ msgstr "Które użyje pobranych uprzednio archiwów z dysku." #~ msgid "SEE ALSO" #~ msgstr "ZOBACZ TAKÅ»E" -# #, fuzzy #~| msgid "" #~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " @@ -9379,7 +9425,6 @@ msgstr "Które użyje pobranych uprzednio archiwów z dysku." #~ msgid "DIAGNOSTICS" #~ msgstr "DIAGNOSTYKA" -# #~ msgid "apt returns zero on normal operation, decimal 100 on error." #~ msgstr "" #~ "apt zwraca zero, jeżeli zakończyło się pomyślnie, 100 dziesiętnie w " @@ -9388,11 +9433,9 @@ msgstr "Które użyje pobranych uprzednio archiwów z dysku." #~ msgid "BUGS" #~ msgstr "BŁĘDY" -# #~ msgid "This manpage isn't even started." #~ msgstr "Ta strona podręcznika nie jest nawet zaczęta." -# #~ msgid "" #~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " #~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " @@ -9405,7 +9448,6 @@ msgstr "Które użyje pobranych uprzednio archiwów z dysku." #~ msgid "AUTHOR" #~ msgstr "AUTOR" -# #~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." #~ msgstr "" #~ "apt zostało napisane przez zespół APT E<lt>apt@packages.debian.orgE<gt>." @@ -9445,7 +9487,6 @@ msgstr "Które użyje pobranych uprzednio archiwów z dysku." #~ "Universal Resource Locator - URL). Pozostała część linii może być " #~ "komentarzem, jeśli zaczyna się od znaku \"#\"." -# #~ msgid "" #~ "<literal>gencaches</literal> performs the same operation as <command>apt-" #~ "get check</command>. It builds the source and package caches from the " @@ -9457,7 +9498,6 @@ msgstr "Które użyje pobranych uprzednio archiwów z dysku." #~ "podstawie źródeł wymienionych w &sources-list; oraz pliku <filename>/var/" #~ "lib/dpkg/status</filename>." -# #~ msgid "" #~ "Unless the <option>-h</option>, or <option>--help</option> option is " #~ "given one of the commands below must be present. <placeholder type=" @@ -9467,14 +9507,12 @@ msgstr "Które użyje pobranych uprzednio archiwów z dysku." #~ "<option>-h</option> lub <option>--help</option>. <placeholder type=" #~ "\"variablelist\" id=\"0\"/>" -# #~ msgid "APT package handling utility -- cache manipulator" #~ msgstr "Narzędzie zarządzania pakietami APT -- manipulator bufora" #~ msgid "add <replaceable>file(s)</replaceable>" #~ msgstr "add <replaceable>plik(i)</replaceable>" -# #~ msgid "" #~ "<literal>add</literal> adds the named package index files to the package " #~ "cache. This is for debugging only." diff --git a/doc/po/pt.po b/doc/po/pt.po index 6ebf93bc7..483c1f903 100644 --- a/doc/po/pt.po +++ b/doc/po/pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-05-05 16:26+0200\n" -"PO-Revision-Date: 2014-04-01 13:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"PO-Revision-Date: 2014-07-04 01:43+0200\n" "Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n" "Language-Team: Portuguese <l10n@debianpt.org>\n" "Language: pt\n" @@ -871,7 +871,7 @@ msgstr "a linha <literal>Archive:</literal> ou <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 #: apt-ftparchive.1.xml:609 msgid "See Also" @@ -1837,7 +1837,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 +#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 msgid "Files" msgstr "Ficheiros" @@ -3042,10 +3042,10 @@ msgstr "" #: apt-secure.8.xml:195 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" msgstr "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:199 @@ -4585,15 +4585,27 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:607 +#, fuzzy +#| msgid "" +#| "<literal>Dir::Cache</literal> contains locations pertaining to local " +#| "cache information, such as the two package caches <literal>srcpkgcache</" +#| "literal> and <literal>pkgcache</literal> as well as the location to place " +#| "downloaded archives, <literal>Dir::Cache::archives</literal>. Generation " +#| "of caches can be turned off by setting their names to the empty string. " +#| "This will slow down startup but save disk space. It is probably " +#| "preferable to turn off the pkgcache rather than the srcpkgcache. Like " +#| "<literal>Dir::State</literal> the default directory is contained in " +#| "<literal>Dir::Cache</literal>" msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " "and <literal>pkgcache</literal> as well as the location to place downloaded " "archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " -"be turned off by setting their names to the empty string. This will slow " +"be turned off by setting <literal>pkgcache</literal> or " +"<literal>srcpkgcache</literal> to <literal>\"\"</literal>. This will slow " "down startup but save disk space. It is probably preferable to turn off the " -"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " -"default directory is contained in <literal>Dir::Cache</literal>" +"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> contém localizações pertencentes a informação " "da cache local, como as caches de dois pacotes <literal>srcpkgcache</" @@ -4606,7 +4618,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:617 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4621,7 +4633,7 @@ msgstr "" "ficheiro de configuração especificado por <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:622 +#: apt.conf.5.xml:623 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4632,7 +4644,7 @@ msgstr "" "estar feito então é carregado o ficheiro de configuração principal." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:627 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4650,7 +4662,7 @@ msgstr "" "respectivos programas." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:634 +#: apt.conf.5.xml:635 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4671,7 +4683,7 @@ msgstr "" "procurado em <filename>/tmp/staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:648 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4689,12 +4701,12 @@ msgstr "" "expressão regular." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:657 msgid "APT in DSelect" msgstr "APT em DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:659 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4705,7 +4717,7 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:664 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4727,7 +4739,7 @@ msgstr "" "pacotes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:677 +#: apt.conf.5.xml:678 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4736,7 +4748,7 @@ msgstr "" "comandos quando é corrido para a fase de instalação." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:683 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4745,7 +4757,7 @@ msgstr "" "comandos quando é executado para a fase de actualização." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:688 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4754,12 +4766,12 @@ msgstr "" "continuar. A predefinição é avisar apenas em caso de erro." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:693 +#: apt.conf.5.xml:694 msgid "How APT calls &dpkg;" msgstr "Como o APT chama o &dpkg;" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:695 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4768,7 +4780,7 @@ msgstr "" "&dpkg;. Estas estão na secção <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:700 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4779,7 +4791,7 @@ msgstr "" "um argumento único ao &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:705 +#: apt.conf.5.xml:706 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4792,7 +4804,7 @@ msgstr "" "bin/sh</filename>, caso algum deles falhe, o APT irá abortar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:712 +#: apt.conf.5.xml:713 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4816,7 +4828,7 @@ msgstr "" "instalar, um por cada linha na entrada standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:719 +#: apt.conf.5.xml:720 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4837,7 +4849,7 @@ msgstr "" "dado ao <literal>Pre-Install-Pkgs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:724 +#: apt.conf.5.xml:725 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4848,7 +4860,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:731 +#: apt.conf.5.xml:732 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4859,7 +4871,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:742 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4868,7 +4880,7 @@ msgstr "" "predefinição é <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:746 +#: apt.conf.5.xml:747 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4877,12 +4889,12 @@ msgstr "" "predefinição é desactivar a assinatura e produzir todos os binários." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:751 +#: apt.conf.5.xml:752 msgid "dpkg trigger usage (and related options)" msgstr "Utilização trigger do dpkg (e opções relacionadas)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:753 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4908,7 +4920,7 @@ msgstr "" "100% enquanto na realidade está a configurar todos os pacotes." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:767 +#: apt.conf.5.xml:768 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4922,7 +4934,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:762 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4946,7 +4958,7 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:774 +#: apt.conf.5.xml:775 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4968,7 +4980,7 @@ msgstr "" "chamadas unpack e remove." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:782 +#: apt.conf.5.xml:783 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4998,7 +5010,7 @@ msgstr "" "arrancar." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:798 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5016,7 +5028,7 @@ msgstr "" "esta opção em todas excepto na última execução." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:804 +#: apt.conf.5.xml:805 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5032,7 +5044,7 @@ msgstr "" "configurar este pacote." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:818 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5050,7 +5062,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:810 +#: apt.conf.5.xml:811 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5074,12 +5086,12 @@ msgstr "" "predefinidos. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:831 msgid "Periodic and Archives options" msgstr "Opções Periodic e Archives" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:832 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5092,12 +5104,12 @@ msgstr "" "Veja o cabeçalho deste script para uma breve documentação das suas opções." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:839 +#: apt.conf.5.xml:840 msgid "Debug options" msgstr "Opções de depuração" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:841 +#: apt.conf.5.xml:842 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5114,7 +5126,7 @@ msgstr "" "interesse para o utilizador normal, mas algumas podem ter:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:852 +#: apt.conf.5.xml:853 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5125,7 +5137,7 @@ msgstr "" "remove, purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:861 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5136,7 +5148,7 @@ msgstr "" "<literal>apt-get -s install</literal>) como um utilizador não root." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:870 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5148,7 +5160,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:878 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5157,12 +5169,12 @@ msgstr "" "IDs de CD-ROM." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:888 msgid "A full list of debugging options to apt follows." msgstr "Segue-se uma lista completa de opções de depuração para o apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:896 +#: apt.conf.5.xml:897 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5170,25 +5182,25 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:907 +#: apt.conf.5.xml:908 msgid "Print information related to downloading packages using FTP." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:919 msgid "Print information related to downloading packages using HTTP." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:930 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:940 +#: apt.conf.5.xml:941 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5197,7 +5209,7 @@ msgstr "" "criptográficas usando <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:951 +#: apt.conf.5.xml:952 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5206,13 +5218,13 @@ msgstr "" "armazenados em CD-ROMs." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:961 +#: apt.conf.5.xml:962 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Descreve os processos de resolver dependências de compilação no &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:971 +#: apt.conf.5.xml:972 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5221,7 +5233,7 @@ msgstr "" "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:981 +#: apt.conf.5.xml:982 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5232,7 +5244,7 @@ msgstr "" "para um CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:992 +#: apt.conf.5.xml:993 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." @@ -5242,14 +5254,14 @@ msgstr "" "literal></quote> ao mesmo tempo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1004 +#: apt.conf.5.xml:1005 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Regista no log quando os items são adicionados ou removidos da fila de " "download global." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1014 +#: apt.conf.5.xml:1015 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5258,7 +5270,7 @@ msgstr "" "checksums e assinaturas criptográficas dos ficheiros descarregados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1024 +#: apt.conf.5.xml:1025 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5268,7 +5280,7 @@ msgstr "" "pacote." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1036 +#: apt.conf.5.xml:1037 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5277,7 +5289,7 @@ msgstr "" "do apt quando se descarrega diffs de índice em vez de índices completos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1047 +#: apt.conf.5.xml:1048 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5285,7 +5297,7 @@ msgstr "" "downloads." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1058 +#: apt.conf.5.xml:1059 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5294,7 +5306,7 @@ msgstr "" "de pacotes e com a remoção de pacotes não utilizados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1068 +#: apt.conf.5.xml:1069 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5309,7 +5321,7 @@ msgstr "" "literal>; veja <literal>Debug::pkgProblemResolver</literal> para isso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1082 +#: apt.conf.5.xml:1083 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5340,7 +5352,7 @@ msgstr "" "pacote aparece." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1103 +#: apt.conf.5.xml:1104 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5350,7 +5362,7 @@ msgstr "" "único." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1114 +#: apt.conf.5.xml:1115 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5359,7 +5371,7 @@ msgstr "" "estado e quaisquer erros encontrados enquanto os analisa." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1125 +#: apt.conf.5.xml:1126 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5368,7 +5380,7 @@ msgstr "" "literal> deve passar os pacotes ao &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1137 +#: apt.conf.5.xml:1138 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5376,12 +5388,12 @@ msgstr "" "&dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1148 +#: apt.conf.5.xml:1149 msgid "Output the priority of each package list on startup." msgstr "Escreve a prioridade da cada lista de pacote no arranque." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1158 +#: apt.conf.5.xml:1159 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5390,7 +5402,7 @@ msgstr "" "acontece quando é encontrado um problema de dependências complexo)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1169 +#: apt.conf.5.xml:1170 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5401,7 +5413,7 @@ msgstr "" "mesma que é descrita em <literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1181 +#: apt.conf.5.xml:1182 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5410,7 +5422,7 @@ msgstr "" "vendors.list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1191 +#: apt.conf.5.xml:1192 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5418,13 +5430,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1216 +#: apt.conf.5.xml:1217 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5434,7 +5446,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1228 +#: apt.conf.5.xml:1229 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -8471,36 +8483,53 @@ msgstr "" "<command>apt-ftparchive</command> devolve zero na operação normal, 100 " "decimal em erro." -#. type: <title> -#: guide.sgml:4 +#. type: Attribute 'lang' of: +#: guide.dbk:8 offline.dbk:8 +msgid "en" +msgstr "pt" + +#. type: Content of: +#: guide.dbk:10 msgid "APT User's Guide" msgstr "Guia de Utilizador do APT" -#. type: <author></author> -#: guide.sgml:6 offline.sgml:6 -msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" -msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#. type: Content of: <book><bookinfo><authorgroup><author><personname> +#: guide.dbk:16 offline.dbk:16 +msgid "Jason Gunthorpe" +msgstr "Jason Gunthorpe" -#. type: <version></version> -#: guide.sgml:7 -msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#. type: Content of: <book><bookinfo><authorgroup><author><email> +#: guide.dbk:16 offline.dbk:16 +msgid "jgg@debian.org" +msgstr "jgg@debian.org" -#. type: <abstract></abstract> -#: guide.sgml:11 +#. type: Content of: <book><bookinfo><releaseinfo> +#: guide.dbk:20 offline.dbk:20 +msgid "Version &apt-product-version;" +msgstr "" + +#. type: Content of: <book><bookinfo><abstract><para> +#: guide.dbk:24 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" "Este documento disponibiliza uma visão geral de como usar o gestor de " "pacotes APT." -#. type: <copyrightsummary></copyrightsummary> -#: guide.sgml:15 -msgid "Copyright © Jason Gunthorpe, 1998." -msgstr "Copyright © Jason Gunthorpe, 1998." +#. type: Content of: <book><bookinfo> +#: guide.dbk:28 +msgid "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" + +#. type: Content of: <book><bookinfo><legalnotice><title> +#: guide.dbk:31 offline.dbk:32 +msgid "License Notice" +msgstr "" -#. type: <p></p> -#: guide.sgml:21 offline.sgml:22 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:33 offline.dbk:34 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 " @@ -8512,8 +8541,8 @@ msgstr "" "published by the Free Software Foundation; either version 2 of the License, " "or (at your option) any later version." -#. type: <p></p> -#: guide.sgml:24 offline.sgml:25 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:42 offline.dbk:40 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8521,31 +8550,31 @@ msgstr "" "Para mais detalhes em sistemas Debian, veja o ficheiro /usr/share/common-" "licenses/GPL para a licença completa." -#. type: <heading></heading> -#: guide.sgml:32 +#. type: Content of: <book><chapter><title> +#: guide.dbk:49 msgid "General" msgstr "Geral" -#. type: <p></p> -#: guide.sgml:38 +#. type: Content of: <book><chapter><para> +#: guide.dbk:51 msgid "" -"The APT package currently contains two sections, the APT <prgn>dselect</" -"prgn> method and the <prgn>apt-get</prgn> command line user interface. Both " -"provide a way to install and remove packages as well as download new " -"packages from the Internet." +"The APT package currently contains two sections, the APT <command>dselect</" +"command> method and the <command>apt-get</command> command line user " +"interface. Both provide a way to install and remove packages as well as " +"download new packages from the Internet." msgstr "" -"O pacote APT contém actualmente duas secções, o método <prgn>dselect</prgn> " -"do APT e a interface de utilizador de linha de comandos <prgn>apt-get</" -"prgn>. Ambos disponibilizam uma maneira de instalar e remover pacotes assim " -"como descarregar novos pacotes da Internet." +"O pacote APT contém actualmente duas secções, o método <command>dselect</" +"command> do APT e a interface de utilizador de linha de comandos " +"<command>apt-get</command>. Ambos disponibilizam uma maneira de instalar e " +"remover pacotes assim como descarregar novos pacotes da Internet." -#. type: <heading></heading> -#: guide.sgml:39 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:57 msgid "Anatomy of the Package System" msgstr "Anatomia do Sistema de Pacotes" -#. type: <p></p> -#: guide.sgml:44 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:59 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 " @@ -8556,8 +8585,8 @@ msgstr "" "limpo e fácil no sistema. A mais proeminente das suas funcionalidades é o " "sistema de dependências." -#. type: <p></p> -#: guide.sgml:52 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:64 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8572,8 +8601,8 @@ msgstr "" "médio. Também permite opções em agentes de transporte de mail, servidores X " "e mais." -#. type: <p></p> -#: guide.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:71 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 " @@ -8585,8 +8614,8 @@ msgstr "" "simples é que um pacote requer outro pacote seja instalado ao mesmo tempo " "para funcionar correctamente." -#. type: <p></p> -#: guide.sgml:63 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:76 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 " @@ -8598,8 +8627,8 @@ msgstr "" "uma dependência simples do GPG. Também, porque é uma extensão do emacs, tem " "uma dependência simples do emacs, e sem o emacs é completamente inútil." -#. type: <p></p> -#: guide.sgml:73 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:82 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 " @@ -8620,8 +8649,8 @@ msgstr "" "de mail têm uma dependência de conflito com todos os outros agentes de " "transporte de mail." -#. type: <p></p> -#: guide.sgml:83 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:92 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 " @@ -8641,8 +8670,8 @@ msgstr "" "agente de transporte de mail dependem de um mail-transport-agent. Isto pode " "adicionar uma grande confusão quando se tenta corrigir pacotes manualmente." -#. type: <p></p> -#: guide.sgml:88 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:102 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 " @@ -8654,77 +8683,85 @@ msgstr "" "problemas com dependências ao disponibilizar um número de algoritmos " "automáticos que ajudam a seleccionar os pacotes para instalação." -#. type: <heading></heading> -#: guide.sgml:96 +#. type: Content of: <book><chapter><title> +#: guide.dbk:111 msgid "apt-get" msgstr "apt-get" -#. type: <p></p> -#: guide.sgml:102 -msgid "" -"<prgn>apt-get</prgn> provides a simple way to install packages from the " -"command line. Unlike <prgn>dpkg</prgn>, <prgn>apt-get</prgn> does not " -"understand .deb files, it works with the package's proper name and can only " -"install .deb archives from a <em>Source</em>." -msgstr "" -"<prgn>apt-get</prgn> fornece uma maneira simples de instalar pacotes a " -"partir da linha de comandos. Ao contrário do <prgn>dpkg</prgn>, o <prgn>apt-" -"get</prgn> não compreende os ficheiros .deb, funciona com o nome próprio do " -"pacote e apenas pode instalar arquivos .deb a partir de uma <em>Source</em>." - -#. type: <p></p> -#: guide.sgml:109 -msgid "" -"The first <footnote><p>If you are using an http proxy server you must set " -"the http_proxy environment variable first, see sources.list(5)</p></" -"footnote> thing that should be done before using <prgn>apt-get</prgn> is to " -"fetch the package lists from the <em>Sources</em> so that it knows what " -"packages are available. This is done with <tt>apt-get update</tt>. For " -"instance," -msgstr "" -"O primeira <footnote><p>se você está a usar um servidor proxy http você tem " -"que definir a variável de ambiente http_proxy primeiro, veja sources." -"list(5)</p></footnote> coisa que deve ser feita antes de usar <prgn>apt-get</" -"prgn> é obter as listas de pacotes a partir das <em>Sources</em> para que " -"ele saiba que pacotes estão disponíveis. Isto é feito com <tt>apt-get " -"update</tt>. Por exemplo," - -#. type: <example></example> -#: guide.sgml:116 +#. type: Content of: <book><chapter><para> +#: guide.dbk:113 +msgid "" +"<command>apt-get</command> provides a simple way to install packages from " +"the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " +"does not understand .deb files, it works with the package's proper name and " +"can only install .deb archives from a <emphasis>Source</emphasis>." +msgstr "" +"<command>apt-get</command> fornece uma maneira simples de instalar pacotes a " +"partir da linha de comandos. Ao contrário do <command>dpkg</command>, o " +"<command>apt-get</command> não compreende os ficheiros .deb, funciona com o " +"nome próprio do pacote e apenas pode instalar arquivos .deb a partir de uma " +"<emphasis>Source</emphasis>." + +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:119 +msgid "" +"If you are using an http proxy server you must set the http_proxy " +"environment variable first, see sources.list(5)" +msgstr "" +"se você está a usar um servidor proxy http você tem que definir a variável " +"de ambiente http_proxy primeiro, veja sources.list(5)" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:119 +msgid "" +"The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " +"done before using <command>apt-get</command> is to fetch the package lists " +"from the <emphasis>Sources</emphasis> so that it knows what packages are " +"available. This is done with <literal>apt-get update</literal>. For instance," +msgstr "" +"O primeira <placeholder type=\"footnote\" id=\"0\"/> coisa que deve ser " +"feita antes de usar <command>apt-get</command> é obter as listas de pacotes " +"a partir das <emphasis>Sources</emphasis> para que ele saiba que pacotes " +"estão disponíveis. Isto é feito com <literal>apt-get update</literal>. Por " +"exemplo," + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:127 #, no-wrap msgid "" "# 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" +"Building Dependency Tree... Done\n" 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" +"Building Dependency Tree... Done\n" -#. type: <p><taglist> -#: guide.sgml:120 +#. type: Content of: <book><chapter><para> +#: guide.dbk:134 msgid "Once updated there are several commands that can be used:" msgstr "Uma vez actualizado existem vários comandos que podem ser usados:" -#. type: <tag></tag> -#: guide.sgml:121 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:138 msgid "upgrade" msgstr "upgrade" -#. type: <p></p> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:141 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 " "upgrade a package that might cause some other package to break. This can be " "used daily to relatively safely upgrade the system. Upgrade will list all of " "the packages that it could not upgrade, this usually means that they depend " -"on new packages or conflict with some other package. <prgn>dselect</prgn> or " -"<tt>apt-get install</tt> can be used to force these packages to install." +"on new packages or conflict with some other package. <command>dselect</" +"command> or <literal>apt-get install</literal> can be used to force these " +"packages to install." msgstr "" "Upgrade irá tentar actualizar gentilmente todo o sistema. Upgrade nunca irá " "instalar um pacote novo ou remover um pacote existente, nem nunca irá " @@ -8732,16 +8769,16 @@ msgstr "" "ser usado diariamente para actualizar o sistema com relativa segurança. " "Upgrade ira listar todos os pacotes que não pode actualizar, isto geralmente " "significa que eles dependem de novos pacotes ou entram em conflito com algum " -"outro pacote. <prgn>dselect</prgn> ou <tt>apt-get install</tt> podem ser " -"usados para forçar estes pacotes a instalar." +"outro pacote. <command>dselect</command> ou <literal>apt-get install</" +"literal> podem ser usados para forçar estes pacotes a instalar." -#. type: <tag></tag> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:153 msgid "install" msgstr "install" -#. type: <p></p> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:156 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 " @@ -8759,33 +8796,34 @@ msgstr "" "com os pacotes listados e irá escrever um sumário e pedir confirmação se " "algo mais que os seus argumentos serão alterados." -#. type: <tag></tag> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:167 msgid "dist-upgrade" msgstr "dist-upgrade" -#. type: <p></p> -#: guide.sgml:149 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:170 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " "set of packages to install, upgrade and remove to get as much of the system " "to the newest release. In some situations it may be desired to use dist-" "upgrade rather than spend the time manually resolving dependencies in " -"<prgn>dselect</prgn>. Once dist-upgrade has completed then <prgn>dselect</" -"prgn> can be used to install any packages that may have been left out." +"<command>dselect</command>. Once dist-upgrade has completed then " +"<command>dselect</command> can be used to install any packages that may have " +"been left out." msgstr "" "Dist-upgrade é um actualizador completo desenhado para simplificar a " "actualização entre lançamentos da Debian. Usa um algoritmo sofisticado para " "determinar o melhor conjunto de pacotes a instalar, actualizar ou remover " "para obter o máximo do sistema para o novo lançamento. Em algumas situações " "pode ser desejável usar o dist-upgrade em vez de passar o tempo a resolver " -"dependências manualmente no <prgn>dselect</prgn>. Assim que o dist-upgrade " -"tiver terminado então pode ser usado o <prgn>dselect</prgn> para instalar " -"quaisquer pacotes que tenham ficado de fora." +"dependências manualmente no <command>dselect</command>. Assim que o dist-" +"upgrade tiver terminado então pode ser usado o <command>dselect</command> " +"para instalar quaisquer pacotes que tenham ficado de fora." -#. type: <p></p> -#: guide.sgml:152 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:180 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8793,166 +8831,161 @@ msgstr "" "É importante observar de perto o que o dist-upgrade vai fazer, as suas " "decisões podem por vezes ser bastante surpreendentes." -#. type: <p></p> -#: guide.sgml:163 -#, fuzzy -#| msgid "" -#| "<prgn>apt-get</prgn> has several command line options that are detailed " -#| "in its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -#| "option is <tt>-d</tt> which does not install the fetched files. If the " -#| "system has to download a large number of package it would be undesired to " -#| "start installing them in case something goes wrong. When <tt>-d</tt> is " -#| "used the downloaded archives can be installed by simply running the " -#| "command that caused them to be downloaded again without <tt>-d</tt>." -msgid "" -"<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -"option is <tt>-d</tt> which does not install the fetched files. If the " -"system has to download a large number of package it would be undesired to " -"start installing them in case something goes wrong. When <tt>-d</tt> is used " -"the downloaded archives can be installed by simply running the command that " -"caused them to be downloaded again without <tt>-d</tt>." -msgstr "" -"<prgn>apt-get</prgn> tem várias opções de linha de comandos que estão " -"detalhados no seu manual, <manref section=\"8\" name=\"apt-get\">. A opção " -"mais útil é <tt>-d</tt> que não instala os pacotes obtidos, Se o sistema " -"tiver que descarregar um grande número de pacotes seria indesejável começar " -"a instalá-los no caso de algo correr mal. Quando se usa <tt>-d</tt> os " -"arquivos descarregados podem ser instalados simplesmente ao correr de novo " -"comando que s descarregou mas sem o <tt>-d</tt>." - -#. type: <heading></heading> -#: guide.sgml:168 +#. type: Content of: <book><chapter><para> +#: guide.dbk:187 +msgid "" +"<command>apt-get</command> has several command line options that are " +"detailed in its man page, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. The most useful " +"option is <literal>-d</literal> which does not install the fetched files. If " +"the system has to download a large number of package it would be undesired " +"to start installing them in case something goes wrong. When <literal>-d</" +"literal> is used the downloaded archives can be installed by simply running " +"the command that caused them to be downloaded again without <literal>-d</" +"literal>." +msgstr "" +"<command>apt-get</command> tem várias opções de linha de comandos que estão " +"detalhados no seu manual, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. A opção mais útil é " +"<literal>-d</literal> que não instala os pacotes obtidos, Se o sistema tiver " +"que descarregar um grande número de pacotes seria indesejável começar a " +"instalá-los no caso de algo correr mal. Quando se usa <literal>-d</literal> " +"os arquivos descarregados podem ser instalados simplesmente ao correr de " +"novo comando que s descarregou mas sem o <literal>-d</literal>." + +#. type: Content of: <book><chapter><title> +#: guide.dbk:199 msgid "DSelect" msgstr "DSelect" -#. type: <p></p> -#: guide.sgml:173 +#. type: Content of: <book><chapter><para> +#: guide.dbk:201 msgid "" -"The APT <prgn>dselect</prgn> method provides the complete APT system with " -"the <prgn>dselect</prgn> package selection GUI. <prgn>dselect</prgn> is used " -"to select the packages to be installed or removed and APT actually installs " -"them." +"The APT <command>dselect</command> method provides the complete APT system " +"with the <command>dselect</command> package selection GUI. <command>dselect</" +"command> is used to select the packages to be installed or removed and APT " +"actually installs them." msgstr "" -"O método <prgn>dselect</prgn> do APT disponibiliza o sistema APT completo " -"com a GUI de selecção de pacotes <prgn>dselect</prgn>. O <prgn>dselect</" -"prgn> é usado para seleccionar os pacotes a serem instalados ou removidos e " -"o APT instala-os." +"O método <command>dselect</command> do APT disponibiliza o sistema APT " +"completo com a GUI de selecção de pacotes <command>dselect</command>. O " +"<command>dselect</command> é usado para seleccionar os pacotes a serem " +"instalados ou removidos e o APT instala-os." -#. type: <p></p> -#: guide.sgml:184 +#. type: Content of: <book><chapter><para> +#: guide.dbk:207 msgid "" -"To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " -"and then choose the APT method. You will be prompted for a set of " -"<em>Sources</em> which are places to fetch archives from. These can be " -"remote Internet sites, local Debian mirrors or CD-ROMs. Each source can " -"provide a fragment of the total Debian archive, APT will automatically " +"To enable the APT method you need to select [A]ccess in <command>dselect</" +"command> and then choose the APT method. You will be prompted for a set of " +"<emphasis>Sources</emphasis> which are places to fetch archives from. These " +"can be remote Internet sites, local Debian mirrors or CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet." msgstr "" "Para activar o método APT você precisa de seleccionar [A]ccess no " -"<prgn>dselect</prgn> e depois escolher o método APT. Ser-lhe-à perguntado " -"por um conjunto de <em>Sources</em> que são os lugares de onde obter os " -"arquivos. Estes podem ser sites remotos da Internet, mirrors Debian locais " -"ou CD-ROMs. Cada source pode disponibilizar um fragmento do arquivo Debian " -"total. O APT irá automaticamente combiná-los para formar um conjunto " -"completo de pacotes. Se tem um CD-ROM, então é boa ideia especificá-lo em " -"primeiro lugar e depois especificar um mirror para ter acesso às correcções " -"de bugs mais recentes. O APT irá automaticamente usar os pacotes no seu CD-" -"ROM antes de descarregar da Internet." - -#. type: <example></example> -#: guide.sgml:198 +"<command>dselect</command> e depois escolher o método APT. Ser-lhe-à " +"perguntado por um conjunto de <emphasis>Sources</emphasis> que são os " +"lugares de onde obter os arquivos. Estes podem ser sites remotos da " +"Internet, mirrors Debian locais ou CD-ROMs. Cada source pode disponibilizar " +"um fragmento do arquivo Debian total. O APT irá automaticamente combiná-los " +"para formar um conjunto completo de pacotes. Se tem um CD-ROM, então é boa " +"ideia especificá-lo em primeiro lugar e depois especificar um mirror para " +"ter acesso às correcções de bugs mais recentes. O APT irá automaticamente " +"usar os pacotes no seu CD-ROM antes de descarregar da Internet." + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:218 #, no-wrap msgid "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" msgstr "" " Configurar uma lista de localizações fonte da distribuição\n" -"\t \n" +"\n" " Por favor forneça o URL base da distribuição Debian.\n" " Os esquemas de acesso que conheço são: http file\n" -"\t \n" +"\n" " Por exemplo:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" -#. type: <p></p> -#: guide.sgml:205 +#. type: Content of: <book><chapter><para> +#: guide.dbk:232 msgid "" -"The <em>Sources</em> setup starts by asking for the base of the Debian " -"archive, defaulting to a HTTP mirror. Next it asks for the distribution to " -"get." +"The <emphasis>Sources</emphasis> 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 "" -"A configuração de <em>Sources</em> começa por perguntar pela base do arquivo " -"Debian, usando por predefinição um mirror HTTP. Depois pergunta qual a " -"distribuição a obter." +"A configuração de <emphasis>Sources</emphasis> começa por perguntar pela " +"base do arquivo Debian, usando por predefinição um mirror HTTP. Depois " +"pergunta qual a distribuição a obter." -#. type: <example></example> -#: guide.sgml:212 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:237 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" +"\n" +" Distribution [stable]:\n" msgstr "" " Por favor forneça a etiqueta da distribuição a obter ou um caminho para o\n" " ficheiro package terminando com um /. As etiquetas da\n" " distribuição são tipicamente algo como: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" - -#. type: <p></p> -#: guide.sgml:222 -msgid "" -"The distribution refers to the Debian version in the archive, <em>stable</" -"em> refers to the latest released version and <em>unstable</em> refers to " -"the developmental version. <em>non-US</em> is only available on some mirrors " -"and refers to packages that contain encryption technology or other things " -"that cannot be exported from the United States. Importing these packages " -"into the US is legal however." -msgstr "" -"A distribuição refere-se à versão Debian no arquivo, <em>stable</em> refere-" -"se à última versão lançada e <em>unstable</em> refere-se à versão de " -"desenvolvimento. <em>non-US</em> apenas está disponível em alguns mirrors e " -"refere-se a pacotes que contém tecnologia de encriptação ou outras coisas " -"que não podem ser exportadas dos Estados Unidos. No entanto importar estes " -"pacotes para os US é legal." - -#. type: <example></example> -#: guide.sgml:228 +"\n" +" Distribution [stable]:\n" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:244 +msgid "" +"The distribution refers to the Debian version in the archive, " +"<emphasis>stable</emphasis> refers to the latest released version and " +"<emphasis>unstable</emphasis> refers to the developmental version. " +"<emphasis>non-US</emphasis> is only available on some mirrors and refers to " +"packages that contain encryption technology or other things that cannot be " +"exported from the United States. Importing these packages into the US is " +"legal however." +msgstr "" +"A distribuição refere-se à versão Debian no arquivo, <emphasis>stable</" +"emphasis> refere-se à última versão lançada e <emphasis>unstable</emphasis> " +"refere-se à versão de desenvolvimento. <emphasis>non-US</emphasis> apenas " +"está disponível em alguns mirrors e refere-se a pacotes que contém " +"tecnologia de encriptação ou outras coisas que não podem ser exportadas dos " +"Estados Unidos. No entanto importar estes pacotes para os US é legal." + +#. type: Content of: <book><chapter><screen> +#: guide.dbk:253 #, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" msgstr "" " Por favor forneça os componentes a obter\n" " Tipicamente os componentes são algo como: main contrib non-free\n" -" \n" -" Componentes [main contrib non-free]:" +"\n" +" Componentes [main contrib non-free]:\n" -#. type: <p></p> -#: guide.sgml:236 +#. type: Content of: <book><chapter><para> +#: guide.dbk:259 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 " @@ -8964,8 +8997,8 @@ msgstr "" "pacotes livres DFSG enquanto contrib e non-free contêm coisas que têm várias " "restrições colocadas no seu uso e distribuição." -#. type: <p></p> -#: guide.sgml:240 +#. type: Content of: <book><chapter><para> +#: guide.dbk:265 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -8973,23 +9006,23 @@ msgstr "" "Pode ser adicionado qualquer número de fontes, o script de configuração irá " "continuar a perguntar-lhe até que tenha especificado todas as que deseja." -#. type: <p></p> -#: guide.sgml:247 +#. type: Content of: <book><chapter><para> +#: guide.dbk:269 msgid "" -"Before starting to use <prgn>dselect</prgn> it is necessary to update the " -"available list by selecting [U]pdate from the menu. This is a superset of " -"<tt>apt-get update</tt> that makes the fetched information available to " -"<prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get update</" -"tt> has been run before." +"Before starting to use <command>dselect</command> it is necessary to update " +"the available list by selecting [U]pdate from the menu. This is a superset " +"of <literal>apt-get update</literal> that makes the fetched information " +"available to <command>dselect</command>. [U]pdate must be performed even if " +"<literal>apt-get update</literal> has been run before." msgstr "" -"Antes de começar a usar o <prgn>dselect</prgn> é necessário actualizar a " -"lista disponível ao seleccionar [U]pdate no menu. Isto é um super-conjunto " -"do <tt>apt-get update</tt> que torna a informação obtida disponível ao " -"<prgn>dselect</prgn>. Deve ser executado o [U]pdate mesmo que tenha sido " -"feito <tt>apt-get update</tt> antes." +"Antes de começar a usar o <command>dselect</command> é necessário actualizar " +"a lista disponível ao seleccionar [U]pdate no menu. Isto é um super-conjunto " +"do <literal>apt-get update</literal> que torna a informação obtida " +"disponível ao <command>dselect</command>. Deve ser executado o [U]pdate " +"mesmo que tenha sido feito <literal>apt-get update</literal> antes." -#. type: <p></p> -#: guide.sgml:253 +#. type: Content of: <book><chapter><para> +#: guide.dbk:276 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 " @@ -9000,76 +9033,83 @@ msgstr "" "instalação usando [I]nstall. Quando se usa o método APT os comandos [C]onfig " "e [R]emove não fazem sentido, o comando [I]nstall executa ambos juntamente." -#. type: <p></p> -#: guide.sgml:258 +#. type: Content of: <book><chapter><para> +#: guide.dbk:282 msgid "" "By default APT will automatically remove the package (.deb) files once they " -"have been successfully installed. To change this behavior place <tt>Dselect::" -"clean \"prompt\";</tt> in /etc/apt/apt.conf." +"have been successfully installed. To change this behavior place " +"<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" "Por predefinição o APT irá automaticamente remover o ficheiro de pacote (." "deb) assim que ele tenha sido instalado com sucesso. Para alterar este " -"comportamento coloque <tt>Dselect::clean \"prompt\";</tt> em /etc/apt/apt." -"conf." +"comportamento coloque <literal>Dselect::clean \"prompt\";</literal> em /etc/" +"apt/apt.conf." -#. type: <heading></heading> -#: guide.sgml:264 +#. type: Content of: <book><chapter><title> +#: guide.dbk:288 msgid "The Interface" msgstr "A Interface" -#. type: <p></p> -#: guide.sgml:278 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:292 msgid "" -"Both that APT <prgn>dselect</prgn> method and <prgn>apt-get</prgn> share the " -"same interface. It is a simple system that generally tells you what it will " -"do and then goes and does it. <footnote><p>The <prgn>dselect</prgn> method " -"actually is a set of wrapper scripts to <prgn>apt-get</prgn>. The method " -"actually provides more functionality than is present in <prgn>apt-get</prgn> " -"alone.</p></footnote> After printing out a summary of what will happen APT " +"The <command>dselect</command> method actually is a set of wrapper scripts " +"to <command>apt-get</command>. The method actually provides more " +"functionality than is present in <command>apt-get</command> alone." +msgstr "" +"O método <command>dselect</command> na verdade é um conjunto de scripts " +"wrapper para o <command>apt-get</command>. O método disponibiliza mais " +"funcionalidades que aquelas presentes no <command>apt-get</command> sozinho." + +#. type: Content of: <book><chapter><para> +#: guide.dbk:290 +msgid "" +"Both that APT <command>dselect</command> method and <command>apt-get</" +"command> share the same interface. It is a simple system that generally " +"tells you what it will do and then goes and does it. <placeholder type=" +"\"footnote\" id=\"0\"/> After printing out a summary of what will happen APT " "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 "" -"Ambos método <prgn>dselect</prgn> do APT e <prgn>apt-get</prgn> partilham a " -"mesma interface. É um sistema simples que geralmente lhe diz o que vai fazer " -"e depois fá-lo. <footnote><p> O método <prgn>dselect</prgn> na verdade é um " -"conjunto de scripts wrapper para o <prgn>apt-get</prgn>. O método " -"disponibiliza mais funcionalidades que aquelas presentes no <prgn>apt-get</" -"prgn> sozinho.</p></footnote> Após escrever um sumário do que vai acontecer, " -"o APT depois irá escrever algumas mensagens de estado informativo para que " -"você possa estimar o progresso e quanto falta fazer." - -#. type: <heading></heading> -#: guide.sgml:280 +"Ambos método <command>dselect</command> do APT e <command>apt-get</command> " +"partilham a mesma interface. É um sistema simples que geralmente lhe diz o " +"que vai fazer e depois fá-lo. <placeholder type=\"footnote\" id=\"0\"/> Após " +"escrever um sumário do que vai acontecer, o APT depois irá escrever algumas " +"mensagens de estado informativo para que você possa estimar o progresso e " +"quanto falta fazer." + +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:301 msgid "Startup" msgstr "Arranque" -#. type: <p></p> -#: guide.sgml:284 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:303 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 <tt>apt-get check</" -"tt>." +"At any time these operations can be performed by running <literal>apt-get " +"check</literal>." msgstr "" "Antes de todas as operações, excepto a update, o APT executa um número de " "acções para preparar o seu estado interno. Também faz algumas verificações " "do estado do sistema. A qualquer altura estas operações pode ser executadas " -"correndo <tt>apt-get check</tt>." +"correndo <literal>apt-get check</literal>." -#. type: <example></example> -#: guide.sgml:289 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:309 #, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" msgstr "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" -#. type: <p></p> -#: guide.sgml:297 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:314 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. " @@ -9082,21 +9122,21 @@ msgstr "" "encontrados serão ignorados e será mostrado um aviso quando o apt-get " "terminar." -#. type: <p></p> -#: guide.sgml:303 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:320 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " "package and considers if it is OK. Should this find a problem then a report " -"will be printed out and <prgn>apt-get</prgn> will refuse to run." +"will be printed out and <command>apt-get</command> will refuse to run." msgstr "" "A operação final executa uma análise detalhada das dependências do sistema. " "Verifica cada dependência de cada pacote instalado ou desempacotado e " "considera se está OK. Caso isto encontre um problema, então é escrito um " -"relatório e o <prgn>apt-get</prgn> recusa-se a funcionar." +"relatório e o <command>apt-get</command> recusa-se a funcionar." -#. type: <example></example> -#: guide.sgml:320 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:326 #, no-wrap msgid "" "# apt-get check\n" @@ -9106,14 +9146,14 @@ msgid "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" msgstr "" "# apt-get check\n" "Reading Package Lists... Done\n" @@ -9122,17 +9162,17 @@ msgstr "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" -#. type: <p></p> -#: guide.sgml:329 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:343 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 " @@ -9146,84 +9186,95 @@ msgstr "" "não estão satisfeitas. É também incluída uma explicação curta de porquê o " "pacote tem um problema de dependência." -#. type: <p></p> -#: guide.sgml:337 +#. type: Content of: <book><chapter><section><para><footnote><para> +#: guide.dbk:352 +msgid "" +"APT however considers all known dependencies and attempts to prevent broken " +"packages" +msgstr "" +"No entanto o APT considera todas as dependências conhecidas e tenta prevenir " +"pacotes quebrados" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:350 msgid "" "There are two ways a system can get into a broken state like this. The first " -"is caused by <prgn>dpkg</prgn> missing some subtle relationships between " -"packages when performing upgrades. <footnote><p>APT however considers all " -"known dependencies and attempts to prevent broken packages</p></footnote>. " -"The second is if a package installation fails during an operation. In this " -"situation a package may have been unpacked without its dependents being " -"installed." +"is caused by <command>dpkg</command> missing some subtle relationships " +"between packages when performing upgrades. <placeholder type=\"footnote\" id=" +"\"0\"/>. The second is if a package installation fails during an operation. " +"In this situation a package may have been unpacked without its dependents " +"being installed." msgstr "" "Existem duas maneiras de um sistema entrar num estado de quebra como este. A " -"primeira é causada pelo <prgn>dpkg</prgn> que não vê algumas relações subtis " -"entre pacotes quando executa actualizações. <footnote><p>No entanto o APT " -"considera todas as dependências conhecidas e tenta prevenir pacotes " -"quebrados</p></footnote>. A segunda é se uma instalação de pacote falha " +"primeira é causada pelo <command>dpkg</command> que não vê algumas relações " +"subtis entre pacotes quando executa actualizações. <placeholder type=" +"\"footnote\" id=\"0\"/>. A segunda é se uma instalação de pacote falha " "durante uma operação. Nesta situação um pacote pode ter sido desempacotado " "sem que as suas dependências tenham sido instaladas." -#. type: <p></p> -#: guide.sgml:345 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:359 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 " -"supplying the <tt>-f</tt> option to <prgn>apt-get</prgn> will cause APT to " -"deduce a possible solution to the problem and then continue on. The APT " -"<prgn>dselect</prgn> method always supplies the <tt>-f</tt> option to allow " -"for easy continuation of failed maintainer scripts." +"supplying the <literal>-f</literal> option to <command>apt-get</command> " +"will cause APT to deduce a possible solution to the problem and then " +"continue on. The APT <command>dselect</command> method always supplies the " +"<literal>-f</literal> option to allow for easy continuation of failed " +"maintainer scripts." msgstr "" "A segunda situação é muito menos séria que a primeira porque o APT coloca " "certos constrangimentos na ordem que os pacotes são instalados. Em ambos os " -"casos, fornecer a opção <tt>-f</tt> ao <prgn>apt-get</prgn> irá fazer com " -"que o APT deduza uma solução possível para o problema e depois continue. O " -"método <prgn>dselect</prgn> do APT fornece sempre a opção <tt>-f</tt> para " -"permitir uma continuação fácil de scripts do responsável com falhas." - -#. type: <p></p> -#: guide.sgml:351 -msgid "" -"However, if the <tt>-f</tt> option is used to correct a seriously broken " -"system caused by the first case then it is possible that it will either fail " -"immediately or the installation sequence will fail. In either case it is " -"necessary to manually use dpkg (possibly with forcing options) to correct " -"the situation enough to allow APT to proceed." -msgstr "" -"No entanto, se for usada a opção <tt>-f</tt> para corrigir um sistema " -"seriamente quebrado causado pelo primeiro caso, então é possível que ou " -"falhe imediatamente ou falhe na sequência de instalação. Em qualquer dos " +"casos, fornecer a opção <literal>-f</literal> ao <command>apt-get</command> " +"irá fazer com que o APT deduza uma solução possível para o problema e depois " +"continue. O método <command>dselect</command> do APT fornece sempre a opção " +"<literal>-f</literal> para permitir uma continuação fácil de scripts do " +"responsável com falhas." + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:368 +msgid "" +"However, if the <literal>-f</literal> option is used to correct a seriously " +"broken system caused by the first case then it is possible that it will " +"either fail immediately or the installation sequence will fail. In either " +"case it is necessary to manually use dpkg (possibly with forcing options) to " +"correct the situation enough to allow APT to proceed." +msgstr "" +"No entanto, se for usada a opção <literal>-f</literal> para corrigir um " +"sistema seriamente quebrado causado pelo primeiro caso, então é possível que " +"ou falhe imediatamente ou falhe na sequência de instalação. Em qualquer dos " "casos é necessário usar o dpkg manualmente (possivelmente com opções de " "forçar) para corrigir a situação o suficiente para permitir ao APT continuar." -#. type: <heading></heading> -#: guide.sgml:356 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:376 msgid "The Status Report" msgstr "O Relatório de Estado" -#. type: <p></p> -#: guide.sgml:363 -msgid "" -"Before proceeding <prgn>apt-get</prgn> will present a report on what will " -"happen. Generally the report reflects the type of operation being performed " -"but there are several common elements. In all cases the lists reflect the " -"final state of things, taking into account the <tt>-f</tt> option and any " -"other relevant activities to the command being executed." -msgstr "" -"Antes de prosseguir, o <prgn>apt-get</prgn> irá apresentar um relatório do " -"que irá acontecer. Geralmente o relatório reflecte o tipo de operações a ser " -"executadas mas há vários elementos comuns. Em todos os casos a lista " -"reflecte o estado final das coisas, tendo em conta a opção <tt>-f</tt> e " -"quaisquer outras actividades relevantes ao comando que vai ser executado." - -#. type: <heading></heading> -#: guide.sgml:364 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:378 +msgid "" +"Before proceeding <command>apt-get</command> will present a report on what " +"will happen. Generally the report reflects the type of operation being " +"performed but there are several common elements. In all cases the lists " +"reflect the final state of things, taking into account the <literal>-f</" +"literal> option and any other relevant activities to the command being " +"executed." +msgstr "" +"Antes de prosseguir, o <command>apt-get</command> irá apresentar um " +"relatório do que irá acontecer. Geralmente o relatório reflecte o tipo de " +"operações a ser executadas mas há vários elementos comuns. Em todos os casos " +"a lista reflecte o estado final das coisas, tendo em conta a opção <literal>-" +"f</literal> e quaisquer outras actividades relevantes ao comando que vai ser " +"executado." + +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:385 msgid "The Extra Package list" msgstr "A lista de Pacotes Extra" -#. type: <example></example> -#: guide.sgml:372 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:387 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9231,85 +9282,85 @@ msgid "" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" msgstr "" "Os seguinte pacotes extra serão instalados:\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" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" -#. type: <p></p> -#: guide.sgml:379 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:395 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 <tt>install</tt> command. The listed packages are often the " -"result of an Auto Install." +"generated for an <literal>install</literal> command. The listed packages are " +"often the result of an Auto Install." msgstr "" "A lista de Pacotes Extra mostra todos os pacotes que irão ser instalados ou " "actualizados em excesso daqueles mencionados na linha de comandos. É apenas " -"gerada para um comando <tt>install</tt>. Os pacotes listados são geralmente " -"o resultado de uma Auto instalação." +"gerada para um comando <literal>install</literal>. Os pacotes listados são " +"geralmente o resultado de uma Auto instalação." -#. type: <heading></heading> -#: guide.sgml:382 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:402 msgid "The Packages to Remove" msgstr "Os Pacotes para Remover" -#. type: <example></example> -#: guide.sgml:389 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:404 #, no-wrap msgid "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" msgstr "" "Os seguintes pacotes irão ser REMOVIDOS:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" -#. type: <p></p> -#: guide.sgml:399 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:411 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 " "given a careful inspection to ensure nothing important is to be taken off. " -"The <tt>-f</tt> option is especially good at generating packages to remove " -"so extreme care should be used in that case. The list may contain packages " -"that are going to be removed because they are only partially installed, " -"possibly due to an aborted installation." +"The <literal>-f</literal> option is especially good at generating packages " +"to remove so extreme care should be used in that case. The list may contain " +"packages that are going to be removed because they are only partially " +"installed, possibly due to an aborted installation." msgstr "" "A lista Pacotes para Remover mostra todos os pacotes que irão ser removidos " "do sistema. Pode ser mostrada para qualquer das operações e deve ser-lhe " "dada uma inspecção cuidadosa para assegurar que nada de importante vai ser " -"removido. A opção <tt>-f</tt> é especialmente boa a gerar pacotes para " -"remover, portanto neste caso deve-se usar cuidados extremos. A lista pode " -"conter pacotes que vão ser removidos porque estão apenas parcialmente " +"removido. A opção <literal>-f</literal> é especialmente boa a gerar pacotes " +"para remover, portanto neste caso deve-se usar cuidados extremos. A lista " +"pode conter pacotes que vão ser removidos porque estão apenas parcialmente " "instalados, possivelmente devido a uma instalação abortada." -#. type: <heading></heading> -#: guide.sgml:402 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:421 msgid "The New Packages list" msgstr "A lista de Novos Pacotes" -#. type: <example></example> -#: guide.sgml:406 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:423 #, no-wrap msgid "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" msgstr "" "Os seguintes pacotes NOVOS irão ser instalados:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" -#. type: <p></p> -#: guide.sgml:411 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:427 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 " @@ -9319,57 +9370,57 @@ msgstr "" "pacotes listados não estão instalados presentemente no sistema mas irão " "estar quando o APT terminar." -#. type: <heading></heading> -#: guide.sgml:414 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:432 msgid "The Kept Back list" msgstr "A lista Kept Back" -#. type: <example></example> -#: guide.sgml:419 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:434 #, 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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" msgstr "" "Os seguintes pacotes formam mantidos na versão antiga\n" " compface man-db tetex-base msql libpaper svgalib1\n" -" gs snmp arena lynx xpat2 groff xscreensaver" +" gs snmp arena lynx xpat2 groff xscreensaver\n" -#. type: <p></p> -#: guide.sgml:428 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:439 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 " "or conflict with already installed things. In this case the package will " "appear in the Kept Back list. The best way to convince packages listed there " -"to install is with <tt>apt-get install</tt> or by using <prgn>dselect</prgn> " -"to resolve their problems." +"to install is with <literal>apt-get install</literal> or by using " +"<command>dselect</command> to resolve their problems." msgstr "" "Sempre que todo o sistema é actualizado existe a possibilidade que novas " "versões de pacotes não possam ser instaladas porque requerem coisas novas ou " "entram em conflito com coisas já instaladas. Nestes casos o pacote irá " "aparecer na lista Kept Back. A melhor maneira de convencer os pacotes " -"listados aqui a instalarem é com o <tt>apt-get install</tt> ou usando o " -"<prgn>dselect</prgn> para resolver os seus problemas." +"listados aqui a instalarem é com o <literal>apt-get install</literal> ou " +"usando o <command>dselect</command> para resolver os seus problemas." -#. type: <heading></heading> -#: guide.sgml:431 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:448 msgid "Held Packages warning" msgstr "Aviso de Pacotes Mantidos" -#. type: <example></example> -#: guide.sgml:435 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:450 #, no-wrap msgid "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" msgstr "" "Os seguintes pacotes mantidos irão ser alterados:\n" -" cvs" +" cvs\n" -#. type: <p></p> -#: guide.sgml:441 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:454 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. " @@ -9379,33 +9430,33 @@ msgstr "" "nestes casos ele mostra um aviso que o pacote retido vai ser alterado. Isto " "apenas deve acontecer durante um dist-upgrade ou install." -#. type: <heading></heading> -#: guide.sgml:444 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:460 msgid "Final summary" msgstr "Sumário final" -#. type: <p></p> -#: guide.sgml:447 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:462 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "Finalmente, o APT irá escrever um sumário de todas as alterações que irão " "acontecer." -#. type: <example></example> -#: guide.sgml:452 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:465 #, 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" "206 pacotes actualizados, 8 instalados de novo, 23 para remover e 51 não actualizados.\n" "12 pacotes não totalmente instalados ou removidos.\n" -"É necessário obter 65.7M/66.7M de arquivos. Após desempacotamento será usado 26.5M." +"É necessário obter 65.7M/66.7M de arquivos. Após desempacotamento será usado 26.5M.\n" -#. type: <p></p> -#: guide.sgml:470 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:470 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 " @@ -9435,8 +9486,8 @@ msgstr "" "estar feito. Se forem removidos um grande número de pacotes então o valor " "pode indicar a quantidade de espaço que irá ser libertado." -#. type: <p></p> -#: guide.sgml:473 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:484 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9444,13 +9495,13 @@ msgstr "" "Outros relatórios podem ser gerados ao usar a opção -u para mostrar os " "pacotes a actualizar, e são semelhantes aos exemplos prévios." -#. type: <heading></heading> -#: guide.sgml:477 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:491 msgid "The Status Display" msgstr "O Mostrador de Estado" -#. type: <p></p> -#: guide.sgml:481 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:493 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9458,8 +9509,8 @@ msgstr "" "Durante a descarga dos arquivos e ficheiros de pacotes, o APT escreve uma " "série de mensagens de estado." -#. type: <example></example> -#: guide.sgml:490 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:497 #, no-wrap msgid "" "# apt-get update\n" @@ -9468,7 +9519,7 @@ msgid "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" msgstr "" "# apt-get update\n" "Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" @@ -9476,68 +9527,70 @@ msgstr "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" -#. type: <p></p> -#: guide.sgml:500 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:506 msgid "" -"The lines starting with <em>Get</em> are printed out when APT begins to " -"fetch a file while the last line indicates the progress of the download. The " -"first percent value on the progress line indicates the total percent done of " -"all files. Unfortunately since the size of the Package files is unknown " -"<tt>apt-get update</tt> estimates the percent done which causes some " -"inaccuracies." +"The lines starting with <emphasis>Get</emphasis> are printed out when APT " +"begins to fetch a file while the last line indicates the progress of the " +"download. The first percent value on the progress line indicates the total " +"percent done of all files. Unfortunately since the size of the Package files " +"is unknown <literal>apt-get update</literal> estimates the percent done " +"which causes some inaccuracies." msgstr "" -"A linhas iniciadas com <em>Get</em> são escritas quando o APT começa a obter " -"um ficheiro enquanto a última linha indica o progresso da descarga. O " -"primeiro valor percentual na linha de progresso indica a percentagem total " -"completa de todos os ficheiros. Infelizmente como o tamanho dos ficheiros de " -"Pacotes é desconhecido o <tt>apt-get update</tt> estima a percentagem de " -"pronto o que causa algumas imprecisões." +"A linhas iniciadas com <emphasis>Get</emphasis> são escritas quando o APT " +"começa a obter um ficheiro enquanto a última linha indica o progresso da " +"descarga. O primeiro valor percentual na linha de progresso indica a " +"percentagem total completa de todos os ficheiros. Infelizmente como o " +"tamanho dos ficheiros de Pacotes é desconhecido o <literal>apt-get update</" +"literal> estima a percentagem de pronto o que causa algumas imprecisões." -#. type: <p></p> -#: guide.sgml:509 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:514 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " "information about what is happening. Sometimes this section will simply read " -"<em>Forking</em> which means the OS is loading the download module. The " -"first word after the [ is the fetch number as shown on the history lines. " -"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." +"<emphasis>Forking</emphasis> which means the OS is loading the download " +"module. The first word after the [ is the fetch number as shown on the " +"history lines. 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 "" "A secção seguinte da linha de estado é repetida para cada processo de " "descarga e indica a operação a ser executada e alguma informação útil acerca " "do que está a acontecer. Por vezes esta secção irá simplesmente ler " -"<em>Forking</em> o que representa que o SO está a carregar o módulo de " -"download. A primeira palavra após o [ é o número de obtenção como mostrado " -"nas linhas de histórico. A palavra seguinte é o nome em formato curto do " -"objecto a ser descarregado. Para os arquivos irá conter o nome do pacote que " -"está a ser descarregado." +"<emphasis>Forking</emphasis> o que representa que o SO está a carregar o " +"módulo de download. A primeira palavra após o [ é o número de obtenção como " +"mostrado nas linhas de histórico. A palavra seguinte é o nome em formato " +"curto do objecto a ser descarregado. Para os arquivos irá conter o nome do " +"pacote que está a ser descarregado." -#. type: <p></p> -#: guide.sgml:524 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:524 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " -"<em>Connecting</em> to <em>Waiting for file</em> to <em>Downloading</em> or " -"<em>Resuming</em>. The final value is the number of bytes downloaded from " -"the remote site. Once the download begins this is represented as " -"<tt>102/10.2k</tt> indicating that 102 bytes have been fetched and 10.2 " -"kilobytes is expected. The total size is always shown in 4 figure notation " -"to preserve space. After the size display is a percent meter for the file " -"itself. The second last element is the instantaneous average speed. This " -"values is updated every 5 seconds and reflects the rate of data transfer for " -"that period. Finally is shown the estimated transfer time. This is updated " -"regularly and reflects the time to complete everything at the shown transfer " -"rate." +"<emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to " +"<emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final " +"value is the number of bytes downloaded from the remote site. Once the " +"download begins this is represented as <literal>102/10.2k</literal> " +"indicating that 102 bytes have been fetched and 10.2 kilobytes is expected. " +"The total size is always shown in 4 figure notation to preserve space. After " +"the size display is a percent meter for the file itself. The second last " +"element is the instantaneous average speed. This values is updated every 5 " +"seconds and reflects the rate of data transfer for that period. Finally is " +"shown the estimated transfer time. This is updated regularly and reflects " +"the time to complete everything at the shown transfer rate." msgstr "" "Dentro da única citação está uma string de informação que indica o progresso " -"da fase de negociação do download. Progride tipicamente de <em>A Ligar</em> " -"para <em>À espera do ficheiro</em> para <em>A descarregar</em> ou <em>A " -"resumir</em>. O valor final é o número de bytes descarregados a partir do " -"site remoto. Uma vez começado a descarga isto é representado como " -"<tt>102/10.2k</tt> indicando que 102 bytes foram obtidos e são esperados " +"da fase de negociação do download. Progride tipicamente de <emphasis>A " +"Ligar</emphasis> para <emphasis>À espera do ficheiro</emphasis> para " +"<emphasis>A descarregar</emphasis> ou <emphasis>A resumir</emphasis>. O " +"valor final é o número de bytes descarregados a partir do site remoto. Uma " +"vez começado a descarga isto é representado como <literal>102/10.2k</" +"literal> indicando que 102 bytes foram obtidos e são esperados " "10.2kilobytes. O tamanho total é sempre representado numa anotação de 4 " "figuras para preservar espaço. Após a amostragem do tamanho está um medidor " "de percentagem para o próprio ficheiro. O segundo último elemento é a " @@ -9547,56 +9600,52 @@ msgstr "" "regularmente e reflecte o tempo para completar tudo ao ritmo de " "transferência mostrado." -#. type: <p></p> -#: guide.sgml:530 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:539 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 " "is started. Since the status display is constantly updated it is unsuitable " -"for logging to a file, use the <tt>-q</tt> option to remove the status " -"display." +"for logging to a file, use the <literal>-q</literal> option to remove the " +"status display." msgstr "" "O mostrador de estado actualiza-se a cada meio segundo para disponibilizar " "uma informação de retorno constante do progresso de descarga enquanto as " "linhas Get deslocam-se para trás sempre que uma nova linha é iniciada. Como " "o mostrador de estado é constantemente actualizado não é apropriado para " -"registar num ficheiro, use a opção <tt>-q</tt> para remover o mostrador de " -"estado." +"registar num ficheiro, use a opção <literal>-q</literal> para remover o " +"mostrador de estado." -#. type: <heading></heading> -#: guide.sgml:535 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:547 msgid "Dpkg" msgstr "Dpkg" -#. type: <p></p> -#: guide.sgml:542 -msgid "" -"APT uses <prgn>dpkg</prgn> for installing the archives and will switch over " -"to the <prgn>dpkg</prgn> interface once downloading is completed. " -"<prgn>dpkg</prgn> will also ask a number of questions as it processes the " -"packages and the packages themselves may also ask several questions. Before " -"each question there is usually a description of what it is asking and the " -"questions are too varied to discuss completely here." -msgstr "" -"O APT usa o <prgn>dpkg</prgn> para instalar os arquivos e irá mudar para a " -"interface do <prgn>dpkg</prgn> assim que a descarga estiver completa. O " -"<prgn>dpkg</prgn> irá também fazer um número de perguntas conforme vai " -"processando os pacotes e os próprios pacotes podem também fazer várias " -"questões. Antes de cada pergunta há geralmente uma descrição do que se está " -"a perguntar e as perguntas são demasiado variadas para serem discutidas aqui." - -#. type: <title> -#: offline.sgml:4 +#. type: Content of:
+#: guide.dbk:549 +msgid "" +"APT uses dpkg for installing the archives and will switch " +"over to the dpkg interface once downloading is completed. " +"dpkg will also ask a number of questions as it processes " +"the packages and the packages themselves may also ask several questions. " +"Before each question there is usually a description of what it is asking and " +"the questions are too varied to discuss completely here." +msgstr "" +"O APT usa o dpkg para instalar os arquivos e irá mudar " +"para a interface do dpkg assim que a descarga estiver " +"completa. O dpkg irá também fazer um número de perguntas " +"conforme vai processando os pacotes e os próprios pacotes podem também fazer " +"várias questões. Antes de cada pergunta há geralmente uma descrição do que " +"se está a perguntar e as perguntas são demasiado variadas para serem " +"discutidas aqui." + +#. type: Content of: +#: offline.dbk:10 msgid "Using APT Offline" msgstr "Usando o APT Offline" -#. type: <version></version> -#: offline.sgml:7 -msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" - -#. type: <abstract></abstract> -#: offline.sgml:12 +#. type: Content of: <book><bookinfo><abstract><para> +#: offline.dbk:24 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9604,23 +9653,25 @@ msgstr "" "Este documento descreve como usar o APT num ambiente sem rede, " "especificamente uma aproximação 'sneaker-net' para executar actualizações." -#. type: <copyrightsummary></copyrightsummary> -#: offline.sgml:16 -msgid "Copyright © Jason Gunthorpe, 1999." -msgstr "Copyright © Jason Gunthorpe, 1999." +#. type: Content of: <book><bookinfo> +#: offline.dbk:29 +msgid "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" +msgstr "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" -#. type: <heading></heading> -#: offline.sgml:32 +#. type: Content of: <book><chapter><title> +#: offline.dbk:47 msgid "Introduction" msgstr "Introdução" -#. type: <heading></heading> -#: offline.sgml:34 offline.sgml:65 offline.sgml:180 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:49 offline.dbk:79 offline.dbk:191 msgid "Overview" msgstr "Visão geral" -#. type: <p></p> -#: offline.sgml:40 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:51 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9632,8 +9683,8 @@ msgstr "" "numa ligação lenta, como um modem e outra máquina tem uma ligação muito " "rápida mas estão fisicamente distantes." -#. type: <p></p> -#: offline.sgml:51 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:57 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9641,9 +9692,9 @@ msgid "" "to use APT to generate a list of packages that are required and then fetch " "them onto the disc using another machine with good connectivity. It is even " "possible to use another Debian machine with APT or to use a completely " -"different OS and a download tool like wget. Let <em>remote host</em> mean " -"the machine downloading the packages, and <em>target host</em> the one with " -"bad or no connection." +"different OS and a download tool like wget. Let <emphasis>remote host</" +"emphasis> mean the machine downloading the packages, and <emphasis>target " +"host</emphasis> the one with bad or no connection." msgstr "" "A solução para isto é usar grandes médias amovíveis como um disco Zip ou um " "disco SuperDisk. Estes discos não são suficientemente grandes para armazenar " @@ -9652,12 +9703,12 @@ msgstr "" "para gerar uma lista de pacotes que são necessários e depois obter-los para " "o disco usando outra máquina com boa ligação. É até possível usar outra " "máquina Debian com APT ou usar um SO completamente diferente e uma " -"ferramenta de download como o wget. Deixe <em>remote host</em> representar a " -"máquina que descarrega os pacotes, e <em>target host</em> aquela com má ou " -"nenhuma ligação." +"ferramenta de download como o wget. Deixe <emphasis>remote host</emphasis> " +"representar a máquina que descarrega os pacotes, e <emphasis>target host</" +"emphasis> aquela com má ou nenhuma ligação." -#. type: <p></p> -#: offline.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:68 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9670,13 +9721,13 @@ msgstr "" "sistema de ficheiros que saiba lidar com nomes de ficheiros longos como o " "ext2, fat32 ou vfat." -#. type: <heading></heading> -#: offline.sgml:63 +#. type: Content of: <book><chapter><title> +#: offline.dbk:77 msgid "Using APT on both machines" msgstr "Usando o APT em ambas máquinas" -#. type: <p><example> -#: offline.sgml:71 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:81 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9689,8 +9740,8 @@ msgstr "" "quais pacotes descarregar. A estrutura de directórios do disco deverá " "parecer-se com:" -#. type: <example></example> -#: offline.sgml:80 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:87 #, no-wrap msgid "" " /disc/\n" @@ -9700,7 +9751,7 @@ msgid "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" msgstr "" " /disc/\n" " archives/\n" @@ -9709,41 +9760,43 @@ msgstr "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" -#. type: <heading></heading> -#: offline.sgml:88 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:98 msgid "The configuration file" msgstr "O ficheiro de configuração" -#. type: <p></p> -#: offline.sgml:96 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:100 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " "contain the proper sites that you wish to use from the remote machine, and " -"the status file should be a copy of <em>/var/lib/dpkg/status</em> from the " -"<em>target host</em>. Please note, if you are using a local archive you must " -"use copy URIs, the syntax is identical to file URIs." +"the status file should be a copy of <emphasis>/var/lib/dpkg/status</" +"emphasis> from the <emphasis>target host</emphasis>. Please note, if you are " +"using a local archive you must use copy URIs, the syntax is identical to " +"file URIs." msgstr "" "O ficheiro de configuração deve dizer ao APT para armazenar os seus ficheiro " "no disco e usar os ficheiros de configuração do disco também. O sources.list " "deve conter os sites apropriados que deseja usar a partir da máquina remota, " -"e o ficheiro de estado deve ser uma cópia de <em>/var/lib/dpkg/status</em> a " -"partir do <em>target host</em>. Por favor note, se está a usar um arquivo " -"local você deve usar copy URIs, a sintaxe é idêntica a file URIs." +"e o ficheiro de estado deve ser uma cópia de <emphasis>/var/lib/dpkg/status</" +"emphasis> a partir do <emphasis>target host</emphasis>. Por favor note, se " +"está a usar um arquivo local você deve usar copy URIs, a sintaxe é idêntica " +"a file URIs." -#. type: <p><example> -#: offline.sgml:100 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:108 msgid "" -"<em>apt.conf</em> must contain the necessary information to make APT use the " -"disc:" +"<emphasis>apt.conf</emphasis> must contain the necessary information to make " +"APT use the disc:" msgstr "" -"<em>apt.conf</em> tem de conter a informação necessária para fazer o APT " -"usar o disco:" +"<emphasis>apt.conf</emphasis> tem de conter a informação necessária para " +"fazer o APT usar o disco:" -#. type: <example></example> -#: offline.sgml:124 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:112 #, no-wrap msgid "" " APT\n" @@ -9751,10 +9804,10 @@ msgid "" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -9765,20 +9818,20 @@ msgid "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" msgstr "" " APT\n" " {\n" " /* Isto não é necessário se as duas máquinas forem da mesma arquitectura, diz\n" " ao APT remoto que arquitectura tem a máquina de destino */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Usa o disco para informação de estado e redirecciona o ficheiro de estado a partir de\n" @@ -9789,66 +9842,70 @@ msgstr "" " // Caches binárias serão armazenadas localmente\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Localização da lista de fontes.\n" " Etc \"/disc/\";\n" -" };" +" };\n" -#. type: </example></p> -#: offline.sgml:129 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:137 msgid "" "More details can be seen by examining the apt.conf man page and the sample " -"configuration file in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis>." msgstr "" "Mais detalhes podem ser vistos ao examinar o manual do apt.conf e o exemplo " -"de ficheiro de configuração em <em>/usr/share/doc/apt/examples/apt.conf</em>." +"de ficheiro de configuração em <emphasis>/usr/share/doc/apt/examples/apt." +"conf</emphasis>." -#. type: <p><example> -#: offline.sgml:136 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:142 msgid "" -"On the target machine the first thing to do is mount the disc and copy <em>/" -"var/lib/dpkg/status</em> to it. You will also need to create the directories " -"outlined in the Overview, <em>archives/partial/</em> and <em>lists/partial/</" -"em>. Then take the disc to the remote machine and configure the sources." -"list. On the remote machine execute the following:" +"On the target machine the first thing to do is mount the disc and copy " +"<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " +"create the directories outlined in the Overview, <emphasis>archives/partial/" +"</emphasis> and <emphasis>lists/partial/</emphasis>. Then take the disc to " +"the remote machine and configure the sources.list. On the remote machine " +"execute the following:" msgstr "" "Na máquina de destino a primeira coisa a fazer é montar o disco e copiar " -"<em>/var/lib/dpkg/status</em> para ele. Você também precisa de criar os " -"directórios delineados na Visão Geral, <em>archives/partial/</em> e " -"<em>lists/partial/</em>. Depois leve o disco até à máquina remota e " -"configure o sources.list. Na máquina remota execute o seguinte:" - -#. type: <example></example> -#: offline.sgml:142 +"<emphasis>/var/lib/dpkg/status</emphasis> para ele. Você também precisa de " +"criar os directórios delineados na Visão Geral, <emphasis>archives/partial/</" +"emphasis> e <emphasis>lists/partial/</emphasis>. Depois leve o disco até à " +"máquina remota e configure o sources.list. Na máquina remota execute o " +"seguinte:" + +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:151 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT fetches the package files ]\n" " # apt-get dist-upgrade\n" -" [ APT fetches all the packages needed to upgrade the target machine ]" +" [ APT fetches all the packages needed to upgrade the target machine ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT obtém os ficheiros de pacotes ]\n" " # apt-get dist-upgrade\n" -" [ APT obtém todos os pacotes necessários para actualizar a máquina de destino ]" +" [ APT obtém todos os pacotes necessários para actualizar a máquina de destino ]\n" -#. type: </example></p> -#: offline.sgml:149 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:158 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " -"such as <em>dselect</em>. However this presents a problem in communicating " -"your selections back to the local computer." +"such as <emphasis>dselect</emphasis>. However this presents a problem in " +"communicating your selections back to the local computer." msgstr "" "O comando dist-upgrade pode ser substituído por qualquer outro comando APT " "standard, particularmente dselect-upgrade. Você até pode usar um front-end " -"do APT como o <em>dselect</em>. No entanto isto apresenta um problema ao " -"comunicar as suas selecções de volta ao computador local." +"do APT como o <emphasis>dselect</emphasis>. No entanto isto apresenta um " +"problema ao comunicar as suas selecções de volta ao computador local." -#. type: <p><example> -#: offline.sgml:153 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:164 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9856,24 +9913,24 @@ msgstr "" "Agora o disco contém todos os ficheiros de índice e os arquivos necessários " "para actualizar a máquina de destino. Devolva o disco e corra:" -#. type: <example></example> -#: offline.sgml:159 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:168 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generates a local copy of the cache files ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Or any other APT command ]" +" [ Or any other APT command ]\n" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT gera uma cópia local dos ficheiros de cache ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Ou qualquer outro comando APT ]" +" [ Ou qualquer outro comando APT ]\n" -#. type: <p></p> -#: offline.sgml:165 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:175 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -9881,8 +9938,8 @@ msgstr "" "Para uma função apropriada é necessário re-especificar que o ficheiro de " "estado seja o ficheiro local. Isto é muito importante!" -#. type: <p></p> -#: offline.sgml:172 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:179 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -9897,24 +9954,25 @@ msgstr "" "possível. NÃO copie o ficheiro de estado se entretanto correu o dpkg ou o " "APT!!" -#. type: <heading></heading> -#: offline.sgml:178 +#. type: Content of: <book><chapter><title> +#: offline.dbk:189 msgid "Using APT and wget" msgstr "Usando APT e wget" -#. type: <p></p> -#: offline.sgml:185 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:193 msgid "" -"<em>wget</em> is a popular and portable download tool that can run on nearly " -"any machine. Unlike the method above this requires that the Debian machine " -"already has a list of available packages." +"<emphasis>wget</emphasis> is a popular and portable download tool that can " +"run on nearly any machine. Unlike the method above this requires that the " +"Debian machine already has a list of available packages." msgstr "" -"<em>wget</em> é uma ferramenta popular e portável de download que pode " -"correr praticamente em qualquer máquina. Ao contrário do método acima, este " -"requer que a máquina Debian já tenha uma lista de pacotes disponíveis." +"<emphasis>wget</emphasis> é uma ferramenta popular e portável de download " +"que pode correr praticamente em qualquer máquina. Ao contrário do método " +"acima, este requer que a máquina Debian já tenha uma lista de pacotes " +"disponíveis." -#. type: <p></p> -#: offline.sgml:190 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:198 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -9925,13 +9983,13 @@ msgstr "" "descarregados do site remoto. Isto é feito ao usar a opção --print-uris no " "apt-get e depois preparar um script wget para realmente ir buscar os pacotes." -#. type: <heading></heading> -#: offline.sgml:196 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:204 msgid "Operation" msgstr "Operação" -#. type: <p><example> -#: offline.sgml:200 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:206 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -9940,22 +9998,22 @@ msgstr "" "configuração especiais. Nós usamos meramente os comandos standard do APT " "para gerar a lista de ficheiros." -#. type: <example></example> -#: offline.sgml:205 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:210 #, no-wrap msgid "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" " # apt-get dist-upgrade \n" " [ Escolha não quando perguntado, certifique-se que está contente com as acções ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" -#. type: </example></p> -#: offline.sgml:210 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:216 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -9963,8 +10021,8 @@ msgstr "" "Qualquer comando além do dist-upgrade pode ser usado aqui, incluindo dselect-" "upgrade." -#. type: <p></p> -#: offline.sgml:216 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:220 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -9976,25 +10034,25 @@ msgstr "" "corrido com o directório actual sendo o ponto de montagem do disco para que " "grave os resultados no disco." -#. type: <p><example> -#: offline.sgml:219 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:226 msgid "The remote machine would do something like" msgstr "A máquina remota deverá fazer algo como" -#. type: <example></example> -#: offline.sgml:223 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:229 #, no-wrap msgid "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" msgstr "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" -#. type: </example><example> -#: offline.sgml:228 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:234 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10002,14 +10060,14 @@ msgstr "" "Após os arquivos serem descarregados e o disco retornado à máquina Debian, a " "instalação pode prosseguir usando," -#. type: <example></example> -#: offline.sgml:230 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:238 #, no-wrap -msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" +msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" +msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" -#. type: </example></p> -#: offline.sgml:234 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." msgstr "O qual irá usar os arquivos já obtidos e que estão no disco." diff --git a/doc/po/pt_BR.po b/doc/po/pt_BR.po index e9e785f08..fb0dde77e 100644 --- a/doc/po/pt_BR.po +++ b/doc/po/pt_BR.po @@ -5,16 +5,15 @@ # Translators: # André Luís Lopes <andrelop@ig.com.br> # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-05-05 16:26+0200\n" +"POT-Creation-Date: 2014-07-10 10:52+0200\n" "PO-Revision-Date: 2004-09-20 17:02+0000\n" "Last-Translator: André Luís Lopes <andrelop@debian.org>\n" "Language-Team: <debian-l10n-portuguese@lists.debian.org>\n" -"Language: \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -666,7 +665,7 @@ msgstr "a linha <literal>Archive:</literal>" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 #: apt-ftparchive.1.xml:609 #, fuzzy @@ -1284,7 +1283,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 +#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 msgid "Files" msgstr "" @@ -2159,7 +2158,7 @@ msgstr "" #: apt-secure.8.xml:195 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " -"&debsign; &debsig-verify;, &gpg;" +"&debsign;, &debsig-verify;, &gpg;" msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -3214,14 +3213,15 @@ msgid "" "information, such as the two package caches <literal>srcpkgcache</literal> " "and <literal>pkgcache</literal> as well as the location to place downloaded " "archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " -"be turned off by setting their names to the empty string. This will slow " +"be turned off by setting <literal>pkgcache</literal> or " +"<literal>srcpkgcache</literal> to <literal>\"\"</literal>. This will slow " "down startup but save disk space. It is probably preferable to turn off the " -"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " -"default directory is contained in <literal>Dir::Cache</literal>" +"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> " +"the default directory is contained in <literal>Dir::Cache</literal>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:617 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -3231,7 +3231,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:622 +#: apt.conf.5.xml:623 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -3239,7 +3239,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:627 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -3250,7 +3250,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:634 +#: apt.conf.5.xml:635 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -3263,7 +3263,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:648 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -3274,12 +3274,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:657 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:659 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -3287,7 +3287,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:664 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -3300,40 +3300,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:677 +#: apt.conf.5.xml:678 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:683 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:688 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:693 +#: apt.conf.5.xml:694 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:695 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:700 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -3341,7 +3341,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:705 +#: apt.conf.5.xml:706 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3350,7 +3350,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:712 +#: apt.conf.5.xml:713 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3361,7 +3361,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:719 +#: apt.conf.5.xml:720 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -3370,7 +3370,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:724 +#: apt.conf.5.xml:725 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -3381,7 +3381,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:731 +#: apt.conf.5.xml:732 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -3392,26 +3392,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:742 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:746 +#: apt.conf.5.xml:747 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:751 +#: apt.conf.5.xml:752 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:753 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -3426,7 +3426,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:767 +#: apt.conf.5.xml:768 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -3436,7 +3436,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:762 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -3450,7 +3450,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:774 +#: apt.conf.5.xml:775 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -3463,7 +3463,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:782 +#: apt.conf.5.xml:783 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -3480,7 +3480,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:798 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -3491,7 +3491,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:804 +#: apt.conf.5.xml:805 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -3501,7 +3501,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:818 #, no-wrap msgid "" "OrderList::Score {\n" @@ -3513,7 +3513,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:810 +#: apt.conf.5.xml:811 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -3527,12 +3527,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:831 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:832 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -3541,12 +3541,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:839 +#: apt.conf.5.xml:840 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:841 +#: apt.conf.5.xml:842 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -3557,7 +3557,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:852 +#: apt.conf.5.xml:853 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -3565,7 +3565,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:861 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -3573,7 +3573,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:870 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -3583,66 +3583,66 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:878 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:888 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:896 +#: apt.conf.5.xml:897 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:907 +#: apt.conf.5.xml:908 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:919 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:930 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:940 +#: apt.conf.5.xml:941 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:951 +#: apt.conf.5.xml:952 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:961 +#: apt.conf.5.xml:962 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:971 +#: apt.conf.5.xml:972 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:981 +#: apt.conf.5.xml:982 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -3650,53 +3650,53 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:992 +#: apt.conf.5.xml:993 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 "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1004 +#: apt.conf.5.xml:1005 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1014 +#: apt.conf.5.xml:1015 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1024 +#: apt.conf.5.xml:1025 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1036 +#: apt.conf.5.xml:1037 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1047 +#: apt.conf.5.xml:1048 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1058 +#: apt.conf.5.xml:1059 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1068 +#: apt.conf.5.xml:1069 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -3706,7 +3706,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1082 +#: apt.conf.5.xml:1083 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -3724,46 +3724,46 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1103 +#: apt.conf.5.xml:1104 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1114 +#: apt.conf.5.xml:1115 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1125 +#: apt.conf.5.xml:1126 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1137 +#: apt.conf.5.xml:1138 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1148 +#: apt.conf.5.xml:1149 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1158 +#: apt.conf.5.xml:1159 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1169 +#: apt.conf.5.xml:1170 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -3771,14 +3771,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1181 +#: apt.conf.5.xml:1182 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1191 +#: apt.conf.5.xml:1192 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -3786,14 +3786,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 #, fuzzy msgid "Examples" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1216 +#: apt.conf.5.xml:1217 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -3801,7 +3801,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1228 +#: apt.conf.5.xml:1229 #, fuzzy msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" @@ -6412,34 +6412,50 @@ msgid "" "100 on error." msgstr "" -#. type: <title> -#: guide.sgml:4 +#. type: Attribute 'lang' of: +#: guide.dbk:8 offline.dbk:8 +msgid "en" +msgstr "" + +#. type: Content of: +#: guide.dbk:10 msgid "APT User's Guide" msgstr "" -#. type: <author></author> -#: guide.sgml:6 offline.sgml:6 -msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#. type: Content of: <book><bookinfo><authorgroup><author><personname> +#: guide.dbk:16 offline.dbk:16 +msgid "Jason Gunthorpe" +msgstr "" + +#. type: Content of: <book><bookinfo><authorgroup><author><email> +#: guide.dbk:16 offline.dbk:16 +msgid "jgg@debian.org" msgstr "" -#. type: <version></version> -#: guide.sgml:7 -msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" +#. type: Content of: <book><bookinfo><releaseinfo> +#: guide.dbk:20 offline.dbk:20 +msgid "Version &apt-product-version;" msgstr "" -#. type: <abstract></abstract> -#: guide.sgml:11 +#. type: Content of: <book><bookinfo><abstract><para> +#: guide.dbk:24 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" -#. type: <copyrightsummary></copyrightsummary> -#: guide.sgml:15 -msgid "Copyright © Jason Gunthorpe, 1998." +#. type: Content of: <book><bookinfo> +#: guide.dbk:28 +msgid "" +"<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" -#. type: <p></p> -#: guide.sgml:21 offline.sgml:22 +#. type: Content of: <book><bookinfo><legalnotice><title> +#: guide.dbk:31 offline.dbk:32 +msgid "License Notice" +msgstr "" + +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:33 offline.dbk:34 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 " @@ -6447,42 +6463,42 @@ msgid "" "or (at your option) any later version." msgstr "" -#. type: <p></p> -#: guide.sgml:24 offline.sgml:25 +#. type: Content of: <book><bookinfo><legalnotice><para> +#: guide.dbk:42 offline.dbk:40 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." msgstr "" -#. type: <heading></heading> -#: guide.sgml:32 +#. type: Content of: <book><chapter><title> +#: guide.dbk:49 msgid "General" msgstr "" -#. type: <p></p> -#: guide.sgml:38 +#. type: Content of: <book><chapter><para> +#: guide.dbk:51 msgid "" -"The APT package currently contains two sections, the APT <prgn>dselect</" -"prgn> method and the <prgn>apt-get</prgn> command line user interface. Both " -"provide a way to install and remove packages as well as download new " -"packages from the Internet." +"The APT package currently contains two sections, the APT <command>dselect</" +"command> method and the <command>apt-get</command> command line user " +"interface. Both provide a way to install and remove packages as well as " +"download new packages from the Internet." msgstr "" -#. type: <heading></heading> -#: guide.sgml:39 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:57 msgid "Anatomy of the Package System" msgstr "" -#. type: <p></p> -#: guide.sgml:44 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:59 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 "" -#. type: <p></p> -#: guide.sgml:52 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:64 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -6491,8 +6507,8 @@ msgid "" "in mail transport agents, X servers and so on." msgstr "" -#. type: <p></p> -#: guide.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:71 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 " @@ -6500,8 +6516,8 @@ msgid "" "properly." msgstr "" -#. type: <p></p> -#: guide.sgml:63 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:76 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 " @@ -6509,8 +6525,8 @@ msgid "" "simple dependency on emacs, without emacs it is completely useless." msgstr "" -#. type: <p></p> -#: guide.sgml:73 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:82 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 " @@ -6522,8 +6538,8 @@ msgid "" "other mail transport agents." msgstr "" -#. type: <p></p> -#: guide.sgml:83 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:92 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 " @@ -6535,8 +6551,8 @@ msgid "" "trying to manually fix packages." msgstr "" -#. type: <p></p> -#: guide.sgml:88 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:102 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 " @@ -6544,71 +6560,77 @@ msgid "" "packages for installation." msgstr "" -#. type: <heading></heading> -#: guide.sgml:96 +#. type: Content of: <book><chapter><title> +#: guide.dbk:111 msgid "apt-get" msgstr "" -#. type: <p></p> -#: guide.sgml:102 +#. type: Content of: <book><chapter><para> +#: guide.dbk:113 +msgid "" +"<command>apt-get</command> provides a simple way to install packages from " +"the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " +"does not understand .deb files, it works with the package's proper name and " +"can only install .deb archives from a <emphasis>Source</emphasis>." +msgstr "" + +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:119 msgid "" -"<prgn>apt-get</prgn> provides a simple way to install packages from the " -"command line. Unlike <prgn>dpkg</prgn>, <prgn>apt-get</prgn> does not " -"understand .deb files, it works with the package's proper name and can only " -"install .deb archives from a <em>Source</em>." +"If you are using an http proxy server you must set the http_proxy " +"environment variable first, see sources.list(5)" msgstr "" -#. type: <p></p> -#: guide.sgml:109 +#. type: Content of: <book><chapter><para> +#: guide.dbk:119 msgid "" -"The first <footnote><p>If you are using an http proxy server you must set " -"the http_proxy environment variable first, see sources.list(5)</p></" -"footnote> thing that should be done before using <prgn>apt-get</prgn> is to " -"fetch the package lists from the <em>Sources</em> so that it knows what " -"packages are available. This is done with <tt>apt-get update</tt>. For " -"instance," +"The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " +"done before using <command>apt-get</command> is to fetch the package lists " +"from the <emphasis>Sources</emphasis> so that it knows what packages are " +"available. This is done with <literal>apt-get update</literal>. For instance," msgstr "" -#. type: <example></example> -#: guide.sgml:116 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:127 #, no-wrap msgid "" "# 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" +"Building Dependency Tree... Done\n" msgstr "" -#. type: <p><taglist> -#: guide.sgml:120 +#. type: Content of: <book><chapter><para> +#: guide.dbk:134 msgid "Once updated there are several commands that can be used:" msgstr "" -#. type: <tag></tag> -#: guide.sgml:121 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:138 msgid "upgrade" msgstr "" -#. type: <p></p> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:141 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 " "upgrade a package that might cause some other package to break. This can be " "used daily to relatively safely upgrade the system. Upgrade will list all of " "the packages that it could not upgrade, this usually means that they depend " -"on new packages or conflict with some other package. <prgn>dselect</prgn> or " -"<tt>apt-get install</tt> can be used to force these packages to install." +"on new packages or conflict with some other package. <command>dselect</" +"command> or <literal>apt-get install</literal> can be used to force these " +"packages to install." msgstr "" -#. type: <tag></tag> -#: guide.sgml:131 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:153 msgid "install" msgstr "" -#. type: <p></p> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:156 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 " @@ -6619,130 +6641,134 @@ msgid "" "anything other than its arguments are changed." msgstr "" -#. type: <tag></tag> -#: guide.sgml:140 +#. type: Content of: <book><chapter><variablelist><varlistentry><term> +#: guide.dbk:167 msgid "dist-upgrade" msgstr "" -#. type: <p></p> -#: guide.sgml:149 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:170 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " "set of packages to install, upgrade and remove to get as much of the system " "to the newest release. In some situations it may be desired to use dist-" "upgrade rather than spend the time manually resolving dependencies in " -"<prgn>dselect</prgn>. Once dist-upgrade has completed then <prgn>dselect</" -"prgn> can be used to install any packages that may have been left out." +"<command>dselect</command>. Once dist-upgrade has completed then " +"<command>dselect</command> can be used to install any packages that may have " +"been left out." msgstr "" -#. type: <p></p> -#: guide.sgml:152 +#. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: guide.dbk:180 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." msgstr "" -#. type: <p></p> -#: guide.sgml:163 +#. type: Content of: <book><chapter><para> +#: guide.dbk:187 msgid "" -"<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -"option is <tt>-d</tt> which does not install the fetched files. If the " -"system has to download a large number of package it would be undesired to " -"start installing them in case something goes wrong. When <tt>-d</tt> is used " -"the downloaded archives can be installed by simply running the command that " -"caused them to be downloaded again without <tt>-d</tt>." +"<command>apt-get</command> has several command line options that are " +"detailed in its man page, <citerefentry><refentrytitle>apt-get</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>. The most useful " +"option is <literal>-d</literal> which does not install the fetched files. If " +"the system has to download a large number of package it would be undesired " +"to start installing them in case something goes wrong. When <literal>-d</" +"literal> is used the downloaded archives can be installed by simply running " +"the command that caused them to be downloaded again without <literal>-d</" +"literal>." msgstr "" -#. type: <heading></heading> -#: guide.sgml:168 +#. type: Content of: <book><chapter><title> +#: guide.dbk:199 msgid "DSelect" msgstr "" -#. type: <p></p> -#: guide.sgml:173 +#. type: Content of: <book><chapter><para> +#: guide.dbk:201 msgid "" -"The APT <prgn>dselect</prgn> method provides the complete APT system with " -"the <prgn>dselect</prgn> package selection GUI. <prgn>dselect</prgn> is used " -"to select the packages to be installed or removed and APT actually installs " -"them." +"The APT <command>dselect</command> method provides the complete APT system " +"with the <command>dselect</command> package selection GUI. <command>dselect</" +"command> is used to select the packages to be installed or removed and APT " +"actually installs them." msgstr "" -#. type: <p></p> -#: guide.sgml:184 +#. type: Content of: <book><chapter><para> +#: guide.dbk:207 msgid "" -"To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " -"and then choose the APT method. You will be prompted for a set of " -"<em>Sources</em> which are places to fetch archives from. These can be " -"remote Internet sites, local Debian mirrors or CD-ROMs. Each source can " -"provide a fragment of the total Debian archive, APT will automatically " +"To enable the APT method you need to select [A]ccess in <command>dselect</" +"command> and then choose the APT method. You will be prompted for a set of " +"<emphasis>Sources</emphasis> which are places to fetch archives from. These " +"can be remote Internet sites, local Debian mirrors or CD-ROMs. 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 CD-ROM 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 CD-ROM before downloading from the Internet." msgstr "" -#. type: <example></example> -#: guide.sgml:198 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:218 #, no-wrap msgid "" " Set up a list of distribution source locations\n" -"\t \n" +"\n" " Please give the base URL of the debian distribution.\n" " The access schemes I know about are: http file\n" -"\t \n" +"\n" " For example:\n" " file:/mnt/debian,\n" " ftp://ftp.debian.org/debian,\n" " http://ftp.de.debian.org/debian,\n" -" \n" -" \n" -" URL [http://llug.sep.bnl.gov/debian]:" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" msgstr "" -#. type: <p></p> -#: guide.sgml:205 +#. type: Content of: <book><chapter><para> +#: guide.dbk:232 msgid "" -"The <em>Sources</em> setup starts by asking for the base of the Debian " -"archive, defaulting to a HTTP mirror. Next it asks for the distribution to " -"get." +"The <emphasis>Sources</emphasis> 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 "" -#. type: <example></example> -#: guide.sgml:212 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:237 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" " tags are typically something like: stable unstable testing non-US\n" -" \n" -" Distribution [stable]:" +"\n" +" Distribution [stable]:\n" msgstr "" -#. type: <p></p> -#: guide.sgml:222 +#. type: Content of: <book><chapter><para> +#: guide.dbk:244 msgid "" -"The distribution refers to the Debian version in the archive, <em>stable</" -"em> refers to the latest released version and <em>unstable</em> refers to " -"the developmental version. <em>non-US</em> is only available on some mirrors " -"and refers to packages that contain encryption technology or other things " -"that cannot be exported from the United States. Importing these packages " -"into the US is legal however." +"The distribution refers to the Debian version in the archive, " +"<emphasis>stable</emphasis> refers to the latest released version and " +"<emphasis>unstable</emphasis> refers to the developmental version. " +"<emphasis>non-US</emphasis> is only available on some mirrors and refers to " +"packages that contain encryption technology or other things that cannot be " +"exported from the United States. Importing these packages into the US is " +"legal however." msgstr "" -#. type: <example></example> -#: guide.sgml:228 +#. type: Content of: <book><chapter><screen> +#: guide.dbk:253 #, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" -" \n" -" Components [main contrib non-free]:" +"\n" +" Components [main contrib non-free]:\n" msgstr "" -#. type: <p></p> -#: guide.sgml:236 +#. type: Content of: <book><chapter><para> +#: guide.dbk:259 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 " @@ -6750,25 +6776,25 @@ msgid "" "restrictions placed on their use and distribution." msgstr "" -#. type: <p></p> -#: guide.sgml:240 +#. type: Content of: <book><chapter><para> +#: guide.dbk:265 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." msgstr "" -#. type: <p></p> -#: guide.sgml:247 +#. type: Content of: <book><chapter><para> +#: guide.dbk:269 msgid "" -"Before starting to use <prgn>dselect</prgn> it is necessary to update the " -"available list by selecting [U]pdate from the menu. This is a superset of " -"<tt>apt-get update</tt> that makes the fetched information available to " -"<prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get update</" -"tt> has been run before." +"Before starting to use <command>dselect</command> it is necessary to update " +"the available list by selecting [U]pdate from the menu. This is a superset " +"of <literal>apt-get update</literal> that makes the fetched information " +"available to <command>dselect</command>. [U]pdate must be performed even if " +"<literal>apt-get update</literal> has been run before." msgstr "" -#. type: <p></p> -#: guide.sgml:253 +#. type: Content of: <book><chapter><para> +#: guide.dbk:276 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 " @@ -6776,57 +6802,63 @@ msgid "" "them together." msgstr "" -#. type: <p></p> -#: guide.sgml:258 +#. type: Content of: <book><chapter><para> +#: guide.dbk:282 msgid "" "By default APT will automatically remove the package (.deb) files once they " -"have been successfully installed. To change this behavior place <tt>Dselect::" -"clean \"prompt\";</tt> in /etc/apt/apt.conf." +"have been successfully installed. To change this behavior place " +"<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" -#. type: <heading></heading> -#: guide.sgml:264 +#. type: Content of: <book><chapter><title> +#: guide.dbk:288 msgid "The Interface" msgstr "" -#. type: <p></p> -#: guide.sgml:278 +#. type: Content of: <book><chapter><para><footnote><para> +#: guide.dbk:292 msgid "" -"Both that APT <prgn>dselect</prgn> method and <prgn>apt-get</prgn> share the " -"same interface. It is a simple system that generally tells you what it will " -"do and then goes and does it. <footnote><p>The <prgn>dselect</prgn> method " -"actually is a set of wrapper scripts to <prgn>apt-get</prgn>. The method " -"actually provides more functionality than is present in <prgn>apt-get</prgn> " -"alone.</p></footnote> After printing out a summary of what will happen APT " +"The <command>dselect</command> method actually is a set of wrapper scripts " +"to <command>apt-get</command>. The method actually provides more " +"functionality than is present in <command>apt-get</command> alone." +msgstr "" + +#. type: Content of: <book><chapter><para> +#: guide.dbk:290 +msgid "" +"Both that APT <command>dselect</command> method and <command>apt-get</" +"command> share the same interface. It is a simple system that generally " +"tells you what it will do and then goes and does it. <placeholder type=" +"\"footnote\" id=\"0\"/> After printing out a summary of what will happen APT " "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 "" -#. type: <heading></heading> -#: guide.sgml:280 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:301 msgid "Startup" msgstr "" -#. type: <p></p> -#: guide.sgml:284 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:303 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 <tt>apt-get check</" -"tt>." +"At any time these operations can be performed by running <literal>apt-get " +"check</literal>." msgstr "" -#. type: <example></example> -#: guide.sgml:289 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:309 #, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Building Dependency Tree... Done\n" msgstr "" -#. type: <p></p> -#: guide.sgml:297 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:314 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. " @@ -6834,17 +6866,17 @@ msgid "" "warning will be printed when apt-get exits." msgstr "" -#. type: <p></p> -#: guide.sgml:303 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:320 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " "package and considers if it is OK. Should this find a problem then a report " -"will be printed out and <prgn>apt-get</prgn> will refuse to run." +"will be printed out and <command>apt-get</command> will refuse to run." msgstr "" -#. type: <example></example> -#: guide.sgml:320 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:326 #, no-wrap msgid "" "# apt-get check\n" @@ -6854,18 +6886,18 @@ msgid "" "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" +" 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" +" 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)" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" msgstr "" -#. type: <p></p> -#: guide.sgml:329 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:343 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 " @@ -6874,61 +6906,69 @@ msgid "" "problem is also included." msgstr "" -#. type: <p></p> -#: guide.sgml:337 +#. type: Content of: <book><chapter><section><para><footnote><para> +#: guide.dbk:352 +msgid "" +"APT however considers all known dependencies and attempts to prevent broken " +"packages" +msgstr "" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:350 msgid "" "There are two ways a system can get into a broken state like this. The first " -"is caused by <prgn>dpkg</prgn> missing some subtle relationships between " -"packages when performing upgrades. <footnote><p>APT however considers all " -"known dependencies and attempts to prevent broken packages</p></footnote>. " -"The second is if a package installation fails during an operation. In this " -"situation a package may have been unpacked without its dependents being " -"installed." +"is caused by <command>dpkg</command> missing some subtle relationships " +"between packages when performing upgrades. <placeholder type=\"footnote\" id=" +"\"0\"/>. The second is if a package installation fails during an operation. " +"In this situation a package may have been unpacked without its dependents " +"being installed." msgstr "" -#. type: <p></p> -#: guide.sgml:345 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:359 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 " -"supplying the <tt>-f</tt> option to <prgn>apt-get</prgn> will cause APT to " -"deduce a possible solution to the problem and then continue on. The APT " -"<prgn>dselect</prgn> method always supplies the <tt>-f</tt> option to allow " -"for easy continuation of failed maintainer scripts." +"supplying the <literal>-f</literal> option to <command>apt-get</command> " +"will cause APT to deduce a possible solution to the problem and then " +"continue on. The APT <command>dselect</command> method always supplies the " +"<literal>-f</literal> option to allow for easy continuation of failed " +"maintainer scripts." msgstr "" -#. type: <p></p> -#: guide.sgml:351 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:368 msgid "" -"However, if the <tt>-f</tt> option is used to correct a seriously broken " -"system caused by the first case then it is possible that it will either fail " -"immediately or the installation sequence will fail. In either case it is " -"necessary to manually use dpkg (possibly with forcing options) to correct " -"the situation enough to allow APT to proceed." +"However, if the <literal>-f</literal> option is used to correct a seriously " +"broken system caused by the first case then it is possible that it will " +"either fail immediately or the installation sequence will fail. In either " +"case it is necessary to manually use dpkg (possibly with forcing options) to " +"correct the situation enough to allow APT to proceed." msgstr "" -#. type: <heading></heading> -#: guide.sgml:356 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:376 msgid "The Status Report" msgstr "" -#. type: <p></p> -#: guide.sgml:363 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:378 msgid "" -"Before proceeding <prgn>apt-get</prgn> will present a report on what will " -"happen. Generally the report reflects the type of operation being performed " -"but there are several common elements. In all cases the lists reflect the " -"final state of things, taking into account the <tt>-f</tt> option and any " -"other relevant activities to the command being executed." +"Before proceeding <command>apt-get</command> will present a report on what " +"will happen. Generally the report reflects the type of operation being " +"performed but there are several common elements. In all cases the lists " +"reflect the final state of things, taking into account the <literal>-f</" +"literal> option and any other relevant activities to the command being " +"executed." msgstr "" -#. type: <heading></heading> -#: guide.sgml:364 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:385 msgid "The Extra Package list" msgstr "" -#. type: <example></example> -#: guide.sgml:372 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:387 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -6936,135 +6976,135 @@ msgid "" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" -" ssh" +" ssh\n" msgstr "" -#. type: <p></p> -#: guide.sgml:379 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:395 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 <tt>install</tt> command. The listed packages are often the " -"result of an Auto Install." +"generated for an <literal>install</literal> command. The listed packages are " +"often the result of an Auto Install." msgstr "" -#. type: <heading></heading> -#: guide.sgml:382 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:402 msgid "The Packages to Remove" msgstr "" -#. type: <example></example> -#: guide.sgml:389 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:404 #, no-wrap msgid "" "The following packages will be REMOVED:\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" -" nas xpilot xfig" +" nas xpilot xfig\n" msgstr "" -#. type: <p></p> -#: guide.sgml:399 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:411 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 " "given a careful inspection to ensure nothing important is to be taken off. " -"The <tt>-f</tt> option is especially good at generating packages to remove " -"so extreme care should be used in that case. The list may contain packages " -"that are going to be removed because they are only partially installed, " -"possibly due to an aborted installation." +"The <literal>-f</literal> option is especially good at generating packages " +"to remove so extreme care should be used in that case. The list may contain " +"packages that are going to be removed because they are only partially " +"installed, possibly due to an aborted installation." msgstr "" -#. type: <heading></heading> -#: guide.sgml:402 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:421 msgid "The New Packages list" msgstr "" -#. type: <example></example> -#: guide.sgml:406 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:423 #, no-wrap msgid "" "The following NEW packages will installed:\n" -" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" msgstr "" -#. type: <p></p> -#: guide.sgml:411 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:427 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 "" -#. type: <heading></heading> -#: guide.sgml:414 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:432 msgid "The Kept Back list" msgstr "" -#. type: <example></example> -#: guide.sgml:419 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:434 #, 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" +" gs snmp arena lynx xpat2 groff xscreensaver\n" msgstr "" -#. type: <p></p> -#: guide.sgml:428 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:439 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 " "or conflict with already installed things. In this case the package will " "appear in the Kept Back list. The best way to convince packages listed there " -"to install is with <tt>apt-get install</tt> or by using <prgn>dselect</prgn> " -"to resolve their problems." +"to install is with <literal>apt-get install</literal> or by using " +"<command>dselect</command> to resolve their problems." msgstr "" -#. type: <heading></heading> -#: guide.sgml:431 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:448 msgid "Held Packages warning" msgstr "" -#. type: <example></example> -#: guide.sgml:435 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:450 #, no-wrap msgid "" "The following held packages will be changed:\n" -" cvs" +" cvs\n" msgstr "" -#. type: <p></p> -#: guide.sgml:441 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:454 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 "" -#. type: <heading></heading> -#: guide.sgml:444 +#. type: Content of: <book><chapter><section><section><title> +#: guide.dbk:460 msgid "Final summary" msgstr "" -#. type: <p></p> -#: guide.sgml:447 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:462 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" -#. type: <example></example> -#: guide.sgml:452 +#. type: Content of: <book><chapter><section><section><screen> +#: guide.dbk:465 #, 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." +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" -#. type: <p></p> -#: guide.sgml:470 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:470 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 " @@ -7081,27 +7121,27 @@ msgid "" "the amount of space that will be freed." msgstr "" -#. type: <p></p> -#: guide.sgml:473 +#. type: Content of: <book><chapter><section><section><para> +#: guide.dbk:484 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." msgstr "" -#. type: <heading></heading> -#: guide.sgml:477 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:491 msgid "The Status Display" msgstr "" -#. type: <p></p> -#: guide.sgml:481 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:493 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." msgstr "" -#. type: <example></example> -#: guide.sgml:490 +#. type: Content of: <book><chapter><section><screen> +#: guide.dbk:497 #, no-wrap msgid "" "# apt-get update\n" @@ -7110,110 +7150,107 @@ msgid "" "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" -"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" msgstr "" -#. type: <p></p> -#: guide.sgml:500 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:506 msgid "" -"The lines starting with <em>Get</em> are printed out when APT begins to " -"fetch a file while the last line indicates the progress of the download. The " -"first percent value on the progress line indicates the total percent done of " -"all files. Unfortunately since the size of the Package files is unknown " -"<tt>apt-get update</tt> estimates the percent done which causes some " -"inaccuracies." +"The lines starting with <emphasis>Get</emphasis> are printed out when APT " +"begins to fetch a file while the last line indicates the progress of the " +"download. The first percent value on the progress line indicates the total " +"percent done of all files. Unfortunately since the size of the Package files " +"is unknown <literal>apt-get update</literal> estimates the percent done " +"which causes some inaccuracies." msgstr "" -#. type: <p></p> -#: guide.sgml:509 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:514 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " "information about what is happening. Sometimes this section will simply read " -"<em>Forking</em> which means the OS is loading the download module. The " -"first word after the [ is the fetch number as shown on the history lines. " -"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." +"<emphasis>Forking</emphasis> which means the OS is loading the download " +"module. The first word after the [ is the fetch number as shown on the " +"history lines. 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 "" -#. type: <p></p> -#: guide.sgml:524 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:524 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " -"<em>Connecting</em> to <em>Waiting for file</em> to <em>Downloading</em> or " -"<em>Resuming</em>. The final value is the number of bytes downloaded from " -"the remote site. Once the download begins this is represented as " -"<tt>102/10.2k</tt> indicating that 102 bytes have been fetched and 10.2 " -"kilobytes is expected. The total size is always shown in 4 figure notation " -"to preserve space. After the size display is a percent meter for the file " -"itself. The second last element is the instantaneous average speed. This " -"values is updated every 5 seconds and reflects the rate of data transfer for " -"that period. Finally is shown the estimated transfer time. This is updated " -"regularly and reflects the time to complete everything at the shown transfer " -"rate." -msgstr "" - -#. type: <p></p> -#: guide.sgml:530 +"<emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to " +"<emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final " +"value is the number of bytes downloaded from the remote site. Once the " +"download begins this is represented as <literal>102/10.2k</literal> " +"indicating that 102 bytes have been fetched and 10.2 kilobytes is expected. " +"The total size is always shown in 4 figure notation to preserve space. After " +"the size display is a percent meter for the file itself. The second last " +"element is the instantaneous average speed. This values is updated every 5 " +"seconds and reflects the rate of data transfer for that period. Finally is " +"shown the estimated transfer time. This is updated regularly and reflects " +"the time to complete everything at the shown transfer rate." +msgstr "" + +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:539 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 " "is started. Since the status display is constantly updated it is unsuitable " -"for logging to a file, use the <tt>-q</tt> option to remove the status " -"display." +"for logging to a file, use the <literal>-q</literal> option to remove the " +"status display." msgstr "" -#. type: <heading></heading> -#: guide.sgml:535 +#. type: Content of: <book><chapter><section><title> +#: guide.dbk:547 msgid "Dpkg" msgstr "" -#. type: <p></p> -#: guide.sgml:542 +#. type: Content of: <book><chapter><section><para> +#: guide.dbk:549 msgid "" -"APT uses <prgn>dpkg</prgn> for installing the archives and will switch over " -"to the <prgn>dpkg</prgn> interface once downloading is completed. " -"<prgn>dpkg</prgn> will also ask a number of questions as it processes the " -"packages and the packages themselves may also ask several questions. Before " -"each question there is usually a description of what it is asking and the " -"questions are too varied to discuss completely here." +"APT uses <command>dpkg</command> for installing the archives and will switch " +"over to the <command>dpkg</command> interface once downloading is completed. " +"<command>dpkg</command> will also ask a number of questions as it processes " +"the packages and the packages themselves may also ask several questions. " +"Before each question there is usually a description of what it is asking and " +"the questions are too varied to discuss completely here." msgstr "" -#. type: <title> -#: offline.sgml:4 +#. type: Content of: +#: offline.dbk:10 msgid "Using APT Offline" msgstr "" -#. type: <version></version> -#: offline.sgml:7 -msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "" - -#. type: <abstract></abstract> -#: offline.sgml:12 +#. type: Content of: <book><bookinfo><abstract><para> +#: offline.dbk:24 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." msgstr "" -#. type: <copyrightsummary></copyrightsummary> -#: offline.sgml:16 -msgid "Copyright © Jason Gunthorpe, 1999." +#. type: Content of: <book><bookinfo> +#: offline.dbk:29 +msgid "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" -#. type: <heading></heading> -#: offline.sgml:32 +#. type: Content of: <book><chapter><title> +#: offline.dbk:47 msgid "Introduction" msgstr "" -#. type: <heading></heading> -#: offline.sgml:34 offline.sgml:65 offline.sgml:180 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:49 offline.dbk:79 offline.dbk:191 msgid "Overview" msgstr "" -#. type: <p></p> -#: offline.sgml:40 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:51 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -7221,8 +7258,8 @@ msgid "" "fast connection but they are physically distant." msgstr "" -#. type: <p></p> -#: offline.sgml:51 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:57 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -7230,13 +7267,13 @@ msgid "" "to use APT to generate a list of packages that are required and then fetch " "them onto the disc using another machine with good connectivity. It is even " "possible to use another Debian machine with APT or to use a completely " -"different OS and a download tool like wget. Let <em>remote host</em> mean " -"the machine downloading the packages, and <em>target host</em> the one with " -"bad or no connection." +"different OS and a download tool like wget. Let <emphasis>remote host</" +"emphasis> mean the machine downloading the packages, and <emphasis>target " +"host</emphasis> the one with bad or no connection." msgstr "" -#. type: <p></p> -#: offline.sgml:57 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:68 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -7244,13 +7281,13 @@ msgid "" "names such as ext2, fat32 or vfat." msgstr "" -#. type: <heading></heading> -#: offline.sgml:63 +#. type: Content of: <book><chapter><title> +#: offline.dbk:77 msgid "Using APT on both machines" msgstr "" -#. type: <p><example> -#: offline.sgml:71 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:81 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -7258,8 +7295,8 @@ msgid "" "to download. The disk directory structure should look like:" msgstr "" -#. type: <example></example> -#: offline.sgml:80 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:87 #, no-wrap msgid "" " /disc/\n" @@ -7269,34 +7306,35 @@ msgid "" " partial/\n" " status\n" " sources.list\n" -" apt.conf" +" apt.conf\n" msgstr "" -#. type: <heading></heading> -#: offline.sgml:88 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:98 msgid "The configuration file" msgstr "" -#. type: <p></p> -#: offline.sgml:96 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:100 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " "contain the proper sites that you wish to use from the remote machine, and " -"the status file should be a copy of <em>/var/lib/dpkg/status</em> from the " -"<em>target host</em>. Please note, if you are using a local archive you must " -"use copy URIs, the syntax is identical to file URIs." +"the status file should be a copy of <emphasis>/var/lib/dpkg/status</" +"emphasis> from the <emphasis>target host</emphasis>. Please note, if you are " +"using a local archive you must use copy URIs, the syntax is identical to " +"file URIs." msgstr "" -#. type: <p><example> -#: offline.sgml:100 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:108 msgid "" -"<em>apt.conf</em> must contain the necessary information to make APT use the " -"disc:" +"<emphasis>apt.conf</emphasis> must contain the necessary information to make " +"APT use the disc:" msgstr "" -#. type: <example></example> -#: offline.sgml:124 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:112 #, no-wrap msgid "" " APT\n" @@ -7304,10 +7342,10 @@ msgid "" " /* This is not necessary if the two machines are the same arch, it tells\n" " the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" -" \n" +"\n" " Get::Download-Only \"true\";\n" " };\n" -" \n" +"\n" " Dir\n" " {\n" " /* Use the disc for state information and redirect the status file from\n" @@ -7318,76 +7356,78 @@ msgid "" " // Binary caches will be stored locally\n" " Cache::archives \"/disc/archives/\";\n" " Cache \"/tmp/\";\n" -" \n" +"\n" " // Location of the source list.\n" " Etc \"/disc/\";\n" -" };" +" };\n" msgstr "" -#. type: </example></p> -#: offline.sgml:129 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:137 msgid "" "More details can be seen by examining the apt.conf man page and the sample " -"configuration file in <em>/usr/share/doc/apt/examples/apt.conf</em>." +"configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis>." msgstr "" -#. type: <p><example> -#: offline.sgml:136 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:142 msgid "" -"On the target machine the first thing to do is mount the disc and copy <em>/" -"var/lib/dpkg/status</em> to it. You will also need to create the directories " -"outlined in the Overview, <em>archives/partial/</em> and <em>lists/partial/</" -"em>. Then take the disc to the remote machine and configure the sources." -"list. On the remote machine execute the following:" +"On the target machine the first thing to do is mount the disc and copy " +"<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " +"create the directories outlined in the Overview, <emphasis>archives/partial/" +"</emphasis> and <emphasis>lists/partial/</emphasis>. Then take the disc to " +"the remote machine and configure the sources.list. On the remote machine " +"execute the following:" msgstr "" -#. type: <example></example> -#: offline.sgml:142 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:151 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" " [ APT fetches the package files ]\n" " # apt-get dist-upgrade\n" -" [ APT fetches all the packages needed to upgrade the target machine ]" +" [ APT fetches all the packages needed to upgrade the target machine ]\n" msgstr "" -#. type: </example></p> -#: offline.sgml:149 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:158 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " -"such as <em>dselect</em>. However this presents a problem in communicating " -"your selections back to the local computer." +"such as <emphasis>dselect</emphasis>. However this presents a problem in " +"communicating your selections back to the local computer." msgstr "" -#. type: <p><example> -#: offline.sgml:153 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:164 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 "" -#. type: <example></example> -#: offline.sgml:159 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:168 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" " [ APT generates a local copy of the cache files ]\n" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" -" [ Or any other APT command ]" +" [ Or any other APT command ]\n" msgstr "" -#. type: <p></p> -#: offline.sgml:165 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:175 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" msgstr "" -#. type: <p></p> -#: offline.sgml:172 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:179 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -7396,21 +7436,21 @@ msgid "" "status file if dpkg or APT have been run in the mean time!!" msgstr "" -#. type: <heading></heading> -#: offline.sgml:178 +#. type: Content of: <book><chapter><title> +#: offline.dbk:189 msgid "Using APT and wget" msgstr "" -#. type: <p></p> -#: offline.sgml:185 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:193 msgid "" -"<em>wget</em> is a popular and portable download tool that can run on nearly " -"any machine. Unlike the method above this requires that the Debian machine " -"already has a list of available packages." +"<emphasis>wget</emphasis> is a popular and portable download tool that can " +"run on nearly any machine. Unlike the method above this requires that the " +"Debian machine already has a list of available packages." msgstr "" -#. type: <p></p> -#: offline.sgml:190 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:198 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -7418,38 +7458,38 @@ msgid "" "packages." msgstr "" -#. type: <heading></heading> -#: offline.sgml:196 +#. type: Content of: <book><chapter><section><title> +#: offline.dbk:204 #, fuzzy msgid "Operation" msgstr "Descrição" -#. type: <p><example> -#: offline.sgml:200 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:206 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." msgstr "" -#. type: <example></example> -#: offline.sgml:205 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:210 #, no-wrap msgid "" -" # apt-get dist-upgrade \n" +" # apt-get dist-upgrade\n" " [ Press no when prompted, make sure you are happy with the actions ]\n" -" # apt-get -qq --print-uris dist-upgrade > uris\n" -" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" -#. type: </example></p> -#: offline.sgml:210 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:216 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." msgstr "" -#. type: <p></p> -#: offline.sgml:216 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:220 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -7457,35 +7497,35 @@ msgid "" "output on the disc." msgstr "" -#. type: <p><example> -#: offline.sgml:219 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:226 msgid "The remote machine would do something like" msgstr "" -#. type: <example></example> -#: offline.sgml:223 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:229 #, no-wrap msgid "" " # cd /disc\n" " # sh -x ./wget-script\n" -" [ wait.. ]" +" [ wait.. ]\n" msgstr "" -#. type: </example><example> -#: offline.sgml:228 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:234 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," msgstr "" -#. type: <example></example> -#: offline.sgml:230 +#. type: Content of: <book><chapter><section><screen> +#: offline.dbk:238 #, no-wrap -msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" +msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr "" -#. type: </example></p> -#: offline.sgml:234 +#. type: Content of: <book><chapter><section><para> +#: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." msgstr "" diff --git a/doc/po4a.conf b/doc/po4a.conf index 3f92c198a..636cac9b9 100644 --- a/doc/po4a.conf +++ b/doc/po4a.conf @@ -27,18 +27,18 @@ [type: manpage] apt-sortpkgs.1.xml $lang:$lang/apt-sortpkgs.$lang.1.xml add_$lang:xml.add [type: manpage] apt-ftparchive.1.xml $lang:$lang/apt-ftparchive.$lang.1.xml add_$lang:xml.add -[type: sgml] guide.sgml $lang:$lang/guide.$lang.sgml -# add_$lang::$lang/addendum/debiandoc_$lang.add -[type: sgml] offline.sgml $lang:$lang/offline.$lang.sgml -# add_$lang::$lang/addendum/debiandoc_$lang.add -#[type: sgml] cache.sgml $lang:$lang/cache.$lang.sgml \ -# add_$lang::$lang/addendum/debiandoc_$lang.add -#[type: sgml] design.sgml $lang:$lang/design.$lang.sgml\ -# add_$lang::$lang/addendum/debiandoc_$lang.add -#[type: sgml] dpkg-tech.sgml $lang:$lang/dpkg-tech.$lang.sgml\ -# add_$lang::$lang/addendum/debiandoc_$lang.add -#[type: sgml] files.sgml $lang:$lang/files.$lang.sgml\ -# add_$lang::$lang/addendum/debiandoc_$lang.add -#[type: sgml] method.sgml $lang:$lang/method.$lang.sgml\ -# add_$lang::$lang/addendum/debiandoc_$lang.add +[type: docbook] guide.dbk $lang:$lang/guide.$lang.dbk +# add_$lang::$lang/addendum/docbook_$lang.add +[type: docbook] offline.dbk $lang:$lang/offline.$lang.dbk +# add_$lang::$lang/addendum/docbook_$lang.add +#[type: docbook] cache.dbk $lang:$lang/cache.$lang.dbk \ +# add_$lang::$lang/addendum/docbook_$lang.add +#[type: docbook] design.dbk $lang:$lang/design.$lang.dbk\ +# add_$lang::$lang/addendum/docbook_$lang.add +#[type: docbook] dpkg-tech.dbk $lang:$lang/dpkg-tech.$lang.dbk\ +# add_$lang::$lang/addendum/docbook_$lang.add +#[type: docbook] files.dbk $lang:$lang/files.$lang.dbk\ +# add_$lang::$lang/addendum/docbook_$lang.add +#[type: docbook] method.dbk $lang:$lang/method.$lang.dbk\ +# add_$lang::$lang/addendum/docbook_$lang.add diff --git a/methods/http.cc b/methods/http.cc index c734d3799..7c7949eac 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -744,7 +744,7 @@ void HttpMethod::SendReq(FetchItem *Itm) Req << "\r\n"; if (Debug == true) - cerr << Req << endl; + cerr << Req.str() << endl; Server->WriteResponse(Req.str()); } diff --git a/po/ar.po b/po/ar.po index 50864ff75..f0eae549e 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n" "Language-Team: Arabic <support@arabeyes.org>\n" @@ -19,3011 +19,3015 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: KBabel 1.11.4\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "نظام الحزم '%s' غير مدعوم" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "الحزمة %s النسخة %s لها معتمد غير مستوفى:\n" +msgid "Unable to read %s" +msgstr "تعذرت قراءة %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "أسماء الحزم الكلية :" +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "أسماء الحزم الكلية :" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " الحزم العادية:" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr "الحزمة الوهمية تماماً:" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " الحزمة الوهمية المفردة:" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "نظام الحزم '%s' غير مدعوم" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " الحزم الوهمية المختلطة:" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " مفقودة:" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "مجموع النسخ الفريدة:" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "مجموع النسخ الفريدة:" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "مجموع المعتمدات:" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "مجموع علاقات النسخ/الملفات:" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "مجموع علاقات النسخ/الملفات:" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "MD5Sum غير متطابقة" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "مجموع علاقات النسخ/الملفات:" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" msgstr "" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "الرجاء إدخال القرص المُسمّى '%s' في السوّاقة '%s' وضغط مفتاح الإدخال." + +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." msgstr "" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "مجموع المساحة المحسوب حسابها:" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "قد يساعدك تنفيذ الأمر apt-get update في تصحيح هذه المشاكل" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "تعذرت قراءة قائمة المصادر." + +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "لم يُعثر على أية حزم" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "يجب أن تعطي صيغة واحدة بالضبط" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "تعذر العثور على الحزمة %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "ملفات الحزم:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "يعتمد" + +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "يعتمد مسبقاً" + +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "يستحسن" + +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "يقترح" + +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "يعارض" + +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "يستبدل" + +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "يُلغي" + +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" msgstr "" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "الحزم المُدبّسة:" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(غير موجود)" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "مهم" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " مُثبّت:" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "مطلوب" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " مرشّح: " +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "قياسي" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(لاشيء)" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "اختياري" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "إضافي" + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" msgstr "" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " جدول النسخ:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s لـ%s %s مُجمّع على %s %s\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "" -#: cmdline/apt-cache.cc:1749 -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 "" - -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'" - -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "الرجاء إدخال قرص في السواقة وضغط الزر enter" - -#: cmdline/apt-cdrom.cc:139 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "فشل تغيير اسم %s إلى %s" +msgid "Error occurred while processing %s (%s%d)" +msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة." - -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "تعذر العثور على الحزمة %s" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "تعذر العثور على الحزمة %s" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "تعذر العثور على الحزمة %s" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: cmdline/apt-get.cc:423 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "Couldn't stat source package list %s" msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "قراءة قوائم الحزم" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Couldn't find package %s" -msgstr "تعذر العثور على الحزمة %s" +msgid "Unable to write to %s" +msgstr "تعذرت الكتابة إلى %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "تعذر قَفْل دليل التنزيل" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "تعذر العثور على مصدر الحزمة %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "فشل إعادة التسمية ، %s (%s -> %s)." -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "MD5Sum غير متطابقة" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "الحجم غير متطابق" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "عمليّة غير صالحة %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" + +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "تخطي الملف '%s' المنزل مسبقاً\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "تعذر حساب المساحة الحرة في %s" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "You don't have enough free space in %s" -msgstr "ليس هناك مساحة كافية في %s" +msgid "GPG error: %s: %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:891 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n" +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 "" -#. 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:896 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Fetch source %s\n" -msgstr "إحضار المصدر %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "فشل إحضار بعض الأرشيفات." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "اكتمل التنزيل وفي وضع التنزيل فقط" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "Vendor block %s contains no fingerprint" msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "أمر فك الحزمة '%s' فشل.\n" +msgid "List directory %spartial is missing." +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +msgid "Archives directory %spartial is missing." msgstr "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "أمر البناء '%s' فشل.\n" +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "تعذر قفل دليل القائمة" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" msgstr "" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "فشل إحضار %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:83 #, c-format -msgid "%s has no build depends.\n" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/policy.cc:422 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/policy.cc:444 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +msgid "Did not understand pin type %s" msgstr "" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" msgstr "" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "فشل إغلاق الملف %s" + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" +msgid "Line %u too long in source list %s." msgstr "" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "فك تركيب القرص المدمج...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." +msgid "Using CD-ROM mount point %s\n" msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "بانتظار القرص...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "الاتصال بـ%s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "تركيب القرص...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "الوحدات المدعومة:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "جاري التعرف..." -#: cmdline/apt-get.cc:1632 -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" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" msgstr "" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "إلا أنها غير مثبتة" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "هذا الاسم غير صالح، حاول مجدداً.\n" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"هذا القرص مسمى: \n" +"'%s'\n" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s هي النسخة الأحدث.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "نسخ قوائم الحزم..." -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s هي النسخة الأحدث.\n" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "كتابة لائحة المصادر الجديدة\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "Waited for %s but it wasn't there" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "فشل فتح %s" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" msgstr "" -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" msgstr "" -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "تعذرت قراءة قاعدة بيانات القرص المدمج %s" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "دمج المعلومات المتوفرة" -#: 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 "" -"الرجاء استخدام apt-cdrom لتعريف APT بهذا القرص المدمج. لا يمكن استخدام apt-" -"get update لإضافة أقراص مدمجة جديدة." +#: apt-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "فشل فتح %s" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "القرص المدمج الخطأ" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "فشلت كتابة الملف %s" -#: methods/cdrom.cc:249 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "تعذر فكّ القرص المدمج من %s، إذ قد يكون لا يزال قيد الاستخدام." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "لم يُعثر على القرص." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "لم يُعثر على الملف" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "فشيل تنفيذ stat" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "فشل تعيين وقت التعديل" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" +msgid "Unable to parse package file %s (1)" msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "تسجيل الدخول" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "رفض الخادم اتصالنا بالرد: %s" +msgid "Version '%s' for '%s' was not found" +msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "USER failed, server said: %s" -msgstr "فشل USER، ردّ الخادم: %s" +msgid "Unable to locate package %s" +msgstr "تعذر العثور على الحزمة %s" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "تعذر العثور على الحزمة %s" + +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "تعذر العثور على الحزمة %s" + +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "تعذر العثور على الحزمة %s" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "PASS failed, server said: %s" -msgstr "فشل PASS، ردّ الخادم: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:252 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"تم تحديد خادم بروكسي ولكن دون نص تسجيل دخول برمجي، Acquire::ftp::ProxyLogin " -"فارغ." -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "فشل أمر نص تسجيل الدخول البرمجي '%s'، ردّ الخادم: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "فشل TYPE، ردّ الخادم: %s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "انتهى وقت الاتصال" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "أغلق الخادم الاتصال" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "خطأ في القراءة" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "لاحظ، تحديد %s بدلاً من %s\n" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "لاحظ، تحديد %s بدلاً من %s\n" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "خطأ في الكتابة" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "فشل" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "تعذر إرسال الأمر PORT" - -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Unknown address family %u (AF_*)" +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "فشل EPRT، ردّ الخادم: %s" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "تعذر قبول الاتصال" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "فتح %s" + +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "تعذر إحضار الملف، ردّ الخادم '%s'" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "تم تثبيت %s" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "فشل نقل البيانات، ردّ الخادم '%s'" +msgid "Configuring %s" +msgstr "تهيئة %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "استعلام" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "إزالة %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "تمت إزالة %s بالكامل" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "الاتصال بـ%s (%s)" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Running post-installation trigger %s" +msgstr "" -#: methods/connect.cc:94 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgid "Directory '%s' missing" msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "فشل إغلاق الملف %s" + +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "تعذر تمهيد الاتصال بـ%s:%s (%s)." +msgid "Preparing %s" +msgstr "تحضير %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "تعذر الاتصال بـ%s:%s (%s)، انتهى وقت الاتصال" +msgid "Unpacking %s" +msgstr "فتح %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "تعذر الاتصال بـ%s:%s (%s)." +msgid "Preparing to configure %s" +msgstr "التحضير لتهيئة %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Connecting to %s" -msgstr "الاتصال بـ%s" +msgid "Installed %s" +msgstr "تم تثبيت %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not resolve '%s'" -msgstr "" +msgid "Preparing for removal of %s" +msgstr "التحضير لإزالة %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "" +msgid "Removed %s" +msgstr "تم إزالة %s" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "" +msgid "Preparing to completely remove %s" +msgstr "التحضير لإزالة %s بالكامل" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "Completely removed %s" +msgstr "تمت إزالة %s بالكامل" + +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "تعذر الاتصال بـ%s %s:" +msgid "Can not write log (%s)" +msgstr "تعذرت الكتابة إلى %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "خطأ في الكتابة إلى الملف" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "خطأ في القراءة من الخادم" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "خطأ في الكتابة إلى الملف" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "فشل التحديد" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "تعذر قفل دليل القائمة" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "انتهى وقت الاتصال" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "خطأ في الكتابة إلى ملف المُخرجات" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "بانتظار الترويسات" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "سطر ترويسة سيء" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "أرسل خادم http ترويسة ردّ غير صالحة" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "أرسل خادم http ترويسة طول محتويات (ِContent-Length) غير صالحة" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "أرسل خادم http ترويسة مدى محتويات (ِContent-Range) غير صالحة" - -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "خادم http له دعم مدى معطوب" - -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "نسق تاريخ مجهول" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "بيانات ترويسة سيئة" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "فشل الاتصال" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "تعذر العثور على التحديد %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "خطأ داخلي" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "حساب الترقية..." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "تمّ" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "تصحيح المعتمدات..." +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " فشل." +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "لم يمكن تصحيح المعتمدات" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "لم يمكن تقليص مجموعة الترقية" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " تم" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "قد ترغب بتنفيذ الأمر 'apt-get -f install' لتصحيح هذه." +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "خطأ في الكتابة" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "مُعتمدات غير مستوفاة. حاول استخدام -f." +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "مشكلة في إغلاق الملف" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" msgstr "" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [مُثبّتة]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [مُثبّتة]" +msgid "Could not open file descriptor %d" +msgstr "فشل إغلاق الملف %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [مُثبّتة]" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [مُثبّتة]" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "خطأ في القراءة" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +msgid "read, still have %llu to read but none left" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" msgstr "" -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "إلا أن %s مثبت" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "مشكلة في إغلاق الملف" -#: apt-private/private-output.cc:444 -#, c-format -msgid "but %s is to be installed" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "مشكلة في مزامنة الملف" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "إلا أنه غير قابل للتثبيت" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "مشكلة في إغلاق الملف" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "إلا أنها حزمة وهمية" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "مشكلة في مزامنة الملف" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "إلا أنها غير مثبتة" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... خطأ!" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "إلا أنه لن يتم تثبيتها" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... تمّ" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " أو" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "سيتم تثبيت الحزم الجديدة التالية:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... تمّ" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "سيتم إزالة الحزم التالية:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "سيتم الإبقاء على الحزم التالية:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "ستتم ترقية الحزم التالية:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "تعذر التغيير إلى %s" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "سيتم تثبيط الحزم التالية:" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "تعذر فتح %s" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "سيتم تغيير الحزم المبقاة التالية:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "تعذر إرسال الأمر PORT" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "%s (due to %s) " -msgstr "%s (بسبب %s) " - -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +msgid "Couldn't make mmap of %lu bytes" msgstr "" -"تحذير: ستتم إزالة الحزم الأساسية التالية.\n" -"لا يجب أن تقوم بهذا إلى إن كنت تعرف تماماً ما تقوم به!" -#: apt-private/private-output.cc:694 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، " +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "فشلت كتابة الملف %s" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu أعيد تثبيتها، " +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%lu downgraded, " -msgstr "%lu مثبطة، " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/private-output.cc:702 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" +msgid "Unable to stat the mount point %s" +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[Y/n]" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "اختصار نوع مجهول: '%c'" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "فتح ملف التهيئة %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Regex compilation error - %s" +msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "لا يقبل الأمر update أية مُعطيات" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة." +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "خطأ داخلي، لم تنته عملية الترتيب" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "يا للغرابة... لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\n" +msgid "Command line option '%c' [from %s] is not known." +msgstr "خيار سطر الأمر '%c' [من %s] مجهول." -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "بحاجة إلى جلب %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 -#: apt-private/private-install.cc:166 -#, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n" +msgid "Command line option %s is not understood" +msgstr "خيار سطر الأمر %s غير مفهوم" -#. 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 -#: apt-private/private-install.cc:171 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "You don't have enough free space in %s." -msgstr "ليس هناك مساحة كافية في %s." +msgid "Option %s requires an argument." +msgstr "الخيار %s يتطلّب مُعطى." -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "هناك مشاكل وتم استخدام -y دون --force-yes" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "نعم، افعل ما أقوله!" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "الخيار '%s' طويل جداً" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Sense %s is not understood, try true or false." msgstr "" -"أنت على وشك أن تقوم بشيء ضارّ جداً\n" -"كي تستمر اكتب العبارة '%s'\n" -" ؟] " - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "إجهاض." -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "هل تريد الاستمرار؟" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "عمليّة غير صالحة %s" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "فشل تنزيل بعض الملفات" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "الحزمة %s النسخة %s لها معتمد غير مستوفى:\n" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --" -"fix-missing؟" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "أسماء الحزم الكلية :" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "أسماء الحزم الكلية :" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "تعذر تصحيح الحزم المفقودة." +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " الحزم العادية:" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "إجهاض التثبيت." +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr "الحزمة الوهمية تماماً:" -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " الحزمة الوهمية المفردة:" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " الحزم الوهمية المختلطة:" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " مفقودة:" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "مجموع النسخ الفريدة:" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "قد تساعد المعلومات التالية في حل المشكلة:" - -#: apt-private/private-install.cc:505 +#: cmdline/apt-cache.cc:327 #, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" +msgid "Total distinct descriptions: " +msgstr "مجموع النسخ الفريدة:" -#: apt-private/private-install.cc:512 -#, fuzzy -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] "سيتم تثبيت الحزم الجديدة التالية:" -msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "مجموع المعتمدات:" -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "سيتم تثبيت الحزم الجديدة التالية:" -msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "مجموع علاقات النسخ/الملفات:" -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "مجموع علاقات النسخ/الملفات:" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "مجموع علاقات النسخ/الملفات:" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " msgstr "" -"مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)." -#: apt-private/private-install.cc:628 -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." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " msgstr "" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "حزم معطوبة" - -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "سيتم تثبيت الحزم الإضافيّة التالية:" - -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "الحزم المقترحة:" - -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "الحزم المستحسنة:" - -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" - -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" - -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n" - -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s هي النسخة الأحدث.\n" - -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" - -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" - -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" - -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" - -#: apt-private/private-main.cc:32 -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!" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "تحذير: تعذرت المصادقة على الحزم التالية!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "تم غض النظر عن تحذير المصادقة.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "تعذرت المصادقة على بعض الحزم" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "تثبيت هذه الحزم دون التحقق منها؟" - -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "فشل إحضار %s %s\n" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "فشل تغيير اسم %s إلى %s" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "مجموع المساحة المحسوب حسابها:" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" - -#: apt-private/acqprogress.cc:66 -msgid "Hit " +msgid "Package file %s is out of sync." msgstr "" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "جلب:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "تجاهل" - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "خطأ" - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "جلب %sب في %s (%sب/Ø«)\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "لم يُعثر على أية حزم" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [يعمل]" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "يجب أن تعطي صيغة واحدة بالضبط" -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"تغيير الوسط: الرجاء إدخال القرص المُسمّى\n" -" '%s'\n" -"في السوّاقة '%s' وضغط مفتاح الإدخال\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "تعذرت قراءة %s" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "ملفات الحزم:" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -#. 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 "" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "الحزم المُدبّسة:" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "فشل إغلاق الملف %s" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(غير موجود)" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "فشل إغلاق الملف %s" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " مُثبّت:" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " مرشّح: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(لاشيء)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " msgstr "" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "إعداد افتراضيّ سيّء!" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " جدول النسخ:" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "اضغط مفتاح الإدخال للاستمرار." +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s لـ%s %s مُجمّع على %s %s\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: cmdline/apt-cache.cc:1749 +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 "" -#: dselect/install:102 +#: cmdline/apt-cdrom.cc:76 #, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "حدثت بعض الأخطاء أثناء فك الحزمة. سأقوم بتهيئة " +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "الحزم التي تم تثبيتها. قد يتسبب هذا بظهر أخطاء متكررة" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "الرجاء إدخال قرص في السواقة وضغط الزر enter" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "أو أخطاء سبّبتها المُعتمدات المفقودة. لا بأس بهذا، فقط الأخطاء" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "فشل تغيير اسم %s إلى %s" -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "أعلى هذه الرسالة مهمّة. الرجاء تصحيحها وتشغيل التثبيت مجدداً" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "دمج المعلومات المتوفرة" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "خطأ داخلي في AddDiversion" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة." -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" msgstr "" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" +#: cmdline/apt-config.cc:89 +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 "" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "ملف تهيئة مُزدوج %s/%s" - -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "المسار %s طويل جداً" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "فكّ تحزيم %s أكثر من مرّة" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:367 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Failed to stat %s" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 -#, c-format -msgid "Failed to rename %s to %s" -msgstr "فشل تغيير اسم %s إلى %s" - -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:454 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "" +msgid "Couldn't find package %s" +msgstr "تعذر العثور على الحزمة %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "المسار طويل جداً" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "فشلت كتابة الملف %s" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "تعذر قَفْل دليل التنزيل" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "فشل إغلاق الملف %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "" +msgid "Unable to find a source package for %s" +msgstr "تعذر العثور على مصدر الحزمة %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "خطأ داخلي، تعذر العثور على العضو %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "توقيع الأرشيف غير صالح" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" + +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "توقيع الأرشيف غير صالح" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "تخطي الملف '%s' المنزل مسبقاً\n" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "تعذر حساب المساحة الحرة في %s" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "الأرشيف قصير جداً" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "ليس هناك مساحة كافية في %s" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "فشل تنفيذ gzip" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "إحضار المصدر %s\n" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "أرشيف فاسد" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "فشل إحضار بعض الأرشيفات." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "فشل تحقّق Checksum لملف Tar، الأرشيف فاسد" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "اكتمل التنزيل وفي وضع التنزيل فقط" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to stat %s." +msgid "Unpack command '%s' failed.\n" +msgstr "أمر فك الحزمة '%s' فشل.\n" + +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Progress: [%3i%%]" +msgid "Build command '%s' failed.\n" +msgstr "أمر البناء '%s' فشل.\n" + +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" msgstr "" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "نظام الحزم '%s' غير مدعوم" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Wrote %i records.\n" +msgid "Unable to get build-dependency information for %s" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Wrote %i records with %i missing files.\n" +msgid "%s has no build depends.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Wrote %i records with %i mismatched files\n" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Can't find authentication record for: %s" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "MD5Sum غير متطابقة" - -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "The method driver %s could not be found." +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Is the package %s installed?" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Method %s did not start correctly" +msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "الرجاء إدخال القرص المُسمّى '%s' في السوّاقة '%s' وضغط مفتاح الإدخال." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "قد يساعدك تنفيذ الأمر apt-get update في تصحيح هذه المشاكل" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "تعذرت قراءة قائمة المصادر." +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "الاتصال بـ%s (%s)" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "الوحدات المدعومة:" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" +#: cmdline/apt-get.cc:1632 +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 "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "إلا أنها غير مثبتة" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "يعتمد" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "يعتمد مسبقاً" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "يستحسن" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s هي النسخة الأحدث.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "يقترح" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s هي النسخة الأحدث.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "يعارض" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "يستبدل" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "فشل فتح %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "يُلغي" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "مهم" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "تعذرت قراءة قاعدة بيانات القرص المدمج %s" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "مطلوب" +#: 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 "" +"الرجاء استخدام apt-cdrom لتعريف APT بهذا القرص المدمج. لا يمكن استخدام apt-" +"get update لإضافة أقراص مدمجة جديدة." -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "قياسي" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "القرص المدمج الخطأ" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "اختياري" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "تعذر فكّ القرص المدمج من %s، إذ قد يكون لا يزال قيد الاستخدام." -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "إضافي" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "لم يُعثر على القرص." -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "لم يُعثر على الملف" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "فشيل تنفيذ stat" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "فشل تعيين وقت التعديل" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" msgstr "" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "تسجيل الدخول" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" msgstr "" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" msgstr "" -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" +msgid "The server refused the connection and said: %s" +msgstr "رفض الخادم اتصالنا بالرد: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:225 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "" +msgid "USER failed, server said: %s" +msgstr "فشل USER، ردّ الخادم: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "قراءة قوائم الحزم" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "فشل PASS، ردّ الخادم: %s" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"تم تحديد خادم بروكسي ولكن دون نص تسجيل دخول برمجي، Acquire::ftp::ProxyLogin " +"فارغ." -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:280 #, c-format -msgid "Unable to write to %s" -msgstr "تعذرت الكتابة إلى %s" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "" +msgid "Login script command '%s' failed, server said: %s" +msgstr "فشل أمر نص تسجيل الدخول البرمجي '%s'، ردّ الخادم: %s" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "فشل TYPE، ردّ الخادم: %s" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "انتهى وقت الاتصال" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "أغلق الخادم الاتصال" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." msgstr "" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "فشل إعادة التسمية ، %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "MD5Sum غير متطابقة" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "الحجم غير متطابق" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "عمليّة غير صالحة %s" - -#: apt-pkg/acquire-item.cc:1581 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" msgstr "" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "فشل" + +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." msgstr "" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/acquire-item.cc:1729 -#, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" msgstr "" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" msgstr "" -#: apt-pkg/acquire-item.cc:1867 +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "تعذر إرسال الأمر PORT" + +#: methods/ftp.cc:802 #, 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)" +msgid "Unknown address family %u (AF_*)" msgstr "" -#: apt-pkg/acquire-item.cc:1933 +#: methods/ftp.cc:811 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" +msgid "EPRT failed, server said: %s" +msgstr "فشل EPRT، ردّ الخادم: %s" + +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" msgstr "" -#: apt-pkg/acquire-item.cc:1991 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "تعذر قبول الاتصال" + +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" msgstr "" -#: apt-pkg/vendorlist.cc:85 +#: methods/ftp.cc:890 #, c-format -msgid "Vendor block %s contains no fingerprint" +msgid "Unable to fetch file, server said '%s'" +msgstr "تعذر إحضار الملف، ردّ الخادم '%s'" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" msgstr "" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/ftp.cc:935 #, c-format -msgid "List directory %spartial is missing." +msgid "Data transfer failed, server said '%s'" +msgstr "فشل نقل البيانات، ردّ الخادم '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "استعلام" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " msgstr "" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "الاتصال بـ%s (%s)" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "تعذر قفل دليل القائمة" +#: methods/connect.cc:87 +#, c-format +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:94 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:100 #, c-format -msgid "Retrieving file %li of %li" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "تعذر تمهيد الاتصال بـ%s:%s (%s)." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" +#: methods/connect.cc:108 +#, c-format +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "تعذر الاتصال بـ%s:%s (%s)، انتهى وقت الاتصال" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "تعذر الاتصال بـ%s:%s (%s)." -#: apt-pkg/policy.cc:83 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" +msgid "Connecting to %s" +msgstr "الاتصال بـ%s" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "Could not resolve '%s'" msgstr "" -#: apt-pkg/policy.cc:444 +#: methods/connect.cc:205 #, c-format -msgid "Did not understand pin type %s" +msgid "Temporary failure resolving '%s'" msgstr "" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s'" msgstr "" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: methods/connect.cc:211 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "فشل إغلاق الملف %s" +msgid "Unable to connect to %s:%s:" +msgstr "تعذر الاتصال بـ%s %s:" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:168 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." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "فك تركيب القرص المدمج...\n" - -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "بانتظار القرص...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "تركيب القرص...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "جاري التعرف..." - -#: apt-pkg/cdrom.cc:662 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Stored label: %s\n" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" msgstr "" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" msgstr "" -#: apt-pkg/cdrom.cc:744 +#: methods/gpgv.cc:231 msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "هذا الاسم غير صالح، حاول مجدداً.\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "خطأ في الكتابة إلى الملف" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"هذا القرص مسمى: \n" -"'%s'\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال" + +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "خطأ في القراءة من الخادم" + +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "خطأ في الكتابة إلى الملف" + +#: methods/http.cc:621 +msgid "Select failed" +msgstr "فشل التحديد" + +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "انتهى وقت الاتصال" + +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "خطأ في الكتابة إلى ملف المُخرجات" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "نسخ قوائم الحزم..." +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "بانتظار الترويسات" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "كتابة لائحة المصادر الجديدة\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "سطر ترويسة سيء" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "أرسل خادم http ترويسة ردّ غير صالحة" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "أرسل خادم http ترويسة طول محتويات (ِContent-Length) غير صالحة" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "أرسل خادم http ترويسة مدى محتويات (ِContent-Range) غير صالحة" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "خادم http له دعم مدى معطوب" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "نسق تاريخ مجهول" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "بيانات ترويسة سيئة" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "فشل الاتصال" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "دمج المعلومات المتوفرة" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "خطأ داخلي" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "فشل فتح %s" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "حساب الترقية..." -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "فشلت كتابة الملف %s" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "تمّ" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'" - -#: apt-pkg/cacheset.cc:492 +#: apt-private/private-list.cc:164 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "تعذر العثور على الحزمة %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "تصحيح المعتمدات..." -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "تعذر العثور على الحزمة %s" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " فشل." -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "تعذر العثور على الحزمة %s" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "لم يمكن تصحيح المعتمدات" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "لم يمكن تقليص مجموعة الترقية" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " تم" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "قد ترغب بتنفيذ الأمر 'apt-get -f install' لتصحيح هذه." -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "مُعتمدات غير مستوفاة. حاول استخدام -f." -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" +msgid "[installed,upgradable to: %s]" +msgstr " [مُثبّتة]" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "لاحظ، تحديد %s بدلاً من %s\n" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [مُثبّتة]" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "لاحظ، تحديد %s بدلاً من %s\n" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [مُثبّتة]" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [مُثبّتة]" -#: apt-pkg/sourcelist.cc:127 +#: apt-private/private-output.cc:249 #, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-output.cc:435 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" +msgid "but %s is installed" +msgstr "إلا أن %s مثبت" -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:437 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" +msgid "but %s is to be installed" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "إلا أنه غير قابل للتثبيت" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "إلا أنها حزمة وهمية" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "إلا أنها غير مثبتة" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "إلا أنه لن يتم تثبيتها" + +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " أو" + +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" msgstr "" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "سيتم تثبيت الحزم الجديدة التالية:" + +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "سيتم إزالة الحزم التالية:" + +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "سيتم الإبقاء على الحزم التالية:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "ستتم ترقية الحزم التالية:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "سيتم تثبيط الحزم التالية:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "سيتم تغيير الحزم المبقاة التالية:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (بسبب %s) " -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"تحذير: ستتم إزالة الحزم الأساسية التالية.\n" +"لا يجب أن تقوم بهذا إلى إن كنت تعرف تماماً ما تقوم به!" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:711 #, c-format -msgid "Opening %s" -msgstr "فتح %s" +msgid "%lu reinstalled, " +msgstr "%lu أعيد تثبيتها، " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "" +msgid "%lu downgraded, " +msgstr "%lu مثبطة، " -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:715 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n" -#: apt-pkg/sourcelist.cc:416 +#: apt-private/private-output.cc:719 #, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "تم تثبيت %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "تهيئة %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "إزالة %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "تمت إزالة %s بالكامل" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "لا يقبل الأمر update أية مُعطيات" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Running post-installation trigger %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-private/private-show.cc:156 #, c-format -msgid "Directory '%s' missing" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "فشل إغلاق الملف %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "تحضير %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "فتح %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "خطأ داخلي، لم تنته عملية الترتيب" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "التحضير لتهيئة %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "يا للغرابة... لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "تم تثبيت %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "التحضير لإزالة %s" +msgid "Need to get %sB of archives.\n" +msgstr "بحاجة إلى جلب %sب من الأرشيف.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "تم إزالة %s" +#. 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 +#: apt-private/private-install.cc:167 +#, fuzzy, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "التحضير لإزالة %s بالكامل" +#. 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 +#: apt-private/private-install.cc:172 +#, fuzzy, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "تمت إزالة %s بالكامل" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "You don't have enough free space in %s." +msgstr "ليس هناك مساحة كافية في %s." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "تعذرت الكتابة إلى %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "هناك مشاكل وتم استخدام -y دون --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "نعم، افعل ما أقوله!" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"أنت على وشك أن تقوم بشيء ضارّ جداً\n" +"كي تستمر اكتب العبارة '%s'\n" +" ؟] " -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "إجهاض." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "هل تريد الاستمرار؟" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "فشل تنزيل بعض الملفات" + +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --" +"fix-missing؟" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً" + +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "تعذر تصحيح الحزم المفقودة." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "إجهاض التثبيت." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "قد تساعد المعلومات التالية في حل المشكلة:" + +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "سيتم تثبيت الحزم الجديدة التالية:" +msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "تعذر قفل دليل القائمة" +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] "سيتم تثبيت الحزم الجديدة التالية:" +msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:638 +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 "" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "حزم معطوبة" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "سيتم تثبيت الحزم الإضافيّة التالية:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "الحزم المقترحة:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "الحزم المستحسنة:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "تعذر العثور على التحديد %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" +msgid "%s is already the newest version.\n" +msgstr "%s هي النسخة الأحدث.\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "تحذير: تعذرت المصادقة على الحزم التالية!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "تم غض النظر عن تحذير المصادقة.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "تعذرت المصادقة على بعض الحزم" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "تثبيت هذه الحزم دون التحقق منها؟" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "مشكلة في إغلاق الملف" +msgid "Failed to parse %s. Edit again? " +msgstr "فشل تغيير اسم %s إلى %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "فشل إغلاق الملف %s" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" +#: apt-private/acqprogress.cc:66 +msgid "Hit " msgstr "" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "مشكلة في إغلاق الملف" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "جلب:" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "مشكلة في مزامنة الملف" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "تجاهل" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "مشكلة في إغلاق الملف" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "خطأ" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "مشكلة في مزامنة الملف" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "جلب %sب في %s (%sب/Ø«)\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... خطأ!" +msgid " [Working]" +msgstr " [يعمل]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... تمّ" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"تغيير الوسط: الرجاء إدخال القرص المُسمّى\n" +" '%s'\n" +"في السوّاقة '%s' وضغط مفتاح الإدخال\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, fuzzy, c-format +msgid "Can not read mirror file '%s'" +msgstr "فشل إغلاق الملف %s" + +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... تمّ" +msgid "No entry found in mirror file '%s'" +msgstr "فشل إغلاق الملف %s" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" msgstr "" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "تعذر التغيير إلى %s" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "تعذر فتح %s" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "إعداد افتراضيّ سيّء!" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "تعذر إرسال الأمر PORT" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "اضغط مفتاح الإدخال للاستمرار." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#: apt-pkg/contrib/mmap.cc:322 +#: dselect/install:102 #, fuzzy -msgid "Failed to truncate file" -msgstr "فشلت كتابة الملف %s" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "حدثت بعض الأخطاء أثناء فك الحزمة. سأقوم بتهيئة " -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "الحزم التي تم تثبيتها. قد يتسبب هذا بظهر أخطاء متكررة" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "أو أخطاء سبّبتها المُعتمدات المفقودة. لا بأس بهذا، فقط الأخطاء" + +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "أعلى هذه الرسالة مهمّة. الرجاء تصحيحها وتشغيل التثبيت مجدداً" + +#: dselect/update:30 +msgid "Merging available information" +msgstr "دمج المعلومات المتوفرة" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" msgstr "" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" msgstr "" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "خطأ داخلي في AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Unable to stat the mount point %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "اختصار نوع مجهول: '%c'" +msgid "Duplicate conf file %s/%s" +msgstr "ملف تهيئة مُزدوج %s/%s" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Opening configuration file %s" -msgstr "فتح ملف التهيئة %s" +msgid "The path %s is too long" +msgstr "المسار %s طويل جداً" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "" +msgid "Unpacking %s more than once" +msgstr "فكّ تحزيم %s أكثر من مرّة" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Malformed tag" +msgid "The directory %s is diverted" msgstr "" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" msgstr "" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" +msgid "Failed to stat %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "" +msgid "Failed to rename %s to %s" +msgstr "فشل تغيير اسم %s إلى %s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "المسار طويل جداً" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" +msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "إجهاض التثبيت." +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "خيار سطر الأمر '%c' [من %s] مجهول." +msgid "Failed to write file %s" +msgstr "فشلت كتابة الملف %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Command line option %s is not understood" -msgstr "خيار سطر الأمر %s غير مفهوم" +msgid "Failed to close file %s" +msgstr "فشل إغلاق الملف %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Command line option %s is not boolean" +msgid "This is not a valid DEB archive, missing '%s' member" msgstr "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option %s requires an argument." -msgstr "الخيار %s يتطلّب مُعطى." +msgid "Internal error, could not locate member %s" +msgstr "خطأ داخلي، تعذر العثور على العضو %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "توقيع الأرشيف غير صالح" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" msgstr "" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "الخيار '%s' طويل جداً" +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "توقيع الأرشيف غير صالح" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" msgstr "" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "الأرشيف قصير جداً" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "فشلت قراءة ترويسات الأرشيف" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "فشل تنفيذ gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "أرشيف فاسد" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "فشل تحقّق Checksum لملف Tar، الأرشيف فاسد" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "عمليّة غير صالحة %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3318,7 +3322,7 @@ msgstr "" msgid "Problem unlinking %s" msgstr "" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3350,6 +3354,10 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s ليس حزمة DEB صالحة." diff --git a/po/ast.po b/po/ast.po index 3fae4b970..17f833ade 100644 --- a/po/ast.po +++ b/po/ast.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela <ivarela@softastur.org>\n" "Language-Team: Asturian (ast)\n" @@ -15,3202 +15,3206 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Virtaal 0.5.2\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "El paquete %s versión %s nun cumple una dependencia:\n" +msgid "Unable to read %s" +msgstr "Nun ye a lleer %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Total de nomes de paquetes: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Nun se pudo cambiar a %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Total de cadarmes de paquetes: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Nun pudo lleese %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquetes normales: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquetes virtuales puros: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Executando dpkt" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquetes virtuales cenciellos: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "El sistema d'empaquetáu '%s' nun ta sofitáu" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquetes virtuales amestaos: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nun pudo determinase una triba de sistema d'empaquetáu afayadiza" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Falten: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i rexistros escritos.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Versiones distintes en total: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i rexistros escritos con %i ficheros de menos.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Descripciones distintes en total: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i rexistros escritos con %i ficheros mal empareyaos\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Dependencies totales: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Escribiéronse %i rexistros con %i ficheros perdíos y %i ficheros que nun " +"concasen\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Rellaciones versión/ficheru en total: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Nun puede alcontrase'l rexistru d'autenticación pa: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Rellaciones descripción/ficheru en total: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "El hash nun concasa pa: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Mapes de provisiones en total: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Nun pudo alncontrase'l controlador de métodu %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Cadenes globalizaes en total: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espaciu de dependencies de versión en total: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "El métodu %s nun entamó correchamente" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espaciu ociosu en total: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Por favor, introduz el discu '%s' nel preséu '%s' y calca Intro." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Informe del total d'espaciu: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Nun pudieron analizase o abrise les llistes de paquetes o el ficheru d'estáu." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "El ficheru de paquetes %s nun ta sincronizáu." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Has d'executar apt-get update pa iguar estos problemes" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nun s'alcontraron paquetes" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nun pudo lleese la llista de fontes." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Has de dar polo menos un patrón de gueta" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Caché de paquetes balera." -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "El ficheru de caché de paquetes ta tollíu" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "El ficheru de caché de paquetes ye una versión incompatible" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "El ficheru de caché de paquetes ta tollíu" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Nun pue alcontrase'l paquete %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Esti APT nun soporta'l sistema de versiones '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Ficheros de paquete:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "La caché de paquetes creóse pa una arquitectura estremada" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"La caché nun ta sincronizada, nun puede facese x-ref a un ficheru de paquete" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende de" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquetes na chincheta:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Predepende de" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nun s'alcontró)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suxer" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instaláu: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomienda" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidatu: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "En conflictu con" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(dengún)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Sustituye a" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Chincheta de paquetes: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Fai obsoletu a" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabla de versiones:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ruempe" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pa %s compiláu en %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Aumenta" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Usu: apt-cache [opciones] orde\n" -" apt-cache [opciones] add ficheru1 [ficheru2 ...]\n" -" apt-cache [opciones] showpkg paq1 [paq2 ...]\n" -" apt-cache [opciones] showsrc paq1 [paq2 ...]\n" -"\n" -"apt-cache ye una ferramienta de baxu nivel usada pa remanar\n" -"ficheros de caché binarios d'APT y consultar información d'ellos\n" -"\n" -"Ordes:\n" -" add - Amesta un ficheru de paquete a la caché fonte\n" -" gencaches - Creal dambes cachés, la de paquetes y la de fontes\n" -" showpkg - Amuesa algo d'información xeneral d'un sólu paquete\n" -" showsrc - Amuesa los rexistros de fonte\n" -" stats - Amuesa dalgunes estadístiques básiques\n" -" dump - Amuesa'l ficheru ensembre en formatu tersu\n" -" dumpavail - Imprenta un ficheru disponible na salida estándar\n" -" unmet - Amuesa dependencies nun atopáes\n" -" search - Restola na llista de paquetes por el patrón d'una espresión " -"regular\n" -" show - Amuesa un rexistru lleíble pal paquete\n" -" showauto - Amouesa una llista de paquetes instalaos automáticamente\n" -" depends - Amuesa la información de dependencies en bruto d'un paquete\n" -" rdepends - Amuesa la información de dependencies inverses d'un paquete\n" -" pkgnames - Llista los nomes de tolos paquetes nel sistema\n" -" dotty - Xenera gráfiques del paquete pa GraphViz\n" -" xvcg - Xenera gráfiques del paquete pa xvcg\n" -" policy - Amuesa los axustes de les normes\n" -"\n" -"Opciones:\n" -" -h Esti testu d'aida.\n" -" -p=? La cache de paquetes.\n" -" -s=? La cache de fontes.\n" -" -q Desactiva l'indicador de progresu.\n" -" -i Amuesa sólo les dependencies importantes de la orde incumplida.\n" -" -c=? Lleer esti ficheru de configuración\n" -" -o=? Conseña una opción de configuración arbitraria, ex -o dir::cache=/" -"tmp\n" -"Ver les páxines del manual apt-cache(8) y apt.conf(5) pa más información.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Da-y un nome a esti discu, como 'Debian 5.0.3 Discu 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requeríu" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Inxerta un discu nel preséu y calca intro" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estándar" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Falló al montar '%s' a '%s'" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repite'l procesu colos demás CDs del conxuntu." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentos non empareyaos" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Error de compilación d'espresión regular - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Usu: apt-config [opciones] orde\n" -"\n" -"apt-config ye una ferramienta pa lleer el ficheru de configuración d'APT.\n" -"\n" -"Ordes:\n" -" shell - Mou shell\n" -" dump - Amuesa la configuración\n" -"\n" -"Opciones:\n" -" -h Esti testu d'aida.\n" -" -c=? Llee esti ficheru de configuración\n" -" -o=? Conseña una opción de configuración arbitraria, p. ex.\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "La caché tien un sistema de versiones incompatible" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Hebo un error al procesar %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Coime, perpasaste'l númberu de nomes de paquete qu'esti APT ye a remanar." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Vaya, perpasaste'l númberu de versiones coles que puede esti APT." -#: cmdline/apt-get.cc:367 -#, 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" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Coime, perpasaste'l númberu de descripciones qu'esti APT ye a remanar." -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Inorar versión non disponible de '%s' del paquete '%s'" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Nun pudo alcontrase'l paquete %s" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Al procesar dependencies de ficheros nun s'alcontró el paquete %s %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s axustáu como instaláu manualmente.\n" +msgid "Couldn't stat source package list %s" +msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s axustáu como instaláu automáticamente.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lleendo llista de paquetes" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Recoyendo ficheros qu'apurren" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Error internu, l'iguador de problemes frañó coses" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Nun se pue escribir en %s" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nun pue bloquiase'l direutoriu de descarga" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Fallu de E/S al grabar caché d'oríxenes" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Nun pudo alcontrase un paquete fonte pa %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -"AVISU: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -"Por favor, usa:\n" -"bzr get %s\n" -"pa baxar los caberos anovamientos (posiblemente tovía nun sacaos) pal " -"paquete.\n" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Saltando'l ficheru yá descargáu '%s'\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nun pue determinase l'espaciu llibre de %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "falló'l cambiu de nome, %s (%s -> %s)." -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Nun hai espaciu llibre bastante en %s" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "La suma hash nun concasa" -#. 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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "El tamañu nun concasa" -#. 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Hai falta descargar %sB d'archivos fonte.\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operación incorreuta: %s" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "Fonte descargada %s\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Falló la descarga de dellos archivos." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nun se pudo parchear el ficheru release %s" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Descarga completa y en mou de sólo descarga" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Nun hai clave pública denguna disponible pa les IDs de clave darréu:\n" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, 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" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Falló la orde de desempaquetáu '%s'.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Hebo un fallu durante la verificación de la robla. El repositoriu nun ta " +"anováu y va usase un ficheru índiz. Fallu GPG: %s: %s\n" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Falló la orde build '%s'.\n" +msgid "GPG error: %s: %s" +msgstr "Fallu GPG: %s: %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Falló el procesu fíu" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " +"necesites iguar manualmente esti paquete (por faltar una arquitectura)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"Hai que conseñar polo menos un paquete pa verificar les dependencies de " -"construcción" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Los ficheros d'indiz de paquetes tan corrompíos. Nun hai campu Filename: pal " +"paquete %s." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nun pudo algamase información de dependencies de construcción pa %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "El bloque de fornidor %s nun contién una buelga dixital" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nun tien dependencies de construcción.\n" +msgid "List directory %spartial is missing." +msgstr "Falta'l direutoriu de llistes %spartial." -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Falta'l direutoriu d'archivos %spartial." + +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Nun pudo bloquiase'l direutoriu %s" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Descargando ficheru %li de %li (falten %s)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Descargando ficheru %li de %li" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Falló algamar %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " -"paquete %s" +"Nun pudieron descargase dellos ficheros d'índiz; inoráronse o usáronse los " +"antiguos nel so llugar." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Has de poner delles URIs 'fonte' nel ficheru sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " -"paquete %s" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"Nun se pudo satisfacer la dependencia %s pa %s: El paquete instaláu %s ye " -"enforma nuevu" +"Rexistru inválidu nel ficheru de preferencies %s, nun hai cabecera Paquete" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Nun s'entiende'l tipu de pin %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nun hai prioridá (o ye cero) conseñada pa pin" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"La dependencia %s en %s nun puede satisfacese porque denguna versión " -"disponible del paquete %s satisfaz los requisitos de versión" +"Nun pudó facese la configuración inmediatamente en '%s'. Por favor, mira man " +"5 apt.conf embaxo APT::Immediate-Configure for details. (%d)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nun pudo abrise'l ficheru '%s'" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " -"paquete %s" +"Esta execución d'instalación va requerir desaniciar temporalmente'l paquete " +"esencial %s por un cote de Conflictos/Pre-Dependencies. Esto normalmente ye " +"malo, pero si daveres quies facelo, activa la opción APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Llinia %u enforma llarga na llista d'oríxenes %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando'l CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Les dependencies de construcción de %s nun pudieron satisfacese." +msgid "Using CD-ROM mount point %s\n" +msgstr "Usando el puntu de montaxe de CD-ROM %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Fallu al procesar les dependencies de construcción" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Esperando'l discu...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Coneutando a %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando'l CD-ROM...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos sofitaos:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etiqueta guardada: %s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Buscando nel discu ficheros d'índices...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Usu: apt-get [opciones] comandu\n" -" apt-get [opciones] install|remove pkg1 [pkg2 ...]\n" -" apt-get [opciones] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get ye una interface de llínia de comandos simple pa baxar ya\n" -"instalar paquetes. L'usu más frecuente de comandos ye p'anovar\n" -"ya instalar.\n" -"\n" -"Comandos:\n" -" update - Algamar nueva llista de paquetes\n" -" upgrade - Facer una anovación\n" -" install - Instalar nuevos paquetes (pkg ye libc6 non libc6.deb)\n" -" remove - Desaniciar paquetes\n" -" autoremove - Desaniciar automáticamente tolos paquetes non usaos\n" -" purge - Quitar y desaniciar paquetes\n" -" source - Baxar fonte del ficheru\n" -" build-dep - Configurar dependencies pa los paquetes fonte\n" -" dist-upgrade - Actualización de la distribución, ver apt-get(8)\n" -" dselect-upgrade - Siguir seleiciones dselect\n" -" clean - Esborrar los ficheros de ficheros baxaos\n" -" autoclean - Esborrar ficheros de ficheros vieyos baxaos\n" -" check - Verificar que nun hai dependencies frayaes\n" -" markauto - Marcar paquetes como automáticamente instalaos\n" -" unmarkauto - Marcar paquetes como manualmente instalaos\n" -"\n" -"Opciones:\n" -" -h Esti testu d'aida.\n" -" -q Salida Log - ensín indicación de progresu\n" -" -qq Ensín salida excepto pa fallos\n" -" -d Baxar sólo - NON instalar o desempaquetar los archivos\n" -" -s Non aición. Facer una simulación ordenada\n" -" -y Asumir Yes pa toles entruges y nun visualizar la petición\n" -" -f Intentar correxir un sistema con dependencies frayaes\n" -" -m Intentar siguir si los archivos nun tan disponibles\n" -" -u Amosar una lilsta de paquetes que tan bien\n" -" -b Facer el paquete fonte dempues d'algamalu\n" -" -V Amosar númberos de versiones\n" -" -c=? Lleer esti ficheru de configuración\n" -" -o=? Afitar una opción de configuración arbitraria, p. ex. -o dir::cache=/" -"tmp\n" -"Ver lés páxines de los manuales d' apt-get(8), sources.list(5) y apt." -"conf(5)\n" -"pa más información y opciones.\n" -" Esti APT tien Poderes de Super Vaca.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Atopáu %zu indices de paquete, %zu indices de fonte, %zu indices de torna y " +"%zu firmes\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Nun s'alcuentra dengún paquete de ficheros, seique nun ye un Discu Debian o " +"hai una arquiteutura inválida?" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "pero nun ta instaláu" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s axustáu como instaláu manualmente.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s axustáu como instaláu automáticamente.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s yá ta na versión más nueva.\n" - -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s yá ta na versión más nueva.\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperaba %s pero nun taba ellí" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s axustáu como instaláu manualmente.\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Nun pudo abrise %s" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" - -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" +msgid "Found label '%s'\n" +msgstr "Atopóse la etiqueta: '%s'\n" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Esi nun ye un nome válidu; inténtalo otra vuelta.\n" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nun se pudo lleer la base datos %s del CD-ROM" - -#: 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" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Por favor usa apt-cdrom pa facer qu'APT reconoza esti CD. apt-get update nun " -"se puede usar p'amestar CDs nuevos" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM malu" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nun se pudo desmontar el CD-ROM de %s; puede que se tea usando entá." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Nun s'atopa'l discu." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Nun s'atopa'l ficheru." - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Falló al lleer" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Nun se pudo afitar la hora de modificación" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI malu, los URIS llocales nun pueden entamar por //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Entrando" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nun se pudo determinar el nome del par" +"Esti discu llámase: \n" +"'%s'\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nun se pudo determinar el nome llocal" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando les llistes de paquetes..." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "El sirvidor refugó la conexón, y dixo: %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Escribiendo llista nueva d'oríxenes\n" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "L'usuariu (USER) falló; el sirvidor dixo: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Les entraes de la llista d'oríxenes pa esti discu son:\n" -#: methods/ftp.cc:232 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "PASS failed, server said: %s" -msgstr "La contraseña (PASS) falló; el sirvidor dixo: %s" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Especificóse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::" -"ProxyLogin ta baleru." - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Falló la orde '%s' del guión d'entrada; el sirvidor dixo: %s" - -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "La triba (TYPE) falló; el sirvidor dixo: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Gandió'l tiempu de conexón" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "El sirvidor zarró la conexón" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Fallu de llectura" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Una rempuesta revirtió'l buffer." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corrupción del protocolu" - -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Fallu d'escritura" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nun se pudo crear un socket" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Nun se pudo coneutar el zócalu de datos; gandió'l tiempu de conexón" +"El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Falló" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola " +"mor de paquetes reteníos." -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nun se pudo coneutar un socket pasivu." +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos reteníos." -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nun pudo obtener un zócalu oyente" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Creando árbol de dependencies" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nun se pudo enllazar con un socket" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versiones candidates" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nun se pudo escuchar nel socket" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Xeneración de dependencies" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nun se pudo determinar el nome del socket" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lleendo información d'estáu" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nun se pudo mandar la orde PORT" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Nun se pudo abrir el ficheru d'estáu %s" -#: methods/ftp.cc:802 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Direición de familia %u desconocida (AF_*)" +msgid "Failed to write temporary StateFile %s" +msgstr "Falló la escritura del ficheru temporal d'estáu %s" -#: methods/ftp.cc:811 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falló; el sirvidor dixo: %s" +msgid "Unable to parse package file %s (1)" +msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Gandió'l tiempu de conexón col zócalu de datos" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nun se pudo tratar el ficheru de paquetes %s (2)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nun se pudo aceptar la conexón" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Nun s'alcontró la distribución '%s' pa '%s'" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Hebo un problema al xenerar el hash del ficheru" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Nun s'alcontró la versión '%s' pa '%s'" -#: methods/ftp.cc:890 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nun se pudo descargar el ficheru; el sirvidor dixo '%s'" +msgid "Unable to locate package %s" +msgstr "Nun pue alcontrase'l paquete %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Gandió'l tiempu del zócalu de datos" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Nun pudo alcontrase la xera '%s'" -#: methods/ftp.cc:935 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Falló la tresferencia de datos; el sirvidor dixo '%s'" +msgid "Couldn't find any package by regex '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Consulta" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nun se pudo invocar " +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Nun pueden seleicionase versiones pal paquete'%s' como puramente virtual" -#: methods/connect.cc:76 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Coneutando a %s (%s)" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Nun puede seleicionase l'instalador o versión candidata pal paquete '%s' " +"como non tien nengún d'ellos" -#: methods/connect.cc:87 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Nun puede seleicionase la versión más nueva pal paquete'%s' como puramente " +"virtual" -#: methods/connect.cc:94 +#: apt-pkg/cacheset.cc:655 #, 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)" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Nun puede seleicionase versión candidata pal paquete %s que nun tien " +"candidata" -#: methods/connect.cc:100 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nun se pudo coneutar a %s:%s (%s)." +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Nun puede seleicionase versión instalada pal paquete %s que nun ta instalada" -#: methods/connect.cc:108 +#: apt-pkg/indexrecords.cc:78 #, 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" +msgid "Unable to parse Release file %s" +msgstr "Nun se pudo parchear el ficheru release %s" -#: methods/connect.cc:126 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nun se pudo coneutar a %s:%s (%s)." +msgid "No sections in Release file %s" +msgstr "Ensin seiciones nel ficheru release %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Connecting to %s" -msgstr "Coneutando a %s" +msgid "No Hash entry in Release file %s" +msgstr "Ensin entrada Hash nel ficheru release %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/indexrecords.cc:130 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nun se pudo resolver '%s'" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrada inválida pa 'Valid-Until' nel ficheru release %s" -#: methods/connect.cc:205 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Fallu temporal al resolver '%s'" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrada inválida pa 'Date' nel ficheru release %s" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Llinia %lu mal formada na llista d'oríxe %s ([opción] nun parcheable)" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nun pudo coneutase a %s:%s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -"Fallu internu: Robla bona, pero nun se pudo determinar la so buelga dixital?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Atopóse polo menos una robla mala." - -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Nun pudo executase 'gpgv' pa verificar la robla (¿ta instaláu gpgv?)" +"Llinia %lu mal formada na llista d'oríxenes %s ([option] enforma curtia)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" +"Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun ye una asignación)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Fallu desconocíu al executar gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Les siguientes robles nun valieron:\n" - -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Les robles siguientes nun pudieron verificase porque la to llave pública nun " -"ta a mano:\n" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun tien clave)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" +"Llinia %lu mal formada na llista d'oríxenes %s ([%s] clave %s nun tien valor)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fallu al escribir nel ficheru" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón." +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (URI)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fallu al lleer nel sirvidor" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fallu al escribir nel ficheru" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Falló la escoyeta" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist absoluta)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Gandió'l tiempu de conexón" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís de dist)" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fallu al escribir nel ficheru de salida" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Abriendo %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Esperando les testeres" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Fallu na llinia testera" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "El sirvidor HTTP mandó una testera incorreuta de rempuesta" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Length" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Instalando %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Range" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Configurando %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Desinstalando %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formatu de data desconocíu" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Desinstalóse dafechu %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Datos de testera incorreutos" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Anotando desaniciáu de %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Fallo la conexón" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Executando activador de post-instalación de %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Fallu internu" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Falta'l direutoriu '%s'." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando l'anovamientu... " +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Nun pudo abrise'l ficheru '%s'" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Error internu, AllUpgrade rompió coses" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Preparando %s" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Fecho" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Desempaquetando %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Preparándose pa configurar %s" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s instaláu" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Preparing for removal of %s" +msgstr "Preparándose pa desinstalar %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Iguando dependencies..." +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s desinstaláu" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falló." +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Preparándose pa desinstalar dafechu %s" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nun pudieron iguase les dependencies" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Desinstalóse dafechu %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nun pue amenorgase'l conxuntu d'actualización" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fecho" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nun se pue escribir en %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Habríes d'executar 'apt-get -f install' para igualo." +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependencies incumplíes. Téntalo usando -f." +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Esperaba %s pero nun taba ellí" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instaláu]" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Ensin informe escritu d'apport porque MaxReports llegó dafechu" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instaláu]" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemes de dependencies - déxase ensin configurar" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu que " +"siguió dende un fallu previu" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instaláu]" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " +"discu llenu" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instaláu]" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " +"memoria" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " +"discu llenu" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu E/S " +"dpkg" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Los siguientes paquetes nun cumplen dependencies:" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Nun pudó bloquease'l direutoriu d'alministración (%s), ¿hai otru procesu " +"usándolu?" -#: apt-private/private-output.cc:442 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "but %s is installed" -msgstr "pero %s ta instaláu" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nun pudo bloquiase'l direutoriu d'alministración (%s), ¿yes root?" -#: apt-private/private-output.cc:444 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "but %s is to be installed" -msgstr "pero %s ta pa instalar" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg interrumpióse, tienes qu'executar manualmente '%s' pa iguar el " +"problema. " -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "pero nun ye instalable" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non bloquiáu" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "pero ye un paquete virtual" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" + +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "pero nun ta instaláu" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "pero nun va instalase" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " o" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Escoyeta %s que nun s'atopa" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Van instalase los siguientes paquetes NUEVOS:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu de sólo llectura %s" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Los siguientes paquetes van DESANICIASE:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nun puede abrise'l ficheru de bloquéu %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Los siguientes paquetes tan reteníos:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu %s montáu per nfs" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Los siguientes paquetes van actualizase:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Nun se pudo torgar %s" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Los siguientes paquetes van DESACTUALIZASE:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Van camudase los siguientes paquetes reteníos:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "%s (due to %s) " -msgstr "%s (por %s) " +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"AVISU: Los siguientes paquetes esenciales van desaniciase.\n" -"¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu actualizaos, %lu nuevos instalaos, " +msgid "Sub-process %s received a segmentation fault." +msgstr "El subprocesu %s recibió un fallu de segmentación." -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalaos, " +msgid "Sub-process %s received signal %u." +msgstr "El subprocesu %s recibió una señal %u." -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%lu downgraded, " -msgstr "%lu desactualizaos, " +msgid "Sub-process %s returned an error code (%u)" +msgstr "El subprocesu %s devolvió un códigu d'error (%u)" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu para desaniciar y %lu nun actualizaos.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "El subprocesu %s terminó de manera inesperada" + +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Fallu d'escritura" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nun instalaos dafechu o desaniciaos.\n" +msgid "Problem closing the gzip file %s" +msgstr "Problemes zarrando'l ficheru gzip %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nun se pudo abrir el ficheru %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nun pudo abrise un ficheru descriptor %d" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nun pudo criase'l soprocesu IPC" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nun pudo executase'l compresor " -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Error de compilación d'espresión regular - %s" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Fallu de llectura" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "La orde update nun lleva argumentos" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "lleíos, entá tenía de lleer %lu pero nun queda nada" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escritos, entá tenía d'escribir %lu pero nun pudo facerse" + +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Problem closing the file %s" +msgstr "Problemes zarrando'l ficheru %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Problem renaming the file %s to %s" +msgstr "Hai problemes al renomar el ficheru %s a %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Hai problemes desvenceyando'l ficheru %s" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Hai problemes al sincronizar el ficheru" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu." +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... ¡Fallu!" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Error internu, ordenar nun finó" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Fecho" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"Que raro... Los tamaños nun concasen, escribe a apt@packages.debian.org" -#. 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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Hai que descargar %sB/%sB d'archivos.\n" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fecho" -#. 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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Hai que descargar %sB d'archivos.\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nun se puede facer mmap d'un ficheru baleru" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Tres d'esta operación, van usase %sB d'espaciu de discu adicional.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nun pudo duplicase'l ficheru descriptor %i" -#. 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 -#: apt-private/private-install.cc:171 -#, c-format -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" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nun se pudo facer mmap de %lu bytes" -#: apt-private/private-install.cc:199 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Nun tienes espaciu libre bastante en %s." +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nun pudo zarrase mmap" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Hai problemes y utilizose -y ensin --force-yes" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nun se pudo sincronizase mmap " -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial." +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nun se pudo facer mmap de %lu bytes" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Sí, ¡facer lo que digo!" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falló al francer el ficheru" + +#: 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 "" +"Dynamic MMap escosó l'espaciu. Por favor aumenta'l tamañu de APT::Cache-" +"Start. El valor actual ye : %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Tas a piques de facer daqué potencialmente dañible.\n" -"Pa continuar escribe la frase '%s'\n" -" ?] " - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Encaboxar." - -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "¿Quies continuar?" - -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Dellos ficheros nun pudieron descargase" +"Nun pudó incrementase'l tamañu de MMap col llímite de %lu bytes ya torgáu" -#: apt-private/private-install.cc:319 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o " -"tentando --fix-missing?" +"Nun pudó incrementase'l tamañu de MMap ya que crecer automáticamente ta " +"desactivao pol usuariu." -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Nun puede algamase información del puntu de montaxe %s" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Nun pudieron iguase los paquetes que falten." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nun se pudo montar el CD-ROM" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Encaboxando la instalación." +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Triba d'abreviatura que nun se reconoz: «%c»" -#: apt-private/private-install.cc:365 -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] "" -"El siguiente paquete desapareció del sistema como\n" -"tolos ficheros fueron sobroescritos por otros paquetes:" -msgstr[1] "" -"Los siguientes paquetes desaparecieron del sistema como\n" -"tolos ficheros fueron sobroescritos por otros paquetes:" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Abriendo ficheros de configuración %s" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg." +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Fallu de sintaxis %s:%u: Nun hai un nome al entamu del bloque." -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Fallu de sintaxis %s:%u: Marca mal formada" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, paez que AutoRemover destruyó daqué, lo que nun tendría\n" -"por qué pasar. Por favor, unvía un informe de fallu escontra apt." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempués del valor" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "La siguiente información pue aidar a resolver la situación:" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Error de sintaxis %s:%u: Les directives pueden facese sólo nel nivel cimeru" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Error internu, AutoRemover rompió coses" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones añeraes" -#: apt-private/private-install.cc:512 -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] "El siguiente paquete instalóse mou automáticu y yá nun se necesita:" -msgstr[1] "" -"Los siguientes paquetes instaláronse de manera automática y ya nun se " -"necesiten:" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equí" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:897 #, 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] "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" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Error de sintaxis %s:%u: La directiva '%s' nun ta sofitada" -#: apt-private/private-install.cc:518 -#, 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." +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Fallu de sintaxis %s:%u: Directiva llimpia requier un tres opciones como " +"argumentos" -#: apt-private/private-install.cc:612 -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:" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Fallu de sintaxis %s:%u: Puxarra extra al final del ficheru" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o " -"conseña una solución)." +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "L'aniellu de claves nun s'instaló en %s." -#: apt-private/private-install.cc:628 -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 "" -"Dellos paquetes nun pudieron instalase. Esto puede significar que\n" -"conseñaste una situación imposible o, si tas usando la distribución\n" -"inestable, que dellos paquetes necesarios nun se crearon o que\n" -"s'allugaron fuera d'Incoming." +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "La opción de llinia d'ordes '%c' [de %s] ye desconocida." -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Paquetes frañaos" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Nun s'entiende la opción %s de la llinia d'ordes" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Instalaránse los siguientes paquetes extra:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "La opción %s de la llinia d'ordes nun ye un valor booleanu" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Paquetes afalaos:" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "La opción %s necesita un argumentu." -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Paquetes encamentaos" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =<val>." -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Saltando %s, ya ta instalau y la actualización nun ta activada.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "La opción %s pide un argumentu enteru, non '%s'" -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Saltando %s, nun ta instaláu y namái se requieren anovamientos.\n" +msgid "Option '%s' is too long" +msgstr "Opción '%s' enforma llarga" -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n" +msgid "Sense %s is not understood, try true or false." +msgstr "El sentíu %s nun s'entiende, prueba con braeru o falsu." -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s yá ta na versión más nueva.\n" +msgid "Invalid operation %s" +msgstr "Operación incorreuta: %s" -#: apt-private/private-install.cc:884 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Esbillada la versión %s (%s) pa %s\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "El paquete %s versión %s nun cumple una dependencia:\n" -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Esbillada la versión %s (%s) pa %s\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Total de nomes de paquetes: " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "El paquete %s nun ta instalau, nun va desaniciase\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Total de cadarmes de paquetes: " + +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquetes normales: " + +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquetes virtuales puros: " + +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquetes virtuales cenciellos: " + +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquetes virtuales amestaos: " -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "El paquete %s nun ta instalau, nun va desaniciase\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Falten: " -#: apt-private/private-main.cc:32 -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 "" -"NOTA: ¡Esto sólo ye una simulación!\n" -" apt-get necesita privilexos de root pa la execución real.\n" -" ¡Ten tamién en cuenta que'l bloquéu ta desactiváu,\n" -" asina que nun dependen de la pertinencia de la verdadera situación " -"actual!" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Versiones distintes en total: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Descripciones distintes en total: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avisu d'autenticación saltáu.\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Dependencies totales: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Dellos paquetes nun pudieron autenticase" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Rellaciones versión/ficheru en total: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "¿Instalar esos paquetes ensin verificación?" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Rellaciones descripción/ficheru en total: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Falló algamar %s %s\n" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Mapes de provisiones en total: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nun pudo renomase %s como %s" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Cadenes globalizaes en total: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espaciu de dependencies de versión en total: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Espaciu ociosu en total: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Oxe " +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Informe del total d'espaciu: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Des:" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "El ficheru de paquetes %s nun ta sincronizáu." -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nun s'alcontraron paquetes" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Has de dar polo menos un patrón de gueta" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Descargaos %sB en %s (%sB/s)\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Tresnando]" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Ficheros de paquete:" -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"Cambeu de mediu: Por favor meti'l discu etiquetáu\n" -" '%s'\n" -"na unidá '%s' y calca Intro\n" +"La caché nun ta sincronizada, nun puede facese x-ref a un ficheru de paquete" -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Nun ye a lleer %s" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquetes na chincheta:" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Nun se pudo cambiar a %s" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nun s'alcontró)" -#. 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 "Nun s'alcontró ficheru espeyu '%s'" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instaláu: " -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nun s'alcontró ficheru espeyu '%s'" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidatu: " -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nun s'alcontró ficheru espeyu '%s'" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(dengún)" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Espeyu: %s]" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Chincheta de paquetes: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Falló criar un tubu IPC al soprocesu" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabla de versiones:" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Conexón encaboxada prematuramente" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pa %s compiláu en %s %s\n" + +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Usu: apt-cache [opciones] orde\n" +" apt-cache [opciones] add ficheru1 [ficheru2 ...]\n" +" apt-cache [opciones] showpkg paq1 [paq2 ...]\n" +" apt-cache [opciones] showsrc paq1 [paq2 ...]\n" +"\n" +"apt-cache ye una ferramienta de baxu nivel usada pa remanar\n" +"ficheros de caché binarios d'APT y consultar información d'ellos\n" +"\n" +"Ordes:\n" +" add - Amesta un ficheru de paquete a la caché fonte\n" +" gencaches - Creal dambes cachés, la de paquetes y la de fontes\n" +" showpkg - Amuesa algo d'información xeneral d'un sólu paquete\n" +" showsrc - Amuesa los rexistros de fonte\n" +" stats - Amuesa dalgunes estadístiques básiques\n" +" dump - Amuesa'l ficheru ensembre en formatu tersu\n" +" dumpavail - Imprenta un ficheru disponible na salida estándar\n" +" unmet - Amuesa dependencies nun atopáes\n" +" search - Restola na llista de paquetes por el patrón d'una espresión " +"regular\n" +" show - Amuesa un rexistru lleíble pal paquete\n" +" showauto - Amouesa una llista de paquetes instalaos automáticamente\n" +" depends - Amuesa la información de dependencies en bruto d'un paquete\n" +" rdepends - Amuesa la información de dependencies inverses d'un paquete\n" +" pkgnames - Llista los nomes de tolos paquetes nel sistema\n" +" dotty - Xenera gráfiques del paquete pa GraphViz\n" +" xvcg - Xenera gráfiques del paquete pa xvcg\n" +" policy - Amuesa los axustes de les normes\n" +"\n" +"Opciones:\n" +" -h Esti testu d'aida.\n" +" -p=? La cache de paquetes.\n" +" -s=? La cache de fontes.\n" +" -q Desactiva l'indicador de progresu.\n" +" -i Amuesa sólo les dependencies importantes de la orde incumplida.\n" +" -c=? Lleer esti ficheru de configuración\n" +" -o=? Conseña una opción de configuración arbitraria, ex -o dir::cache=/" +"tmp\n" +"Ver les páxines del manual apt-cache(8) y apt.conf(5) pa más información.\n" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "¡Mal axuste por omisión!" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Da-y un nome a esti discu, como 'Debian 5.0.3 Discu 1'" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Calca Intro pa continuar." +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Inxerta un discu nel preséu y calca intro" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "¿Quies desaniciar los ficheros .deb descargaos previamente?" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Falló al montar '%s' a '%s'" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Ocurrieron dellos errores al desempaquetar. Los paquetes que s'instalaron " -"configurarse'l" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "van configurase. Esto pue causar errores duplicaos" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repite'l procesu colos demás CDs del conxuntu." -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"o fallos causaos por dependencies que nun tán. Esto ta BIEN, sólo los fallos" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentos non empareyaos" -#: dselect/install:105 +#: cmdline/apt-config.cc:89 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"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 "" -"enriba d'esti mensaxe son importante. Por favor, íguales y executa [I]nstall " -"otra vuelta" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Fusionando información disponible" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Llamóse a DropNode nun nodu que ta entá enllazáu" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "¡Fallu al atopar l'elementu enllazáu!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Falló al allugar una desvíu" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Fallu internu en AddDiversion" - -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Intentando sobrescribir un desvíu, %s -> %s and %s/%s" - -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doble suma de desvíu %s -> %s" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Ficheru de configuración duplicáu %s/%s" +"Usu: apt-config [opciones] orde\n" +"\n" +"apt-config ye una ferramienta pa lleer el ficheru de configuración d'APT.\n" +"\n" +"Ordes:\n" +" shell - Mou shell\n" +" dump - Amuesa la configuración\n" +"\n" +"Opciones:\n" +" -h Esti testu d'aida.\n" +" -c=? Llee esti ficheru de configuración\n" +" -o=? Conseña una opción de configuración arbitraria, p. ex.\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "La trayeutoria %s ye enforma llarga" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Desempaquetando %s más d'una vegada" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "El direutorio %s ta desviáu" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:367 #, 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" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Tomando '%s' como paquetes d'oríxenes en llugar de '%s'\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "La trayeutoria de desviación ye enforma llarga" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Inorar versión non disponible de '%s' del paquete '%s'" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Failed to stat %s" -msgstr "Nun pudo lleese %s" +msgid "Couldn't find package %s" +msgstr "Nun pudo alcontrase'l paquete %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nun pudo renomase %s como %s" +msgid "%s set to manually installed.\n" +msgstr "%s axustáu como instaláu manualmente.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, 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:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Fallu al atopar el nodu nel so bote d'enllaz" +msgid "%s set to automatically installed.\n" +msgstr "%s axustáu como instaláu automáticamente.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "La trayeutoria ye perllarga" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Sobreescribiendo concordancia del paquete ensin versión pa %s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Error internu, l'iguador de problemes frañó coses" -#: apt-inst/extract.cc:438 -#, 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" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nun pue bloquiase'l direutoriu de descarga" -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Nun ye a lleer %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to write file %s" -msgstr "Falló la escritura nel ficheru %s" +msgid "Unable to find a source package for %s" +msgstr "Nun pudo alcontrase un paquete fonte pa %s" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Failed to close file %s" -msgstr "Falló al pesllar el ficheru %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"AVISU: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 -#, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s'" +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Por favor, usa:\n" +"bzr get %s\n" +"pa baxar los caberos anovamientos (posiblemente tovía nun sacaos) pal " +"paquete.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Error internu, nun se pue atopar el miembru %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ficheru de control inanalizable" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Robla del ficheru inválida" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fallu al lleer la testera de miembru del ficheru" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Saltando'l ficheru yá descargáu '%s'\n" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Invalid archive member header %s" -msgstr "Testera de miembru del archivu %s inválida" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Testera de miembru del ficheru inválida" +msgid "Couldn't determine free space in %s" +msgstr "Nun pue determinase l'espaciu llibre de %s" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "El ficheru ye perpequeñu" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Nun hai espaciu llibre bastante en %s" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Falló al lleer les testeres del ficheru" +#. 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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Fallu al crear les tuberíes" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Hai falta descargar %sB d'archivos fonte.\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Fallu al executar gzip " +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Fonte descargada %s\n" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Ficheru tollíu" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Falló la descarga de dellos archivos." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Falló la suma de control de tar, ficheru tollíu" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Descarga completa y en mou de sólo descarga" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Testera del TAR triba %u desconocida, miembru %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Saltando'l desempaquetáu de la fonte yá desempaquetada en %s\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to stat %s." -msgstr "Nun pudo lleese %s." +msgid "Unpack command '%s' failed.\n" +msgstr "Falló la orde de desempaquetáu '%s'.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Executando dpkt" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "El sistema d'empaquetáu '%s' nun ta sofitáu" +msgid "Build command '%s' failed.\n" +msgstr "Falló la orde build '%s'.\n" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nun pudo determinase una triba de sistema d'empaquetáu afayadiza" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Falló el procesu fíu" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "Wrote %i records.\n" -msgstr "%i rexistros escritos.\n" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i rexistros escritos con %i ficheros de menos.\n" +msgid "Unable to get build-dependency information for %s" +msgstr "Nun pudo algamase información de dependencies de construcción pa %s" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i rexistros escritos con %i ficheros mal empareyaos\n" +msgid "%s has no build depends.\n" +msgstr "%s nun tien dependencies de construcción.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " +"paquete %s" + +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Escribiéronse %i rexistros con %i ficheros perdíos y %i ficheros que nun " -"concasen\n" +"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " +"paquete %s" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Nun puede alcontrase'l rexistru d'autenticación pa: %s" +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" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +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:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " +"paquete %s" + +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Hash mismatch for: %s" -msgstr "El hash nun concasa pa: %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "The method driver %s could not be found." -msgstr "Nun pudo alncontrase'l controlador de métodu %s." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Les dependencies de construcción de %s nun pudieron satisfacese." -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Fallu al procesar les dependencies de construcción" + +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" +msgid "Changelog for %s (%s)" +msgstr "Coneutando a %s (%s)" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "El métodu %s nun entamó correchamente" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Módulos sofitaos:" + +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Usu: apt-get [opciones] comandu\n" +" apt-get [opciones] install|remove pkg1 [pkg2 ...]\n" +" apt-get [opciones] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get ye una interface de llínia de comandos simple pa baxar ya\n" +"instalar paquetes. L'usu más frecuente de comandos ye p'anovar\n" +"ya instalar.\n" +"\n" +"Comandos:\n" +" update - Algamar nueva llista de paquetes\n" +" upgrade - Facer una anovación\n" +" install - Instalar nuevos paquetes (pkg ye libc6 non libc6.deb)\n" +" remove - Desaniciar paquetes\n" +" autoremove - Desaniciar automáticamente tolos paquetes non usaos\n" +" purge - Quitar y desaniciar paquetes\n" +" source - Baxar fonte del ficheru\n" +" build-dep - Configurar dependencies pa los paquetes fonte\n" +" dist-upgrade - Actualización de la distribución, ver apt-get(8)\n" +" dselect-upgrade - Siguir seleiciones dselect\n" +" clean - Esborrar los ficheros de ficheros baxaos\n" +" autoclean - Esborrar ficheros de ficheros vieyos baxaos\n" +" check - Verificar que nun hai dependencies frayaes\n" +" markauto - Marcar paquetes como automáticamente instalaos\n" +" unmarkauto - Marcar paquetes como manualmente instalaos\n" +"\n" +"Opciones:\n" +" -h Esti testu d'aida.\n" +" -q Salida Log - ensín indicación de progresu\n" +" -qq Ensín salida excepto pa fallos\n" +" -d Baxar sólo - NON instalar o desempaquetar los archivos\n" +" -s Non aición. Facer una simulación ordenada\n" +" -y Asumir Yes pa toles entruges y nun visualizar la petición\n" +" -f Intentar correxir un sistema con dependencies frayaes\n" +" -m Intentar siguir si los archivos nun tan disponibles\n" +" -u Amosar una lilsta de paquetes que tan bien\n" +" -b Facer el paquete fonte dempues d'algamalu\n" +" -V Amosar númberos de versiones\n" +" -c=? Lleer esti ficheru de configuración\n" +" -o=? Afitar una opción de configuración arbitraria, p. ex. -o dir::cache=/" +"tmp\n" +"Ver lés páxines de los manuales d' apt-get(8), sources.list(5) y apt." +"conf(5)\n" +"pa más información y opciones.\n" +" Esti APT tien Poderes de Super Vaca.\n" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Por favor, introduz el discu '%s' nel preséu '%s' y calca Intro." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Nun pudieron analizase o abrise les llistes de paquetes o el ficheru d'estáu." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Has d'executar apt-get update pa iguar estos problemes" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nun pudo lleese la llista de fontes." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Caché de paquetes balera." - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "El ficheru de caché de paquetes ta tollíu" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "El ficheru de caché de paquetes ye una versión incompatible" - -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "El ficheru de caché de paquetes ta tollíu" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Esti APT nun soporta'l sistema de versiones '%s'" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "La caché de paquetes creóse pa una arquitectura estremada" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "pero nun ta instaláu" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende de" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s axustáu como instaláu manualmente.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Predepende de" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s axustáu como instaláu automáticamente.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suxer" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s yá ta na versión más nueva.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomienda" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s yá ta na versión más nueva.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "En conflictu con" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s axustáu como instaláu manualmente.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Sustituye a" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Nun pudo abrise %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Fai obsoletu a" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ruempe" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Aumenta" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Nun se pudo lleer la base datos %s del CD-ROM" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requeríu" +#: 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 "" +"Por favor usa apt-cdrom pa facer qu'APT reconoza esti CD. apt-get update nun " +"se puede usar p'amestar CDs nuevos" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estándar" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM malu" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nun se pudo desmontar el CD-ROM de %s; puede que se tea usando entá." -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Nun s'atopa'l discu." -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Nun s'atopa'l ficheru." -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La caché tien un sistema de versiones incompatible" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Falló al lleer" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Hebo un error al procesar %s (FindPkg)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Nun se pudo afitar la hora de modificación" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Coime, perpasaste'l númberu de nomes de paquete qu'esti APT ye a remanar." +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI malu, los URIS llocales nun pueden entamar por //" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Vaya, perpasaste'l númberu de versiones coles que puede esti APT." +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Entrando" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Coime, perpasaste'l númberu de descripciones qu'esti APT ye a remanar." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nun se pudo determinar el nome del par" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nun se pudo determinar el nome llocal" -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, 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" +msgid "The server refused the connection and said: %s" +msgstr "El sirvidor refugó la conexón, y dixo: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:225 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s" +msgid "USER failed, server said: %s" +msgstr "L'usuariu (USER) falló; el sirvidor dixo: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lleendo llista de paquetes" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "La contraseña (PASS) falló; el sirvidor dixo: %s" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Recoyendo ficheros qu'apurren" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Especificóse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::" +"ProxyLogin ta baleru." -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:280 #, c-format -msgid "Unable to write to %s" -msgstr "Nun se pue escribir en %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Falló la orde '%s' del guión d'entrada; el sirvidor dixo: %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Fallu de E/S al grabar caché d'oríxenes" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "La triba (TYPE) falló; el sirvidor dixo: %s" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Gandió'l tiempu de conexón" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "El sirvidor zarró la conexón" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Una rempuesta revirtió'l buffer." -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corrupción del protocolu" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nun se pudo crear un socket" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falló'l cambiu de nome, %s (%s -> %s)." +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Nun se pudo coneutar el zócalu de datos; gandió'l tiempu de conexón" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "La suma hash nun concasa" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falló" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "El tamañu nun concasa" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nun se pudo coneutar un socket pasivu." -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operación incorreuta: %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo nun pudo obtener un zócalu oyente" -#: apt-pkg/acquire-item.cc:1581 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nun se pudo enllazar con un socket" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nun se pudo parchear el ficheru release %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nun se pudo escuchar nel socket" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Nun hai clave pública denguna disponible pa les IDs de clave darréu:\n" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nun se pudo determinar el nome del socket" + +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nun se pudo mandar la orde PORT" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Unknown address family %u (AF_*)" +msgstr "Direición de familia %u desconocida (AF_*)" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:811 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)" +msgid "EPRT failed, server said: %s" +msgstr "EPRT falló; el sirvidor dixo: %s" + +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Gandió'l tiempu de conexón col zócalu de datos" + +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nun se pudo aceptar la conexón" + +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Hebo un problema al xenerar el hash del ficheru" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Hebo un fallu durante la verificación de la robla. El repositoriu nun ta " -"anováu y va usase un ficheru índiz. Fallu GPG: %s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Nun se pudo descargar el ficheru; el sirvidor dixo '%s'" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Gandió'l tiempu del zócalu de datos" + +#: methods/ftp.cc:935 #, c-format -msgid "GPG error: %s: %s" -msgstr "Fallu GPG: %s: %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Falló la tresferencia de datos; el sirvidor dixo '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Consulta" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nun se pudo invocar " -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:76 #, 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 "" -"Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " -"necesites iguar manualmente esti paquete (por faltar una arquitectura)" +msgid "Connecting to %s (%s)" +msgstr "Coneutando a %s (%s)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:87 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:94 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Los ficheros d'indiz de paquetes tan corrompíos. Nun hai campu Filename: pal " -"paquete %s." +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)" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:100 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "El bloque de fornidor %s nun contién una buelga dixital" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nun se pudo coneutar a %s:%s (%s)." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:108 #, c-format -msgid "List directory %spartial is missing." -msgstr "Falta'l direutoriu de llistes %spartial." +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" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:126 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta'l direutoriu d'archivos %spartial." +msgid "Could not connect to %s:%s (%s)." +msgstr "Nun se pudo coneutar a %s:%s (%s)." -#: apt-pkg/acquire.cc:99 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Unable to lock directory %s" -msgstr "Nun pudo bloquiase'l direutoriu %s" +msgid "Connecting to %s" +msgstr "Coneutando a %s" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Descargando ficheru %li de %li (falten %s)" +msgid "Could not resolve '%s'" +msgstr "Nun se pudo resolver '%s'" + +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Fallu temporal al resolver '%s'" + +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%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)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Descargando ficheru %li de %li" +msgid "Unable to connect to %s:%s:" +msgstr "Nun pudo coneutase a %s:%s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Nun pudieron descargase dellos ficheros d'índiz; inoráronse o usáronse los " -"antiguos nel so llugar." +"Fallu internu: Robla bona, pero nun se pudo determinar la so buelga dixital?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Has de poner delles URIs 'fonte' nel ficheru sources.list" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Atopóse polo menos una robla mala." -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Nun pudo executase 'gpgv' pa verificar la robla (¿ta instaláu gpgv?)" -#: apt-pkg/policy.cc:422 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Rexistru inválidu nel ficheru de preferencies %s, nun hai cabecera Paquete" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Nun s'entiende'l tipu de pin %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Fallu desconocíu al executar gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nun hai prioridá (o ye cero) conseñada pa pin" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Les siguientes robles nun valieron:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" 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:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Nun pudo abrise'l ficheru '%s'" +"Les robles siguientes nun pudieron verificase porque la to llave pública nun " +"ta a mano:\n" -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"Esta execución d'instalación va requerir desaniciar temporalmente'l paquete " -"esencial %s por un cote de Conflictos/Pre-Dependencies. Esto normalmente ye " -"malo, pero si daveres quies facelo, activa la opción APT::Force-LoopBreak." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Llinia %u enforma llarga na llista d'oríxenes %s." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fallu al escribir nel ficheru" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando'l CD-ROM...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón." -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Usando el puntu de montaxe de CD-ROM %s\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fallu al lleer nel sirvidor" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Esperando'l discu...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fallu al escribir nel ficheru" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando'l CD-ROM...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Falló la escoyeta" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Gandió'l tiempu de conexón" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etiqueta guardada: %s\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fallu al escribir nel ficheru de salida" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Buscando nel discu ficheros d'índices...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Esperando les testeres" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Atopáu %zu indices de paquete, %zu indices de fonte, %zu indices de torna y " -"%zu firmes\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Fallu na llinia testera" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Nun s'alcuentra dengún paquete de ficheros, seique nun ye un Discu Debian o " -"hai una arquiteutura inválida?" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "El sirvidor HTTP mandó una testera incorreuta de rempuesta" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Atopóse la etiqueta: '%s'\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Length" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Esi nun ye un nome válidu; inténtalo otra vuelta.\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Range" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Esti discu llámase: \n" -"'%s'\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiando les llistes de paquetes..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formatu de data desconocíu" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Escribiendo llista nueva d'oríxenes\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Datos de testera incorreutos" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Les entraes de la llista d'oríxenes pa esti discu son:\n" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Fallo la conexón" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Fallu internu" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando l'anovamientu... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fecho" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola " -"mor de paquetes reteníos." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos reteníos." +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Creando árbol de dependencies" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Iguando dependencies..." + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " falló." + +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nun pudieron iguase les dependencies" + +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nun pue amenorgase'l conxuntu d'actualización" + +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fecho" + +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Habríes d'executar 'apt-get -f install' para igualo." -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versiones candidates" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependencies incumplíes. Téntalo usando -f." -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Xeneración de dependencies" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lleendo información d'estáu" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instaláu]" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Nun se pudo abrir el ficheru d'estáu %s" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instaláu]" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Falló la escritura del ficheru temporal d'estáu %s" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instaláu]" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nun se pudo tratar el ficheru de paquetes %s (2)" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instaláu]" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:249 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Nun s'alcontró la distribución '%s' pa '%s'" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Nun s'alcontró la versión '%s' pa '%s'" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/cacheset.cc:603 +#: apt-private/private-output.cc:435 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Nun pudo alcontrase la xera '%s'" +msgid "but %s is installed" +msgstr "pero %s ta instaláu" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:437 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" +msgid "but %s is to be installed" +msgstr "pero %s ta pa instalar" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "pero nun ye instalable" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Nun pueden seleicionase versiones pal paquete'%s' como puramente virtual" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "pero ye un paquete virtual" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Nun puede seleicionase l'instalador o versión candidata pal paquete '%s' " -"como non tien nengún d'ellos" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "pero nun ta instaláu" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Nun puede seleicionase la versión más nueva pal paquete'%s' como puramente " -"virtual" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "pero nun va instalase" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" -"Nun puede seleicionase versión candidata pal paquete %s que nun tien " -"candidata" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " o" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Nun puede seleicionase versión instalada pal paquete %s que nun ta instalada" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Los siguientes paquetes nun cumplen dependencies:" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Nun se pudo parchear el ficheru release %s" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Van instalase los siguientes paquetes NUEVOS:" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Ensin seiciones nel ficheru release %s" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Los siguientes paquetes van DESANICIASE:" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Ensin entrada Hash nel ficheru release %s" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Los siguientes paquetes tan reteníos:" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Entrada inválida pa 'Valid-Until' nel ficheru release %s" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Los siguientes paquetes van actualizase:" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Entrada inválida pa 'Date' nel ficheru release %s" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Los siguientes paquetes van DESACTUALIZASE:" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Van camudase los siguientes paquetes reteníos:" -#: apt-pkg/sourcelist.cc:170 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Llinia %lu mal formada na llista d'oríxe %s ([opción] nun parcheable)" +msgid "%s (due to %s) " +msgstr "%s (por %s) " -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Llinia %lu mal formada na llista d'oríxenes %s ([option] enforma curtia)" +"AVISU: Los siguientes paquetes esenciales van desaniciase.\n" +"¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!" -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun ye una asignación)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu actualizaos, %lu nuevos instalaos, " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun tien clave)" +msgid "%lu reinstalled, " +msgstr "%lu reinstalaos, " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Llinia %lu mal formada na llista d'oríxenes %s ([%s] clave %s nun tien valor)" +msgid "%lu downgraded, " +msgstr "%lu desactualizaos, " -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (URI)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu para desaniciar y %lu nun actualizaos.\n" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nun instalaos dafechu o desaniciaos.\n" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist absoluta)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís de dist)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Abriendo %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "La orde update nun lleva argumentos" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 #, 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" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instalando %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Desinstalando %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Error internu, ordenar nun finó" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Desinstalóse dafechu %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Que raro... Los tamaños nun concasen, escribe a apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:99 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Noting disappearance of %s" -msgstr "Anotando desaniciáu de %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Hai que descargar %sB/%sB d'archivos.\n" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Executando activador de post-instalación de %s" +msgid "Need to get %sB of archives.\n" +msgstr "Hai que descargar %sB d'archivos.\n" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Directory '%s' missing" -msgstr "Falta'l direutoriu '%s'." +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Tres d'esta operación, van usase %sB d'espaciu de discu adicional.\n" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file '%s'" -msgstr "Nun pudo abrise'l ficheru '%s'" +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" -#: apt-pkg/deb/dpkgpm.cc:989 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +msgid "You don't have enough free space in %s." +msgstr "Nun tienes espaciu libre bastante en %s." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Desempaquetando %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Hai problemes y utilizose -y ensin --force-yes" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Preparándose pa configurar %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial." -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s instaláu" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sí, ¡facer lo que digo!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:222 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparándose pa desinstalar %s" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Tas a piques de facer daqué potencialmente dañible.\n" +"Pa continuar escribe la frase '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s desinstaláu" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Encaboxar." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparándose pa desinstalar dafechu %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "¿Quies continuar?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Desinstalóse dafechu %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Dellos ficheros nun pudieron descargase" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o " +"tentando --fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nun se pue escribir en %s" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nun pudieron iguase los paquetes que falten." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Encaboxando la instalación." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:366 +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] "" +"El siguiente paquete desapareció del sistema como\n" +"tolos ficheros fueron sobroescritos por otros paquetes:" +msgstr[1] "" +"Los siguientes paquetes desaparecieron del sistema como\n" +"tolos ficheros fueron sobroescritos por otros paquetes:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Ensin informe escritu d'apport porque MaxReports llegó dafechu" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemes de dependencies - déxase ensin configurar" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu que " -"siguió dende un fallu previu" +"Hmm, paez que AutoRemover destruyó daqué, lo que nun tendría\n" +"por qué pasar. Por favor, unvía un informe de fallu escontra apt." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " -"discu llenu" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "La siguiente información pue aidar a resolver la situación:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Error internu, AutoRemover rompió coses" + +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " -"memoria" +"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] "El siguiente paquete instalóse mou automáticu y yá nun se necesita:" +msgstr[1] "" +"Los siguientes paquetes instaláronse de manera automática y ya nun se " +"necesiten:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:517 +#, 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] "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" + +#: apt-private/private-install.cc:519 #, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " -"discu llenu" +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." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu E/S " -"dpkg" +#: apt-private/private-install.cc:612 +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:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Nun pudó bloquease'l direutoriu d'alministración (%s), ¿hai otru procesu " -"usándolu?" - -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nun pudo bloquiase'l direutoriu d'alministración (%s), ¿yes root?" +"Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o " +"conseña una solución)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"dpkg interrumpióse, tienes qu'executar manualmente '%s' pa iguar el " -"problema. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non bloquiáu" +"Dellos paquetes nun pudieron instalase. Esto puede significar que\n" +"conseñaste una situación imposible o, si tas usando la distribución\n" +"inestable, que dellos paquetes necesarios nun se crearon o que\n" +"s'allugaron fuera d'Incoming." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquetes frañaos" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Instalaránse los siguientes paquetes extra:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquetes afalaos:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquetes encamentaos" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Escoyeta %s que nun s'atopa" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Saltando %s, ya ta instalau y la actualización nun ta activada.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu de sólo llectura %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Saltando %s, nun ta instaláu y namái se requieren anovamientos.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Nun puede abrise'l ficheru de bloquéu %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu %s montáu per nfs" +msgid "%s is already the newest version.\n" +msgstr "%s yá ta na versión más nueva.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Nun se pudo torgar %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Esbillada la versión %s (%s) pa %s\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Esbillada la versión %s (%s) pa %s\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "El paquete %s nun ta instalau, nun va desaniciase\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "El paquete %s nun ta instalau, nun va desaniciase\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" +"NOTA: ¡Esto sólo ye una simulación!\n" +" apt-get necesita privilexos de root pa la execución real.\n" +" ¡Ten tamién en cuenta que'l bloquéu ta desactiváu,\n" +" asina que nun dependen de la pertinencia de la verdadera situación " +"actual!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "El subprocesu %s recibió un fallu de segmentación." - -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "El subprocesu %s recibió una señal %u." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "El subprocesu %s devolvió un códigu d'error (%u)" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Avisu d'autenticación saltáu.\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "El subprocesu %s terminó de manera inesperada" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Dellos paquetes nun pudieron autenticase" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problemes zarrando'l ficheru gzip %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "¿Instalar esos paquetes ensin verificación?" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Nun se pudo abrir el ficheru %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Nun pudo renomase %s como %s" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Nun pudo abrise un ficheru descriptor %d" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nun pudo criase'l soprocesu IPC" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nun pudo executase'l compresor " +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Oxe " -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lleíos, entá tenía de lleer %lu pero nun queda nada" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Des:" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escritos, entá tenía d'escribir %lu pero nun pudo facerse" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problemes zarrando'l ficheru %s" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Hai problemes al renomar el ficheru %s a %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Descargaos %sB en %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Hai problemes desvenceyando'l ficheru %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Hai problemes al sincronizar el ficheru" +msgid " [Working]" +msgstr " [Tresnando]" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... ¡Fallu!" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Cambeu de mediu: Por favor meti'l discu etiquetáu\n" +" '%s'\n" +"na unidá '%s' y calca Intro\n" -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fecho" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "No mirror file '%s' found " +msgstr "Nun s'alcontró ficheru espeyu '%s'" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Fecho" +msgid "Can not read mirror file '%s'" +msgstr "Nun s'alcontró ficheru espeyu '%s'" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nun se puede facer mmap d'un ficheru baleru" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nun s'alcontró ficheru espeyu '%s'" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nun pudo duplicase'l ficheru descriptor %i" - -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nun se pudo facer mmap de %lu bytes" +msgid "[Mirror: %s]" +msgstr "[Espeyu: %s]" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nun pudo zarrase mmap" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Falló criar un tubu IPC al soprocesu" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nun se pudo sincronizase mmap " +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Conexón encaboxada prematuramente" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nun se pudo facer mmap de %lu bytes" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "¡Mal axuste por omisión!" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Falló al francer el ficheru" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Calca Intro pa continuar." -#: 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)" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "¿Quies desaniciar los ficheros .deb descargaos previamente?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Dynamic MMap escosó l'espaciu. Por favor aumenta'l tamañu de APT::Cache-" -"Start. El valor actual ye : %lu. (man 5 apt.conf)" +"Ocurrieron dellos errores al desempaquetar. Los paquetes que s'instalaron " +"configurarse'l" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "van configurase. Esto pue causar errores duplicaos" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Nun pudó incrementase'l tamañu de MMap col llímite de %lu bytes ya torgáu" +"o fallos causaos por dependencies que nun tán. Esto ta BIEN, sólo los fallos" -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Nun pudó incrementase'l tamañu de MMap ya que crecer automáticamente ta " -"desactivao pol usuariu." +"enriba d'esti mensaxe son importante. Por favor, íguales y executa [I]nstall " +"otra vuelta" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nun puede algamase información del puntu de montaxe %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Fusionando información disponible" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nun se pudo montar el CD-ROM" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Llamóse a DropNode nun nodu que ta entá enllazáu" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Triba d'abreviatura que nun se reconoz: «%c»" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "¡Fallu al atopar l'elementu enllazáu!" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Abriendo ficheros de configuración %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Falló al allugar una desvíu" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Fallu internu en AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Fallu de sintaxis %s:%u: Nun hai un nome al entamu del bloque." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Intentando sobrescribir un desvíu, %s -> %s and %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Fallu de sintaxis %s:%u: Marca mal formada" +msgid "Double add of diversion %s -> %s" +msgstr "Doble suma de desvíu %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempués del valor" +msgid "Duplicate conf file %s/%s" +msgstr "Ficheru de configuración duplicáu %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Error de sintaxis %s:%u: Les directives pueden facese sólo nel nivel cimeru" +msgid "The path %s is too long" +msgstr "La trayeutoria %s ye enforma llarga" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones añeraes" +msgid "Unpacking %s more than once" +msgstr "Desempaquetando %s más d'una vegada" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equí" +msgid "The directory %s is diverted" +msgstr "El direutorio %s ta desviáu" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Error de sintaxis %s:%u: La directiva '%s' nun ta sofitada" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "La trayeutoria de desviación ye enforma llarga" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Fallu de sintaxis %s:%u: Directiva llimpia requier un tres opciones como " -"argumentos" +msgid "Failed to stat %s" +msgstr "Nun pudo lleese %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Fallu de sintaxis %s:%u: Puxarra extra al final del ficheru" +msgid "Failed to rename %s to %s" +msgstr "Nun pudo renomase %s como %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "L'aniellu de claves nun s'instaló en %s." +msgid "The directory %s is being replaced by a non-directory" +msgstr "El direutoriu %s ta reemplazándose por un non-direutoriu" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Fallu al atopar el nodu nel so bote d'enllaz" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "La trayeutoria ye perllarga" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "La opción de llinia d'ordes '%c' [de %s] ye desconocida." +msgid "Overwrite package match with no version for %s" +msgstr "Sobreescribiendo concordancia del paquete ensin versión pa %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Nun s'entiende la opción %s de la llinia d'ordes" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "El ficheru %s/%s sobreescribe al que ta nel paquete %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "La opción %s de la llinia d'ordes nun ye un valor booleanu" +msgid "Unable to stat %s" +msgstr "Nun ye a lleer %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "La opción %s necesita un argumentu." +msgid "Failed to write file %s" +msgstr "Falló la escritura nel ficheru %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =<val>." +msgid "Failed to close file %s" +msgstr "Falló al pesllar el ficheru %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "La opción %s pide un argumentu enteru, non '%s'" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s'" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Opción '%s' enforma llarga" +msgid "Internal error, could not locate member %s" +msgstr "Error internu, nun se pue atopar el miembru %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ficheru de control inanalizable" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Robla del ficheru inválida" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fallu al lleer la testera de miembru del ficheru" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "El sentíu %s nun s'entiende, prueba con braeru o falsu." +msgid "Invalid archive member header %s" +msgstr "Testera de miembru del archivu %s inválida" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Testera de miembru del ficheru inválida" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "El ficheru ye perpequeñu" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Falló al lleer les testeres del ficheru" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Fallu al crear les tuberíes" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Fallu al executar gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Ficheru tollíu" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Falló la suma de control de tar, ficheru tollíu" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Operación incorreuta: %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Testera del TAR triba %u desconocida, miembru %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3557,7 +3561,7 @@ msgstr "Nun pudo lleese al computar MD5" msgid "Problem unlinking %s" msgstr "Problema al desenllazar %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3612,6 +3616,10 @@ msgstr "" "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::\n" "cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Error internu, AllUpgrade rompió coses" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s nun ye un paquete DEB válidu." diff --git a/po/bg.po b/po/bg.po index 00affd028..d91def5f9 100644 --- a/po/bg.po +++ b/po/bg.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-06-25 17:23+0300\n" "Last-Translator: Damyan Ivanov <dmn@debian.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" @@ -21,3253 +21,3257 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: KBabel 1.11.4\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Не се поддържа индексен файл от типа „%s“" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Пакетът %s версия %s има неудовлетворена зависимост:\n" +msgid "Unable to read %s" +msgstr "Неуспех при четенето на %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Общо имена на пакети : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Неуспех при преминаването в %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Общо пакетни структури: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Неуспех при получаването на атрибути на %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Нормални пакети: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Чисти виртуални пакети: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Изпълняване на dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Единични виртуални пакети: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Пакетната система „%s“ не е поддържана" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Смесени виртуални пакети: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Неуспех при определянето на подходяща пакетна система" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Липсващи: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Записани са %i записа.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Общо уникални версии: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Записани са %i записа с %i липсващи файла.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Общо уникални описания: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Записани са %i записа с %i несъответстващи файла\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Общо зависимости: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Записани са %i записа с %i липсващи и %i несъответстващи файла\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Общо отношения версия/файл: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Не е намерен oторизационен запис за: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Общо отношения описание/файл: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Несъответствие на контролната сума за: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Общо отношения „Осигурява“: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Неуспех при намирането на драйвер за метод %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Общо разгърнати низове: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Общо пространство за зависимости по версии: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Методът %s не стартира правилно" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Общо празно пространство: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Сложете диска, озаглавен „%s“ в устройство „%s“ и натиснете „Enter“." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Общо отчетено пространство: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Списъците с пакети или файлът за състояние не можаха да бъдат анализирани " +"или отворени." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Пакетният файл %s не е синхронизиран." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Може да искате да изпълните „apt-get update“, за да коригирате тези проблеми" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Няма намерени пакети" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Списъкът с източници не можа да бъде прочетен." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Трябва да въведете поне един шаблон за търсене" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Празен кеш на пакети" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Тази командата е остаряла. Използвайте „apt-mark showauto“ вместо нея." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Файлът за кеш на пакети е повреден" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Файлът за кеш на пакети е несъвместима версия" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Файлът за кеш на пакети е повреден, твърде малък е" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Пакетът %s не може да бъде намерен" +msgid "This APT does not support the versioning system '%s'" +msgstr "Тази версия на APT не поддържа система за версии „%s“" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Пакетни файлове:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Кешът на пакети е бил направен за различна архитектура" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Кешът не е синхронизиран, не може да се изпълни „x-ref“ на пакетен файл" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Зависи от" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Отбити пакети:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Предварително зависи от" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(не са намерени)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Предлага се" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Инсталирана: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Препоръчва се" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Кандидат: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "В конфликт с" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(няма)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Заменя" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Отбиване на пакета: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Изважда от употреба" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Таблица с версиите:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Чупи" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s за %s компилиран на %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Подобрява" -#: cmdline/apt-cache.cc:1749 -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 "" -"Употреба: apt-cache [опции] команда\n" -" apt-cache [опции] showpkg пакет1 [пакет2 ...]\n" -" apt-cache [опции] showsrc пакет1 [пакет2 ...]\n" -"\n" -"apt-cache е инструмент на ниско ниво за извличане на информация от\n" -"двоичните кеш файлове на APT\n" -"\n" -"Команди:\n" -" gencaches - Генериране на кеша на пакети и пакети с изходен код\n" -" showpkg - Показване на обща информация за даден пакет\n" -" showsrc - Показване на записите за пакети с изходен код\n" -" stats - Показване на някои общи статистики\n" -" dump - Показване на целия файл в сбит вид\n" -" dumpavail - Извеждане на достъпните пакети на стандартния изход\n" -" unmet - Показване на неудовлетворените зависимости\n" -" search - Търсене в списъка с пакети за регулярен израз\n" -" show - Показване на записа за пакет\n" -" depends - Необработена информация за зависимостите на даден пакет\n" -" rdepends - Информация за обратните зависимости на даден пакет\n" -" pkgnames - Списък с имената на всички пакети, за които има информация\n" -" dotty - Генериране на графики на пакети за GraphViz\n" -" xvcg - Генериране на графики на пакети за xvcg\n" -" policy - Показване на настройките на политиката\n" -"\n" -"Опции:\n" -" -h Този помощен текст.\n" -" -p=? Кешът за пакети.\n" -" -s=? Кешът за пакети с изходен код.\n" -" -q Премахване на индикатора за напредък.\n" -" -i Показване само на важни зависимости при командата „unmet“.\n" -" -c=? Указване на файл с настройки.\n" -" -o=? Настройване на произволна конфигурационна опция, например -o dir::" -"cache=/tmp\n" -"За повече информация вижте наръчниците apt-cache(8) и apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "важен" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Укажете име за този диск, например „Debian 5.0.3 Disk1“" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "изискван" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Сложете диск в устройството и натиснете „Enter“" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "стандартен" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "незадължителен" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "допълнителен" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Неуспех при монтиране на %s на %s" +msgid "Index file type '%s' is not supported" +msgstr "Не се поддържа индексен файл от типа „%s“" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Грешка при компилирането на регулярния израз - %s" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Повторете този процес за останалите дискове от комплекта." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Кешът има несъвместима система за версии" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -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:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Възникна грешка при обработката на %s (%s%d)" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Употреба: apt-config [опции] команда\n" -"\n" -"apt-config е опростен инструмент за четене на конфигурационния файл на APT\n" -"\n" -"Команди:\n" -" shell - Режим с обвивка\n" -" dump - Показва конфигурацията\n" -"\n" -"Опции:\n" -" -h Този помощен текст.\n" -" -c=? Четене на този конфигурационен файл.\n" -" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/" -"tmp\n" +"Еха, надхвърлихте броя имена на пакети, на който е способна тази версия на " +"APT." -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Еха, надхвърлихте броя описания, на който е способна тази версия на APT." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Еха, надхвърлихте броя зависимости, на който е способна тази версия на APT." -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Използване на пакет източник „%s“ вместо „%s“\n" - -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Игнориране на несъществуваща версия „%s“ на пакета „%s“" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Пакетът %s %s не беше открит при обработката на файла със зависимости" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't find package %s" -msgstr "Неуспех при намирането на пакет %s" +msgid "Couldn't stat source package list %s" +msgstr "" +"Неуспех при получаването на атрибути на списъка с пакети с изходен код %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s е отбелязан като ръчно инсталиран.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Четене на списъците с пакети" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Събиране на информация за „Осигурява“" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s е отбелязан като автоматично инсталиран.\n" +msgid "Unable to write to %s" +msgstr "Неуспех при записа на %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Тази команда е остаряла. Вместо нея използвайте „apt-mark auto“ и „apt-mark " -"manual“." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Входно/изходна грешка при запазването на кеша на пакети с изходен код" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Изпращане на сценарий към програмата за удовлетворяване на зависимости" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Неуспех при заключването на директорията за изтегляне" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Изпращане на заявка към програмата за удовлетворяване на зависимости" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Подготовка за приемане на решение" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" +"Външната програма за удовлетворяване на зависимости се провали без да изведе " +"съобщение за грешка" + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Изпълняване на външна програма за удовлетворяване на зависимости" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Неуспех при намирането на изходен код на пакет %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "преименуването се провали, %s (%s -> %s)." -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Несъответствие на контролната сума" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Несъответствие на размера" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Невалидна операция %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Пакетирането на „%s“ се разработва в система за контрол на версиите „%s“ на " -"адрес:\n" -"%s\n" +"Не може да се открие елемент „%s“ във файла Release (объркан ред в sources." +"list или повреден файл)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Не е открита контролна сума за „%s“ във файла Release" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Няма налични публични ключове за следните идентификатори на ключове:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Използвайте:\n" -"bzr branch %s\n" -"за да изтеглите последните промени в пакета (евентуално в процес на " -"разработка).\n" +"Файлът със служебна информация за „%s“ е остарял (валиден до %s). Няма да се " +"прилагат обновявания от това хранилище." -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Пропускане на вече изтегления файл „%s“\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Конфликт в дистрибуцията: %s (очаквана: %s, намерена: %s)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Неуспех при определянето на свободното пространство в %s" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Грешка при проверка на цифровия подпис. Хранилището не е обновено и ще се " +"използват старите индексни файлове. Грешка от GPG: %s: %s\n" -#: cmdline/apt-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Нямате достатъчно свободно пространство в %s" +msgid "GPG error: %s: %s" +msgstr "Грешка от GPG: %s: %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:891 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n" +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. Това може да означава, че трябва " +"ръчно да оправите този пакет (поради пропусната архитектура)." -#. 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:896 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Не е открит източник, от който да се изтегли версия „%s“ на „%s“" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Fetch source %s\n" -msgstr "Изтегляне на изходен код %s\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Индексните файлове на пакета са повредени. Няма поле Filename: за пакет %s." -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Неуспех при изтеглянето на някои архиви." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Блокът на производителя %s не съдържа отпечатък" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Изтеглянето завърши в режим само на изтегляне" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Директорията със списъци %spartial липсва." -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "" -"Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n" +msgid "Archives directory %spartial is missing." +msgstr "Директорията за архиви %spartial липсва." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Командата за разпакетиране „%s“ пропадна.\n" +msgid "Unable to lock directory %s" +msgstr "Неуспех при заключване на директорията %s" -#: cmdline/apt-get.cc:963 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Изтегляне на файл %li от %li (остават %s)" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Командата за компилиране „%s“ пропадна.\n" +msgid "Retrieving file %li of %li" +msgstr "Изтегляне на файл %li от %li" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Процесът-потомък пропадна" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Неуспех при изтеглянето на %s %s\n" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Трябва да укажете поне един пакет за проверка на зависимости за компилиране" +"Някои индексни файлове не можаха да бъдат изтеглени. Те са пренебрегнати или " +"са използвани по-стари." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Трябва да добавите адреси-URI от тип „source“ в sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Липсва информация за архитектурата %s. Прегледайте информацията за APT::" -"Architectures в apt.conf(5)." +"Стойността „%s“ на APT::Default-Release не е правилна, понеже в източниците " +"няма такова издание" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "" -"Неуспех при получаването на информация за зависимостите за компилиране на %s" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Невалиден запис във файла с настройки %s, липсва заглавна част Package" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s няма зависимости за компилиране.\n" +msgid "Did not understand pin type %s" +msgstr "Неизвестен тип за отбиване %s" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, %s не се позволява " -"за пакети „%s“" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Няма указан приоритет (или е нула) на отбиването" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " -"не може да бъде намерен" +"Неуспех при незабавната настройка на „%s“. За повече информация вижте " +"информацията за APT::Immediate-Configure в „man 5 apt.conf“. (%d)" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният " -"пакет %s е твърде нов" +msgid "Could not configure '%s'. " +msgstr "Неуспех при конфигуриране на „%s“. " -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"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 "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже версията " -"кандидат на пакета %s не може да удовлетвори изискването за версия" +"В следствие на циклични зависимости от типа „В конфликт с/Предварително " +"зависи от“, за да се продължи инсталацията трябва да се премахне необходимия " +"пакет %s. Това често е лошо, но ако наистина искате да го направите, " +"активирайте опцията APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " -"няма подходящи версии" +msgid "Line %u too long in source list %s." +msgstr "Ред %u в списъка с източници %s е твърде дълъг." -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Неуспех при удовлетворяването на зависимост %s за пакета %s: %s" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Демонтиране на CD-ROM...\n" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Зависимостите за компилиране на %s не можаха да бъдат удовлетворени." +msgid "Using CD-ROM mount point %s\n" +msgstr "Използване на точка за монтиране на CD-ROM %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Неуспех при обработката на зависимостите за компилиране" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Чакане за диск...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Монтиране на CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Идентифициране..." + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Журнал на промените в %s (%s)" +msgid "Stored label: %s\n" +msgstr "Запазен етикет: %s \n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Поддържани модули:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Сканиране на диска за индексни файлове...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Употреба: apt-get [опции] команда\n" -" apt-get [опции] install|remove пакет1 [пакет2 ...]\n" -" apt-get [опции] source пакет1 [пакет2 ...]\n" -"\n" -"apt-get е опростен интерфейс за командния ред за изтегляне и\n" -"инсталиране на пакети. Най-често използваните команди са „update“\n" -"и „install“.\n" -"\n" -"Команди:\n" -" update - Изтегляне на нови списъци с пакети\n" -" upgrade - Обновяване на системата\n" -" install - Инсталиране на нови пакети (пакет е libc6, а не libc6.deb)\n" -" remove - Премахване на пакети\n" -" autoremove - Автоматично премахване на всички неизползвани пакети\n" -" purge - Премахване на пакети, включително файловете им с настройки\n" -" source - Изтегляне на изходен код на пакети\n" -" build-dep - Конфигуриране на зависимостите за компилиране на пакети от\n" -" изходен код\n" -" dist-upgrade - Обновяване на дистрибуцията, вж. apt-get(8)\n" -" dselect-upgrade - Следване на избора на dselect\n" -" clean - Изтриване на изтеглените файлове\n" -" autoclean - Изтриване на стари изтеглени файлове\n" -" check - Проверка за неудовлетворени зависимости\n" -" changelog - Изтегляне и показване на журнала с промени в даден пакет\n" -" download - Изтегляне на двоичен пакет в текущата директория\n" -"\n" -"Опции:\n" -" -h Този помощен текст.\n" -" -q Изход на съобщения, подходящи за журнал - без индикатор на напредъка\n" -" -qq Без извеждане на съобщения, освен при грешки\n" -" -d Само изтегляне - БЕЗ инсталиране или разпакетиране на архивите\n" -" -s Без действие. Симулиране на действията.\n" -" -y Отговаряне с „Да“ на всички въпроси, без питане\n" -" -f Опит за поправяне на неудовлетворени зависимости\n" -" -m Опит за продължаване дори и ако архивите са неоткриваеми\n" -" -u Показване и на списък с пакетите за актуализиране\n" -" -b Компилиране на изходния код на пакета след изтеглянето му\n" -" -V Показване на подробна информация за версиите\n" -" -c=? Четене на този конфигурационен файл\n" -" -o=? Настройване на произволна конфигурационна опция,\n" -" напр. -o dir::cache=/tmp\n" -"Вижте наръчниците за apt-get(8), sources.list(5) и apt.conf(5) за повече\n" -"информация и опции.\n" -" Това APT има Върховни Сили.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Намерени са %zu индекса на пакети, %zu индекса на пакети с изходен код, %zu " +"индекса с преводи и %zu подписа.\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Не са намерени файлове с пакети. Мое би дискът не е с Дебиан или е за " +"погрешна компютърна архитектура." -#: cmdline/apt-mark.cc:68 -#, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "Пакетът „%s“ не може да бъде маркиран, защото не е инсталиран.\n" - -#: cmdline/apt-mark.cc:74 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "Пакетът „%s“ вече е отбелязан като ръчно инсталиран.\n" +msgid "Found label '%s'\n" +msgstr "Намерен е етикет „%s“\n" -#: cmdline/apt-mark.cc:76 -#, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "Пакетът „%s“ вече е отбелязан като автоматично инсталиран.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Това не е валидно име, опитайте отново.\n" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "%s was already set on hold.\n" -msgstr "Пакетът „%s“ вече е задуржан.\n" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Наименование на този диск: \n" +"„%s“\n" -#: cmdline/apt-mark.cc:243 -#, c-format -msgid "%s was already not hold.\n" -msgstr "Пакетът „%s“ вече е задържан.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Копиране на списъците с пакети..." -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Изчака се завършването на %s, но той не беше пуснат" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Запазване на новия списък с източници\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, c-format -msgid "%s set on hold.\n" -msgstr "Пакетът „%s“ е задържан.\n" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Записите в списъка с източници за този диск са:\n" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Отмяна на задържането на пакета „%s“.\n" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Неуспех при изпълняване на dpkg. Имате ли административни права?" - -#: cmdline/apt-mark.cc:392 -#, fuzzy 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Употреба: apt-mark [опции] {auto|manual} пкт1 [пкт2 …]\n" -"\n" -"apt-mark предоставя команден интерфейс за маркиране на пакети\n" -"като инсталирани ръчно или автоматично. Предлага се и показване\n" -"на текущата маркировка.\n" -"\n" -"Команди:\n" -" auto — Маркиране на пакети като инсталирани автоматично\n" -" manual — Маркиране на пакети като инсталирани ръчно\n" -"\n" -"Опции:\n" -" -h Тази помощна информация\n" -" -q Изход без информация за напредъка, подходящ за съхраняване\n" -" -qq Без изход, освен при грешки\n" -" -s Симулация. Само се извежда какво би било направено\n" -" -f Четене/запис на информацията за маркировката от указания файл\n" -" -c=? Указване на файл с настройки\n" -" -o=? Указване на произволна настройка, напр. -o dir::cache=/tmp\n" -"За повече информация прегледайте ръководствата apt-mark(8) и apt.conf(5)." +"Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за " +"него." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е " +"причинено от задържани пакети." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Неуспех при четенето на базата %s със CD-ROM" - -#: 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" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -"Използвайте „apt-cdrom“, за да може този CD-ROM да се разпознава от APT. " -"„apt-get update“ не може да се използва за добавяне на нови дискове" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Грешен CD-ROM" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Неуспех при демонтирането на CD-ROM в %s, може все още да се използва." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Дискът не е намерен." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Файлът не е намерен" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Неуспех при получаването на атрибути" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Неуспех при задаването на време на промяна" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Невалиден адрес-URI, локалните адреси-URI не трябва да започват с „//“" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Влизане" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Неуспех при установяването на името на отдалечения сървър" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Неуспех при установяването на локалното име" - -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Сървърът отказа свързване и съобщи: %s" +"Неуспех при коригирането на проблемите, имате задържани счупени пакети." -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "USER се провали, сървърът съобщи: %s" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Изграждане на дървото със зависимости" -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS се провали, сървърът съобщи: %s" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Версии кандидати" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Беше указан сървър-посредник, но няма скрипт за влизане, Acquire::ftp::" -"ProxyLogin е празен." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Генериране на зависимости" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Командата „%s“ на скрипта за влизане се провали, сървърът съобщи: %s" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Четене на информацията за състоянието" -#: methods/ftp.cc:306 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE се провали, сървърът съобщи: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Допустимото време за свързването изтече" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Сървърът разпадна връзката" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Грешка при четене" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Отговорът препълни буфера." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Развален протокол" - -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Грешка при запис" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Неуспех при създаването на гнездо" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Неуспех при свързването на гнездо за данни, допустимото време за свързване " -"изтече" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Неуспех" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Неуспех при свързването на пасивно гнездо." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo не успя да се добере до слушащо гнездо" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Неуспех при свързването на гнездо" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Неуспех при слушането на гнездото" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Неуспех при определянето на името на гнездото" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Неуспех при изпращането на командата PORT" +msgid "Failed to open StateFile %s" +msgstr "Неуспех при отварянето на StateFile %s" -#: methods/ftp.cc:802 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Неизвестно семейство адреси %u (AF_*)" +msgid "Failed to write temporary StateFile %s" +msgstr "Неуспех при запис на временен StateFile %s" -#: methods/ftp.cc:811 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT се провали, сървърът съобщи: %s" +msgid "Unable to parse package file %s (1)" +msgstr "Неуспех при анализирането на пакетен файл %s (1)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Времето за установяване на връзка с гнездо за данни изтече" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Неуспех при анализирането на пакетен файл %s (2)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Невъзможно е да се приеме свързването" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Не е намерено издание „%s“ на „%s“" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Проблем при хеширане на файла" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Не е намерена версия „%s“ на „%s“" -#: methods/ftp.cc:890 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Неуспех при изтеглянето на файла, сървърът съобщи „%s“" +msgid "Unable to locate package %s" +msgstr "Пакетът %s не може да бъде намерен" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Времето за връзка с гнездо за данни изтече" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Неуспех при намиране на задача „%s“" -#: methods/ftp.cc:935 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Неуспех при прехвърлянето на данни, сървърът съобщи: „%s“" +msgid "Couldn't find any package by regex '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Запитване" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Неуспех при извикването на " +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Не е възможно избиране на версия за пакета „%s“ понеже е виртуален" -#: methods/connect.cc:76 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Свързване с %s (%s)" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Не е възможно избиране на инсталирана или кандидат версия за пакета „%s“ " +"понеже той няма нито едната" -#: methods/connect.cc:87 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Не е възможно избиране на на последната версия за пакета „%s“, защото е " +"виртуален" -#: methods/connect.cc:94 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Неуспех при създаването на гнездо за %s (f=%u t=%u p=%u)" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Не е възможно избиране на кандидат-версия за пакета „%s“, защото няма " +"подходящ кандидати" -#: methods/connect.cc:100 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Не може да се започне свързване с %s:%s (%s)." +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Не е възможно избиране на инсталирана версия на пакета „%s“, защото не е " +"инсталиран" -#: methods/connect.cc:108 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Неуспех при свързване с %s:%s (%s), допустимото време изтече" +msgid "Unable to parse Release file %s" +msgstr "Неуспех при анализиране на файл Release %s" -#: methods/connect.cc:126 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Неуспех при свързване с %s:%s (%s)." +msgid "No sections in Release file %s" +msgstr "Във файла Release %s липсват раздели" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Connecting to %s" -msgstr "Свързване с %s" +msgid "No Hash entry in Release file %s" +msgstr "Във файла Release %s липсва контролна сума" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/indexrecords.cc:130 #, c-format -msgid "Could not resolve '%s'" -msgstr "Неуспех при намирането на IP адреса на „%s“" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Неправилна стойност за „Valid-Until“ във файла Release %s" -#: methods/connect.cc:205 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Временен неуспех при намирането на IP адреса на „%s“" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Неправилна стойност за „Date“ във файла Release %s" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s (неразбираема [опция])" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Неуспех при свързване с %s:%s:" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s (твърде кратка [опция])" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -"Вътрешна грешка: Валиден подпис, но не може да се провери отпечатъка на " -"ключа?!" +"Лошо форматиран ред %lu в списъка с източници %s ([%s] не е присвояване)" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Намерен е поне един невалиден подпис." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (липсва ключ в [%s])" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Неуспех при изпълнение на „gpgv“ за проверка на подписа (инсталиран ли е " -"gpgv?)" +"Лошо форматиран ред %lu в списъка с източници %s ([%s] ключът %s няма " +"стойност)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (адрес-URI)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Неизвестна грешка при изпълнението на gpgv" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (дистрибуция)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Следните подписи са невалидни:\n" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -"Следните подписи не можаха да бъдат проверени, защото публичния ключ не е " -"наличен:\n" +"Лошо форматиран ред %lu в списъка с източници %s (неограничена дистрибуция)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Празни файлове не могат да бъдат валидни архиви" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s (анализ на дистрибуция)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Грешка при записа на файла" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Отваряне на %s" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Грешка при четене от сървъра. Отдалеченият сървър прекъсна връзката" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Лошо форматиран ред %u в списъка с източници %s (тип)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Грешка при четене от сървъра" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Грешка при записа на файл" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Неуспех на избора" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Инсталиране на %s" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Конфигуриране на %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Допустимото време за свързване изтече" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Премахване на %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Грешка при записа на изходен файл" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Окончателно премахване на %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Чакане на заглавни части" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Отбелязване на изчезването на %s" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Невалиден ред на заглавна част" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Изпълнение на тригер след инсталиране %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP сървърът изпрати невалидна заглавна част като отговор" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Директорията „%s“ липсва" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Length“" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Неуспех при отваряне на файла „%s“" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Range“" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Подготвяне на %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP сървърът няма поддръжка за прехвърляне на фрагменти на файлове" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Разпакетиране на %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Неизвестен формат на дата" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Подготвяне на %s за конфигуриране" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Невалидни данни на заглавната част" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s е инсталиран" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Неуспех при свързването" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Подготвяне за премахване на %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Вътрешна грешка" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s е премахнат" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Изчисляване на актуализацията..." +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Подготовка за пълно премахване на %s" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Вътрешна грешка, „AllUpgrade“ счупи нещо в системата" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s е напълно премахнат" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Готово" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Неуспех при записа на %s" + +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Коригиране на зависимостите..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " пропадна." +msgid "Waited for %s but it wasn't there" +msgstr "Изчака се завършването на %s, но той не беше пуснат" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Неуспех при коригирането на зависимостите" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Операцията е прекъсната" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Неуспех при минимизирането на набора актуализации" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Поради достигане на максималния брой доклади (MaxReports) не е записан нов " +"доклад за зависимостите." -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Готово" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "отлагане на настройката поради неудовлетворени зависимости" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Възможно е да изпълните „apt-get -f install“, за да коригирате тези " -"неизправности." - -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Неудовлетворени зависимости. Опитайте с „-f“." +"Доклад за зависимостите не е записан защото съобщението за грешка е породено " +"от друга грешка." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" +"Доклад за зависимостите не е записан защото грешката е причинена от " +"недостатъчно дисково пространство" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Инсталиран]" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Доклад за зависимостите не е записан защото грешката е причинена от " +"недостатъчна оперативна памет" -#: apt-private/private-output.cc:237 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 #, fuzzy -msgid "[installed,local]" -msgstr " [Инсталиран]" - -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" +"Доклад за зависимостите не е записан защото грешката е причинена от " +"недостатъчно дисково пространство" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Инсталиран]" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Доклад за зависимостите не е записан поради входно-изходна грешка с dpkg" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Инсталиран]" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Неуспех при заключване на административната директория (%s). Може би се " +"използва от друг процес?" -#: apt-private/private-output.cc:248 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "[upgradable from: %s]" +msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" +"Неуспех при заключване на административната директория (%s). Може би липсват " +"административни права?" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" +"Процесът dpkg е беше прекъснат. Проблемът трябва да се коригира чрез ръчно " +"изпълнение на „%s“." -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Следните пакети имат неудовлетворени зависимости:" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Без заключване" -#: apt-private/private-output.cc:442 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "but %s is installed" -msgstr "но е инсталиран %s" +msgid "%lid %lih %limin %lis" +msgstr "%liд %liч %liм %liс" -#: apt-private/private-output.cc:444 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "but %s is to be installed" -msgstr "но ще бъде инсталиран %s" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "но той не може да бъде инсталиран" - -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "но той е виртуален пакет" +msgid "%lih %limin %lis" +msgstr "%liч %liм %liс" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "но той не е инсталиран" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liм %liс" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "но той няма да бъде инсталиран" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liс" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " или" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Изборът %s не е намерен" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Следните НОВИ пакети ще бъдат инсталирани:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Не се използва заключване за файл за заключване %s, който е само за четене" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Следните пакети ще бъдат ПРЕМАХНАТИ:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Неуспех при отварянето на файл за заключване %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Следните пакети няма да бъдат променени:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Не се използва заключване за файл за заключване %s, който е монтиран по NFS" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Следните пакети ще бъдат актуализирани:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Неуспех при достъпа до заключване %s" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Следните пакети ще бъдат ВЪРНАТИ КЪМ ПО-СТАРА ВЕРСИЯ:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Не може да се създаде списък от файлове, защото „%s“ не е директория" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Следните задържани пакети ще бъдат променени:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Пропускане на „%s“ в директорията „%s“, понеже не е обикновен файл" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "%s (due to %s) " -msgstr "%s (поради %s) " +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Пропускане на файла „%s“ в директорията „%s“, понеже няма разширение" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"ПРЕДУПРЕЖДЕНИЕ: Следните необходими пакети ще бъдат премахнати.\n" -"Това НЕ би трябвало да става освен ако знаете точно какво правите!" +"Пропускане на файла „%s“ в директорията „%s“, понеже разширението му е грешно" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu актуализирани, %lu нови инсталирани, " +msgid "Sub-process %s received a segmentation fault." +msgstr "Нарушение на защитата на паметта (segmentation fault) в подпроцеса %s." -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu преинсталирани, " +msgid "Sub-process %s received signal %u." +msgstr "Под-процесът %s получи сигнал %u." -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%lu downgraded, " -msgstr "%lu върнати към по-стара версия, " +msgid "Sub-process %s returned an error code (%u)" +msgstr "Подпроцесът %s върна код за грешка (%u)" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu за премахване и %lu без промяна.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Подпроцесът %s завърши неочаквано" + +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Грешка при запис" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu не са напълно инсталирани или премахнати.\n" +msgid "Problem closing the gzip file %s" +msgstr "Проблем при затваряне на компресираният файл %s (gzip)" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[Y/n]" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Неуспех при отварянето на файла %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Неуспех при отварянето на файлов манипулатор %d" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Неуспех при създаването на подпроцес IPC" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Неуспех при изпълнението на компресиращата програма " + +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Грешка при четене" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "Regex compilation error - %s" -msgstr "Грешка при компилирането на регулярния израз - %s" +msgid "read, still have %llu to read but none left" +msgstr "" +"грешка при четене, все още има %llu за четене, но няма нито един останал" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Командата „update“ не възприема аргументи" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "грешка при запис, все още име %llu за запис, но не успя" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Problem closing the file %s" +msgstr "Проблем при затваряне на файла %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Problem renaming the file %s to %s" +msgstr "Проблем при преименуване на файла %s на %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Проблем при изтриване на файла %s" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при счупени пакети!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Проблем при синхронизиране на файла" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Трябва да бъдат премахнати пакети, но премахването е изключено." +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Грешка!" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Вътрешна грешка, „Ordering“ не завърши" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Готово" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"Странно... Размерите не съвпадат, изпратете е-поща на apt@packages.debian.org" -#. 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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Необходимо е да се изтеглят %sB/%sB архиви.\n" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Готово" -#. 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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Необходимо е да се изтеглят %sB архиви.\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"След тази операция ще бъде използвано %sB допълнително дисково " -"пространство.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Неуспех при дублиране на файлов манипулатор %i" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "След тази операция ще бъде освободено %sB дисково пространство.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Неуспех при прехвърлянето в паметта на %llu байта" -#: apt-private/private-install.cc:199 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Нямате достатъчно свободно пространство в %s." +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Неуспех при затваряне на mmap" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Има проблеми и „-y“ е използвано без „--force-yes“" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Неуспех при синхронизирането на mmap" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Указано е „Trivial Only“, но това не е тривиална операция." +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Неуспех при прехвърлянето в паметта на %lu байта" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Да, прави каквото казвам!" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Неуспех при отрязване на края на файла" + +#: 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 "" +"Недостатъчна памет за MMap. Увеличете стойността на променливата APT::Cache-" +"Start. Текуща стойност: %lu (man 5 apt.conf)" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"На път сте да направите нещо потенциално опасно.\n" -"За да продължите, въведете фразата „%s“\n" -" ?] " - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Прекъсване." - -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Искате ли да продължите?" - -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Някои файлове не можаха да бъдат изтеглени" +"Неуспех при увеличаване на паметта за MMap. Достигнато е текущото " +"ограничение от %lu байта." -#: apt-private/private-install.cc:319 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Неуспех при изтеглянето на някои архиви, може да изпълните „apt-get update“ " -"или да опитате с „--fix-missing“?" +"Неуспех при увеличаване на паметта за MMap. Автоматичното увеличаване е " +"забранено от потребителя." -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "„--fix-missing“ и превключване на носители не се поддържа все още" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Неуспех при намирането на атрибутите на точка за монтиране %s" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Неуспех при коригирането на липсващите пакети." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Неуспех при намирането на атрибутите на cdrom" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Прекъсване на инсталирането." +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Неизвестен тип на абревиатура: „%c“" -#: apt-private/private-install.cc:365 -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] "" -"Следният пакет е отстранен от системата поради препокриване на всичките му " -"файлове от други пакети:" -msgstr[1] "" -"Следните пакети са отстранени от системата поради препокриване на всичките " -"им файлове от други пакети:" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Отваряне на конфигурационен файл %s" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Това се прави автоматично от dpkg." +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Синтактична грешка %s:%u: В началото на блока няма име." -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Не би трябвало да се изтрива. AutoRemover няма да бъде стартиран" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Синтактична грешка %s:%u: Лошо форматиран таг" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Хм, изглежда AutoRemover скапа нещо, а това не би трябвало\n" -"да се случва. Съобщете за грешка в пакета apt." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Синтактична грешка %s:%u: Излишни символи след стойността" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Следната информация може да помогне за намиране на изход от ситуацията:" - -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Вътрешна грешка, AutoRemover счупи нещо в системата" - -#: apt-private/private-install.cc:512 -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] "Следният пакет е бил инсталиран автоматично и вече не е необходим:" -msgstr[1] "" -"Следните пакети са били инсталирани автоматично и вече не са необходими:" +"Синтактична грешка %s:%u: Директиви могат да се задават само в най-горното " +"ниво" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:884 #, 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" -msgstr[1] "" -"%lu пакета са били инсталирани автоматично и вече не са необходими:\n" - -#: apt-private/private-install.cc:518 -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“ за да ги премахнете." +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Синтактична грешка %s:%u: Твърде много вложени „include“" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или " -"укажете разрешение)." +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Синтактична грешка %s:%u: Неподдържана директива „%s“" -#: apt-private/private-install.cc:628 -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." +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Някои пакети не можаха да бъдат инсталирани. Това може да означава,\n" -"че сте изискали невъзможна ситуация или ако използвате нестабилната\n" -"дистрибуция, че някои необходими пакети още не са създадени или пък\n" -"са били преместени от Incoming." +"Синтактична грешка %s:%u: директивата clear изисква аргумент дърво от опции" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Счупени пакети" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Синтактична грешка %s:%u: Излишни символи в края на файла" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Следните допълнителни пакети ще бъдат инсталирани:" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "В %s няма инсталиран ключодържател." -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Предложени пакети:" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Неизвестна опция за команден ред „%c“ [от %s]." -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Препоръчвани пакети:" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Опцията за команден ред %s не е разпозната" -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Пропускане на %s, вече е инсталиран и не е маркиран за актуализация.\n" +msgid "Command line option %s is not boolean" +msgstr "Опцията за команден ред %s не е булева" -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Пропускане на %s, който не е инсталиран при заявени само обновявания.\n" +msgid "Option %s requires an argument." +msgstr "Опция %s изисква аргумент." -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Преинсталацията на %s не е възможна, не може да бъде изтеглен.\n" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Опция %s: Значението трябва да има =<val>." -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s вече е най-новата версия.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Опция %s изисква аргумент цяло число, не „%s“" -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Избрана е версия %s (%s) за %s\n" +msgid "Option '%s' is too long" +msgstr "Опция „%s“ е твърде дълга" -#: apt-private/private-install.cc:889 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Избрана е версия „%s“ (%s) за „%s“ заради „%s“\n" +msgid "Sense %s is not understood, try true or false." +msgstr "Смисълът %s не е ясен, опитайте true или false." -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Пакетът „%s“ не е инсталиран, така че не е премахнат. Може би имахте предвид " -"„%s“?\n" +msgid "Invalid operation %s" +msgstr "Невалидна операция %s" -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Пакетът „%s“ не е инсталиран, така че не е премахнат\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Пакетът %s версия %s има неудовлетворена зависимост:\n" -#: apt-private/private-main.cc:32 -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 "" -"Забележка: това е само симулация!\n" -" apt-get има нужда от административни права за да работи.\n" -" Заключването е деактивирано, така че не разчитайте\n" -" на повтаряемост в реална ситуация." +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Общо имена на пакети : " + +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Общо пакетни структури: " + +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Нормални пакети: " + +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Чисти виртуални пакети: " + +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Единични виртуални пакети: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ПРЕДУПРЕЖДЕНИЕ: Следните пакети не могат да бъдат удостоверени!" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Смесени виртуални пакети: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Предупреждението за удостоверяването е пренебрегнато.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Липсващи: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Някои пакети не можаха да бъдат удостоверени" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Общо уникални версии: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Инсталиране на тези пакети без проверка?" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Общо уникални описания: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Неуспех при изтеглянето на %s %s\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Общо зависимости: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Неуспех при преименуването на %s на %s" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Общо отношения версия/файл: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Общо отношения описание/файл: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Общо отношения „Осигурява“: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Поп " +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Общо разгърнати низове: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Изт:" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Общо пространство за зависимости по версии: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Игн " +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Общо празно пространство: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Грш " +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Общо отчетено пространство: " -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Изтеглени %sB за %s (%sB/сек)\n" +msgid "Package file %s is out of sync." +msgstr "Пакетният файл %s не е синхронизиран." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [В процес на работа]" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Няма намерени пакети" -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Смяна на носител: сложете диска с етикет\n" -" „%s“\n" -"в устройството „%s“ и натиснете „Enter“\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Неуспех при четенето на %s" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Тази командата е остаряла. Използвайте „apt-mark showauto“ вместо нея." -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Неуспех при преминаването в %s" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Пакетни файлове:" -#. 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“ на огледалния сървър не е намерен " +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Кешът не е синхронизиран, не може да се изпълни „x-ref“ на пакетен файл" -#. 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 "Грешка при четене файла „%s“ от огледалния сървър" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Отбити пакети:" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Грешка при четене файла „%s“ от огледалния сървър" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(не са намерени)" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Огледален сървър: %s]" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Инсталирана: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Неуспех при създаването на IPC pipe към подпроцеса" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Кандидат: " -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Връзката прекъсна преждевременно" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(няма)" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Лоша стандартна настройка!" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Отбиване на пакета: " -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Натиснете „Enter“, за да продължите." +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Таблица с версиите:" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Желаете ли да изтриете изтеглените пакетни файлове?" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s за %s компилиран на %s %s\n" + +#: cmdline/apt-cache.cc:1749 +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 "" +"Употреба: apt-cache [опции] команда\n" +" apt-cache [опции] showpkg пакет1 [пакет2 ...]\n" +" apt-cache [опции] showsrc пакет1 [пакет2 ...]\n" +"\n" +"apt-cache е инструмент на ниско ниво за извличане на информация от\n" +"двоичните кеш файлове на APT\n" +"\n" +"Команди:\n" +" gencaches - Генериране на кеша на пакети и пакети с изходен код\n" +" showpkg - Показване на обща информация за даден пакет\n" +" showsrc - Показване на записите за пакети с изходен код\n" +" stats - Показване на някои общи статистики\n" +" dump - Показване на целия файл в сбит вид\n" +" dumpavail - Извеждане на достъпните пакети на стандартния изход\n" +" unmet - Показване на неудовлетворените зависимости\n" +" search - Търсене в списъка с пакети за регулярен израз\n" +" show - Показване на записа за пакет\n" +" depends - Необработена информация за зависимостите на даден пакет\n" +" rdepends - Информация за обратните зависимости на даден пакет\n" +" pkgnames - Списък с имената на всички пакети, за които има информация\n" +" dotty - Генериране на графики на пакети за GraphViz\n" +" xvcg - Генериране на графики на пакети за xvcg\n" +" policy - Показване на настройките на политиката\n" +"\n" +"Опции:\n" +" -h Този помощен текст.\n" +" -p=? Кешът за пакети.\n" +" -s=? Кешът за пакети с изходен код.\n" +" -q Премахване на индикатора за напредък.\n" +" -i Показване само на важни зависимости при командата „unmet“.\n" +" -c=? Указване на файл с настройки.\n" +" -o=? Настройване на произволна конфигурационна опция, например -o dir::" +"cache=/tmp\n" +"За повече информация вижте наръчниците apt-cache(8) и apt.conf(5).\n" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Възникнаха някои грешки при разпакетирането. инсталираните пакети" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Укажете име за този диск, например „Debian 5.0.3 Disk1“" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "ще бъдат конфигурирани. Това може да доведе до дублирани грешки" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Сложете диск в устройството и натиснете „Enter“" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"или грешки, причинени от липсващи зависимости. Това е нормално, само грешките" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Неуспех при монтиране на %s на %s" -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"над това съобщение за важни. Коригирайте ги и изпълнете [I]nstall наново" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Смесване на наличната информация" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Извикан е DropNode за все още използван възел" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Грешка при намирането на хеш-елемента!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Неуспех при установяване на отклонението" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Повторете този процес за останалите дискове от комплекта." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Вътрешна грешка в AddDiversion" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Аргументите не са по двойки" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Опит за изменение на отклонение, %s -> %s и %s/%s" +#: cmdline/apt-config.cc:89 +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 "" +"Употреба: apt-config [опции] команда\n" +"\n" +"apt-config е опростен инструмент за четене на конфигурационния файл на APT\n" +"\n" +"Команди:\n" +" shell - Режим с обвивка\n" +" dump - Показва конфигурацията\n" +"\n" +"Опции:\n" +" -h Този помощен текст.\n" +" -c=? Четене на този конфигурационен файл.\n" +" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/" +"tmp\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Двойно добавяне на отклонение %s -> %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Дублиран конфигурационен файл %s/%s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Пътят %s е твърде дълъг" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Unpacking %s more than once" -msgstr "Разпакетиране на %s повече от веднъж" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Използване на пакет източник „%s“ вместо „%s“\n" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Директорията %s е отклонена" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Игнориране на несъществуваща версия „%s“ на пакета „%s“" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:454 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Пакетът се опитва да пише в целта за отклонение %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Пътят за отклонение е твърде дълъг" +msgid "Couldn't find package %s" +msgstr "Неуспех при намирането на пакет %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Failed to stat %s" -msgstr "Грешка при получаването на атрибути за %s" +msgid "%s set to manually installed.\n" +msgstr "%s е отбелязан като ръчно инсталиран.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Неуспех при преименуването на %s на %s" +msgid "%s set to automatically installed.\n" +msgstr "%s е отбелязан като автоматично инсталиран.\n" -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Директорията %s се заменя с не-директория" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Тази команда е остаряла. Вместо нея използвайте „apt-mark auto“ и „apt-mark " +"manual“." -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Неуспех при намирането на възел в неговия хеш" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Пътят е твърде дълъг" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Неуспех при заключването на директорията за изтегляне" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Файловете се заменят със съдържанието на пакета %s без версия" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Файл %s/%s заменя този в пакет %s" +msgid "Unable to find a source package for %s" +msgstr "Неуспех при намирането на изходен код на пакет %s" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Unable to stat %s" -msgstr "Неуспех при получаването на атрибути за %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"Пакетирането на „%s“ се разработва в система за контрол на версиите „%s“ на " +"адрес:\n" +"%s\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Failed to write file %s" -msgstr "Неуспех при запис на файл %s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Използвайте:\n" +"bzr branch %s\n" +"за да изтеглите последните промени в пакета (евентуално в процес на " +"разработка).\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Failed to close file %s" -msgstr "Неуспех при затварянето на файл %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Пропускане на вече изтегления файл „%s“\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Това не е валиден DEB архив, липсва елемент „%s“" +msgid "Couldn't determine free space in %s" +msgstr "Неуспех при определянето на свободното пространство в %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Вътрешна грешка, неуспех при намирането на съставна част %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Контролен файл, невъзможен за анализ" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Невалиден подпис на архива" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Грешка при четене на заглавната част на елемента на архива" +msgid "You don't have enough free space in %s" +msgstr "Нямате достатъчно свободно пространство в %s" -#: apt-inst/contrib/arfile.cc:96 +#. 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:891 #, c-format -msgid "Invalid archive member header %s" -msgstr "Невалидна заглавна част %s на елемента на архива" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Невалидна заглавна част на елемента на архива" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Архивът е твърде кратък" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Неуспех при създаването на програмни канали" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Изтегляне на изходен код %s\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Неуспех при изпълнението на gzip" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Неуспех при изтеглянето на някои архиви." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Развален архив" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Изтеглянето завърши в режим само на изтегляне" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Невярна контролна сума на tar, развален архив" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "" +"Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Непозната заглавна част на TAR тип %u, елемент %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Командата за разпакетиране „%s“ пропадна.\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to stat %s." -msgstr "Неуспех при получаването на атрибути на %s." +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Progress: [%3i%%]" +msgid "Build command '%s' failed.\n" +msgstr "Командата за компилиране „%s“ пропадна.\n" + +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Процесът-потомък пропадна" + +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" msgstr "" +"Трябва да укажете поне един пакет за проверка на зависимости за компилиране" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Изпълняване на dpkg" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Липсва информация за архитектурата %s. Прегледайте информацията за APT::" +"Architectures в apt.conf(5)." -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Пакетната система „%s“ не е поддържана" +msgid "Unable to get build-dependency information for %s" +msgstr "" +"Неуспех при получаването на информация за зависимостите за компилиране на %s" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Неуспех при определянето на подходяща пакетна система" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s няма зависимости за компилиране.\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Wrote %i records.\n" -msgstr "Записани са %i записа.\n" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Зависимост %s за пакета %s не може да бъде удовлетворена, %s не се позволява " +"за пакети „%s“" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Записани са %i записа с %i липсващи файла.\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " +"не може да бъде намерен" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Записани са %i записа с %i несъответстващи файла\n" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният " +"пакет %s е твърде нов" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Записани са %i записа с %i липсващи и %i несъответстващи файла\n" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже версията " +"кандидат на пакета %s не може да удовлетвори изискването за версия" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Не е намерен oторизационен запис за: %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " +"няма подходящи версии" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Несъответствие на контролната сума за: %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Неуспех при удовлетворяването на зависимост %s за пакета %s: %s" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "The method driver %s could not be found." -msgstr "Неуспех при намирането на драйвер за метод %s." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Зависимостите за компилиране на %s не можаха да бъдат удовлетворени." -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Неуспех при обработката на зависимостите за компилиране" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Method %s did not start correctly" -msgstr "Методът %s не стартира правилно" +msgid "Changelog for %s (%s)" +msgstr "Журнал на промените в %s (%s)" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Сложете диска, озаглавен „%s“ в устройство „%s“ и натиснете „Enter“." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Поддържани модули:" + +#: cmdline/apt-get.cc:1632 +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 "" +"Употреба: apt-get [опции] команда\n" +" apt-get [опции] install|remove пакет1 [пакет2 ...]\n" +" apt-get [опции] source пакет1 [пакет2 ...]\n" +"\n" +"apt-get е опростен интерфейс за командния ред за изтегляне и\n" +"инсталиране на пакети. Най-често използваните команди са „update“\n" +"и „install“.\n" +"\n" +"Команди:\n" +" update - Изтегляне на нови списъци с пакети\n" +" upgrade - Обновяване на системата\n" +" install - Инсталиране на нови пакети (пакет е libc6, а не libc6.deb)\n" +" remove - Премахване на пакети\n" +" autoremove - Автоматично премахване на всички неизползвани пакети\n" +" purge - Премахване на пакети, включително файловете им с настройки\n" +" source - Изтегляне на изходен код на пакети\n" +" build-dep - Конфигуриране на зависимостите за компилиране на пакети от\n" +" изходен код\n" +" dist-upgrade - Обновяване на дистрибуцията, вж. apt-get(8)\n" +" dselect-upgrade - Следване на избора на dselect\n" +" clean - Изтриване на изтеглените файлове\n" +" autoclean - Изтриване на стари изтеглени файлове\n" +" check - Проверка за неудовлетворени зависимости\n" +" changelog - Изтегляне и показване на журнала с промени в даден пакет\n" +" download - Изтегляне на двоичен пакет в текущата директория\n" +"\n" +"Опции:\n" +" -h Този помощен текст.\n" +" -q Изход на съобщения, подходящи за журнал - без индикатор на напредъка\n" +" -qq Без извеждане на съобщения, освен при грешки\n" +" -d Само изтегляне - БЕЗ инсталиране или разпакетиране на архивите\n" +" -s Без действие. Симулиране на действията.\n" +" -y Отговаряне с „Да“ на всички въпроси, без питане\n" +" -f Опит за поправяне на неудовлетворени зависимости\n" +" -m Опит за продължаване дори и ако архивите са неоткриваеми\n" +" -u Показване и на списък с пакетите за актуализиране\n" +" -b Компилиране на изходния код на пакета след изтеглянето му\n" +" -V Показване на подробна информация за версиите\n" +" -c=? Четене на този конфигурационен файл\n" +" -o=? Настройване на произволна конфигурационна опция,\n" +" напр. -o dir::cache=/tmp\n" +"Вижте наръчниците за apt-get(8), sources.list(5) и apt.conf(5) за повече\n" +"информация и опции.\n" +" Това APT има Върховни Сили.\n" + +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Списъците с пакети или файлът за състояние не можаха да бъдат анализирани " -"или отворени." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Може да искате да изпълните „apt-get update“, за да коригирате тези проблеми" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Списъкът с източници не можа да бъде прочетен." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Празен кеш на пакети" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Файлът за кеш на пакети е повреден" +#: cmdline/apt-mark.cc:68 +#, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "Пакетът „%s“ не може да бъде маркиран, защото не е инсталиран.\n" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Файлът за кеш на пакети е несъвместима версия" +#: cmdline/apt-mark.cc:74 +#, c-format +msgid "%s was already set to manually installed.\n" +msgstr "Пакетът „%s“ вече е отбелязан като ръчно инсталиран.\n" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Файлът за кеш на пакети е повреден, твърде малък е" +#: cmdline/apt-mark.cc:76 +#, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "Пакетът „%s“ вече е отбелязан като автоматично инсталиран.\n" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Тази версия на APT не поддържа система за версии „%s“" +msgid "%s was already set on hold.\n" +msgstr "Пакетът „%s“ вече е задуржан.\n" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Кешът на пакети е бил направен за различна архитектура" +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" +msgstr "Пакетът „%s“ вече е задържан.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Зависи от" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, c-format +msgid "%s set on hold.\n" +msgstr "Пакетът „%s“ е задържан.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Предварително зависи от" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, c-format +msgid "Canceled hold on %s.\n" +msgstr "Отмяна на задържането на пакета „%s“.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Предлага се" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Неуспех при изпълняване на dpkg. Имате ли административни права?" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Препоръчва се" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Употреба: apt-mark [опции] {auto|manual} пкт1 [пкт2 …]\n" +"\n" +"apt-mark предоставя команден интерфейс за маркиране на пакети\n" +"като инсталирани ръчно или автоматично. Предлага се и показване\n" +"на текущата маркировка.\n" +"\n" +"Команди:\n" +" auto — Маркиране на пакети като инсталирани автоматично\n" +" manual — Маркиране на пакети като инсталирани ръчно\n" +"\n" +"Опции:\n" +" -h Тази помощна информация\n" +" -q Изход без информация за напредъка, подходящ за съхраняване\n" +" -qq Без изход, освен при грешки\n" +" -s Симулация. Само се извежда какво би било направено\n" +" -f Четене/запис на информацията за маркировката от указания файл\n" +" -c=? Указване на файл с настройки\n" +" -o=? Указване на произволна настройка, напр. -o dir::cache=/tmp\n" +"За повече информация прегледайте ръководствата apt-mark(8) и apt.conf(5)." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "В конфликт с" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Заменя" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Неуспех при четенето на базата %s със CD-ROM" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Изважда от употреба" +#: 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 "" +"Използвайте „apt-cdrom“, за да може този CD-ROM да се разпознава от APT. " +"„apt-get update“ не може да се използва за добавяне на нови дискове" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Чупи" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Грешен CD-ROM" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Подобрява" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Неуспех при демонтирането на CD-ROM в %s, може все още да се използва." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "важен" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Дискът не е намерен." -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "изискван" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Файлът не е намерен" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "стандартен" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Неуспех при получаването на атрибути" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "незадължителен" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Неуспех при задаването на време на промяна" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "допълнителен" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Невалиден адрес-URI, локалните адреси-URI не трябва да започват с „//“" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Не се поддържа индексен файл от типа „%s“" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Влизане" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Кешът има несъвместима система за версии" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +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:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Възникна грешка при обработката на %s (%s%d)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Неуспех при установяването на локалното име" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Еха, надхвърлихте броя имена на пакети, на който е способна тази версия на " -"APT." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Сървърът отказа свързване и съобщи: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER се провали, сървърът съобщи: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Еха, надхвърлихте броя описания, на който е способна тази версия на APT." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS се провали, сървърът съобщи: %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Еха, надхвърлихте броя зависимости, на който е способна тази версия на APT." +"Беше указан сървър-посредник, но няма скрипт за влизане, Acquire::ftp::" +"ProxyLogin е празен." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Пакетът %s %s не беше открит при обработката на файла със зависимости" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Командата „%s“ на скрипта за влизане се провали, сървърът съобщи: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "" -"Неуспех при получаването на атрибути на списъка с пакети с изходен код %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE се провали, сървърът съобщи: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Четене на списъците с пакети" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Допустимото време за свързването изтече" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Събиране на информация за „Осигурява“" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Сървърът разпадна връзката" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Неуспех при записа на %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Отговорът препълни буфера." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Входно/изходна грешка при запазването на кеша на пакети с изходен код" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Развален протокол" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Изпращане на сценарий към програмата за удовлетворяване на зависимости" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Неуспех при създаването на гнездо" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Изпращане на заявка към програмата за удовлетворяване на зависимости" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Неуспех при свързването на гнездо за данни, допустимото време за свързване " +"изтече" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Подготовка за приемане на решение" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Неуспех" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" -"Външната програма за удовлетворяване на зависимости се провали без да изведе " -"съобщение за грешка" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Неуспех при свързването на пасивно гнездо." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Изпълняване на външна програма за удовлетворяване на зависимости" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo не успя да се добере до слушащо гнездо" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "преименуването се провали, %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Неуспех при свързването на гнездо" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Несъответствие на контролната сума" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Неуспех при слушането на гнездото" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Несъответствие на размера" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Неуспех при определянето на името на гнездото" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Невалидна операция %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Неуспех при изпращането на командата PORT" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Не може да се открие елемент „%s“ във файла Release (объркан ред в sources." -"list или повреден файл)" +msgid "Unknown address family %u (AF_*)" +msgstr "Неизвестно семейство адреси %u (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Не е открита контролна сума за „%s“ във файла Release" +msgid "EPRT failed, server said: %s" +msgstr "EPRT се провали, сървърът съобщи: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Няма налични публични ключове за следните идентификатори на ключове:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Времето за установяване на връзка с гнездо за данни изтече" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Файлът със служебна информация за „%s“ е остарял (валиден до %s). Няма да се " -"прилагат обновявания от това хранилище." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Невъзможно е да се приеме свързването" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Конфликт в дистрибуцията: %s (очаквана: %s, намерена: %s)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Проблем при хеширане на файла" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Грешка при проверка на цифровия подпис. Хранилището не е обновено и ще се " -"използват старите индексни файлове. Грешка от GPG: %s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Неуспех при изтеглянето на файла, сървърът съобщи „%s“" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "Грешка от GPG: %s: %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Времето за връзка с гнездо за данни изтече" -#: apt-pkg/acquire-item.cc:1867 +#: methods/ftp.cc:935 #, 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. Това може да означава, че трябва " -"ръчно да оправите този пакет (поради пропусната архитектура)." +msgid "Data transfer failed, server said '%s'" +msgstr "Неуспех при прехвърлянето на данни, сървърът съобщи: „%s“" -#: apt-pkg/acquire-item.cc:1933 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Не е открит източник, от който да се изтегли версия „%s“ на „%s“" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Запитване" -#: apt-pkg/acquire-item.cc:1991 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Индексните файлове на пакета са повредени. Няма поле Filename: за пакет %s." +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Неуспех при извикването на " -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:76 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Блокът на производителя %s не съдържа отпечатък" +msgid "Connecting to %s (%s)" +msgstr "Свързване с %s (%s)" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:87 #, c-format -msgid "List directory %spartial is missing." -msgstr "Директорията със списъци %spartial липсва." +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:94 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Директорията за архиви %spartial липсва." +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Неуспех при създаването на гнездо за %s (f=%u t=%u p=%u)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:100 #, c-format -msgid "Unable to lock directory %s" -msgstr "Неуспех при заключване на директорията %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Не може да се започне свързване с %s:%s (%s)." -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:108 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Изтегляне на файл %li от %li (остават %s)" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Неуспех при свързване с %s:%s (%s), допустимото време изтече" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:126 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Изтегляне на файл %li от %li" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Някои индексни файлове не можаха да бъдат изтеглени. Те са пренебрегнати или " -"са използвани по-стари." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Трябва да добавите адреси-URI от тип „source“ в sources.list" +msgid "Could not connect to %s:%s (%s)." +msgstr "Неуспех при свързване с %s:%s (%s)." -#: apt-pkg/policy.cc:83 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" -"Стойността „%s“ на APT::Default-Release не е правилна, понеже в източниците " -"няма такова издание" +msgid "Connecting to %s" +msgstr "Свързване с %s" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Невалиден запис във файла с настройки %s, липсва заглавна част Package" +msgid "Could not resolve '%s'" +msgstr "Неуспех при намирането на IP адреса на „%s“" -#: apt-pkg/policy.cc:444 +#: methods/connect.cc:205 #, c-format -msgid "Did not understand pin type %s" -msgstr "Неизвестен тип за отбиване %s" +msgid "Temporary failure resolving '%s'" +msgstr "Временен неуспех при намирането на IP адреса на „%s“" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Няма указан приоритет (или е нула) на отбиването" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: methods/connect.cc:211 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" + +#: methods/connect.cc:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Неуспех при свързване с %s:%s:" + +#: methods/gpgv.cc:168 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Неуспех при незабавната настройка на „%s“. За повече информация вижте " -"информацията за APT::Immediate-Configure в „man 5 apt.conf“. (%d)" +"Вътрешна грешка: Валиден подпис, но не може да се провери отпечатъка на " +"ключа?!" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Неуспех при конфигуриране на „%s“. " +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Намерен е поне един невалиден подпис." -#: apt-pkg/packagemanager.cc:583 +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Неуспех при изпълнение на „gpgv“ за проверка на подписа (инсталиран ли е " +"gpgv?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, 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." +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"В следствие на циклични зависимости от типа „В конфликт с/Предварително " -"зависи от“, за да се продължи инсталацията трябва да се премахне необходимия " -"пакет %s. Това често е лошо, но ако наистина искате да го направите, " -"активирайте опцията APT::Force-LoopBreak." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Ред %u в списъка с източници %s е твърде дълъг." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Неизвестна грешка при изпълнението на gpgv" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Демонтиране на CD-ROM...\n" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Следните подписи са невалидни:\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Използване на точка за монтиране на CD-ROM %s\n" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Следните подписи не можаха да бъдат проверени, защото публичния ключ не е " +"наличен:\n" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Чакане за диск...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Празни файлове не могат да бъдат валидни архиви" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Монтиране на CD-ROM...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Грешка при записа на файла" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Идентифициране..." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Грешка при четене от сървъра. Отдалеченият сървър прекъсна връзката" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Запазен етикет: %s \n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Грешка при четене от сървъра" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Сканиране на диска за индексни файлове...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Грешка при записа на файл" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Намерени са %zu индекса на пакети, %zu индекса на пакети с изходен код, %zu " -"индекса с преводи и %zu подписа.\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Неуспех на избора" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Не са намерени файлове с пакети. Мое би дискът не е с Дебиан или е за " -"погрешна компютърна архитектура." +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Допустимото време за свързване изтече" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Намерен е етикет „%s“\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Грешка при записа на изходен файл" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Това не е валидно име, опитайте отново.\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Чакане на заглавни части" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Наименование на този диск: \n" -"„%s“\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Невалиден ред на заглавна част" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Копиране на списъците с пакети..." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP сървърът изпрати невалидна заглавна част като отговор" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Запазване на новия списък с източници\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Length“" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Записите в списъка с източници за този диск са:\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Range“" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за " -"него." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP сървърът няма поддръжка за прехвърляне на фрагменти на файлове" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е " -"причинено от задържани пакети." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Неизвестен формат на дата" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" -"Неуспех при коригирането на проблемите, имате задържани счупени пакети." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Невалидни данни на заглавната част" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Изграждане на дървото със зависимости" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Неуспех при свързването" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Версии кандидати" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Вътрешна грешка" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Генериране на зависимости" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Изчисляване на актуализацията..." -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Четене на информацията за състоянието" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Готово" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Неуспех при отварянето на StateFile %s" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" + +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Неуспех при запис на временен StateFile %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Коригиране на зависимостите..." + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " пропадна." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Неуспех при анализирането на пакетен файл %s (1)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Неуспех при коригирането на зависимостите" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Неуспех при анализирането на пакетен файл %s (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Неуспех при минимизирането на набора актуализации" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Не е намерено издание „%s“ на „%s“" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Готово" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Не е намерена версия „%s“ на „%s“" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Възможно е да изпълните „apt-get -f install“, за да коригирате тези " +"неизправности." -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Неуспех при намиране на задача „%s“" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Неудовлетворени зависимости. Опитайте с „-f“." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +msgid "[installed,upgradable to: %s]" +msgstr " [Инсталиран]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Не е възможно избиране на версия за пакета „%s“ понеже е виртуален" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Инсталиран]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Не е възможно избиране на инсталирана или кандидат версия за пакета „%s“ " -"понеже той няма нито едната" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Не е възможно избиране на на последната версия за пакета „%s“, защото е " -"виртуален" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Инсталиран]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Инсталиран]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Не е възможно избиране на кандидат-версия за пакета „%s“, защото няма " -"подходящ кандидати" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Не е възможно избиране на инсталирана версия на пакета „%s“, защото не е " -"инсталиран" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Неуспех при анализиране на файл Release %s" +msgid "but %s is installed" +msgstr "но е инсталиран %s" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Във файла Release %s липсват раздели" +msgid "but %s is to be installed" +msgstr "но ще бъде инсталиран %s" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Във файла Release %s липсва контролна сума" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "но той не може да бъде инсталиран" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Неправилна стойност за „Valid-Until“ във файла Release %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "но той е виртуален пакет" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Неправилна стойност за „Date“ във файла Release %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "но той не е инсталиран" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "но той няма да бъде инсталиран" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s (неразбираема [опция])" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " или" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s (твърде кратка [опция])" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Следните пакети имат неудовлетворени зависимости:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s ([%s] не е присвояване)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Следните НОВИ пакети ще бъдат инсталирани:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (липсва ключ в [%s])" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Следните пакети ще бъдат ПРЕМАХНАТИ:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s ([%s] ключът %s няма " -"стойност)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Следните пакети няма да бъдат променени:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (адрес-URI)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Следните пакети ще бъдат актуализирани:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (дистрибуция)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Следните пакети ще бъдат ВЪРНАТИ КЪМ ПО-СТАРА ВЕРСИЯ:" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Следните задържани пакети ще бъдат променени:" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s (неограничена дистрибуция)" +msgid "%s (due to %s) " +msgstr "%s (поради %s) " -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s (анализ на дистрибуция)" +"ПРЕДУПРЕЖДЕНИЕ: Следните необходими пакети ще бъдат премахнати.\n" +"Това НЕ би трябвало да става освен ако знаете точно какво правите!" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:707 #, c-format -msgid "Opening %s" -msgstr "Отваряне на %s" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu актуализирани, %lu нови инсталирани, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Лошо форматиран ред %u в списъка с източници %s (тип)" +msgid "%lu reinstalled, " +msgstr "%lu преинсталирани, " -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:713 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." +msgid "%lu downgraded, " +msgstr "%lu върнати към по-стара версия, " -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-output.cc:715 #, c-format -msgid "Installing %s" -msgstr "Инсталиране на %s" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu за премахване и %lu без промяна.\n" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-output.cc:719 #, c-format -msgid "Configuring %s" -msgstr "Конфигуриране на %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu не са напълно инсталирани или премахнати.\n" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Премахване на %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Окончателно премахване на %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Командата „update“ не възприема аргументи" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" -msgstr "Отбелязване на изчезването на %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Изпълнение на тригер след инсталиране %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-private/private-show.cc:156 #, c-format -msgid "Directory '%s' missing" -msgstr "Директорията „%s“ липсва" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Неуспех при отваряне на файла „%s“" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Подготвяне на %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при счупени пакети!" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Разпакетиране на %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Трябва да бъдат премахнати пакети, но премахването е изключено." -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Подготвяне на %s за конфигуриране" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Вътрешна грешка, „Ordering“ не завърши" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Странно... Размерите не съвпадат, изпратете е-поща на apt@packages.debian.org" + +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s е инсталиран" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Необходимо е да се изтеглят %sB/%sB архиви.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Подготвяне за премахване на %s" +msgid "Need to get %sB of archives.\n" +msgstr "Необходимо е да се изтеглят %sB архиви.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s е премахнат" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"След тази операция ще бъде използвано %sB допълнително дисково " +"пространство.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Подготовка за пълно премахване на %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "След тази операция ще бъде освободено %sB дисково пространство.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s е напълно премахнат" +msgid "You don't have enough free space in %s." +msgstr "Нямате достатъчно свободно пространство в %s." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Има проблеми и „-y“ е използвано без „--force-yes“" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Неуспех при записа на %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Указано е „Trivial Only“, но това не е тривиална операция." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Да, прави каквото казвам!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"На път сте да направите нещо потенциално опасно.\n" +"За да продължите, въведете фразата „%s“\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Операцията е прекъсната" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Прекъсване." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Поради достигане на максималния брой доклади (MaxReports) не е записан нов " -"доклад за зависимостите." +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Искате ли да продължите?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "отлагане на настройката поради неудовлетворени зависимости" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Някои файлове не можаха да бъдат изтеглени" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Доклад за зависимостите не е записан защото съобщението за грешка е породено " -"от друга грешка." +"Неуспех при изтеглянето на някои архиви, може да изпълните „apt-get update“ " +"или да опитате с „--fix-missing“?" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Доклад за зависимостите не е записан защото грешката е причинена от " -"недостатъчно дисково пространство" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "„--fix-missing“ и превключване на носители не се поддържа все още" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Неуспех при коригирането на липсващите пакети." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Прекъсване на инсталирането." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Доклад за зависимостите не е записан защото грешката е причинена от " -"недостатъчна оперативна памет" +"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] "" +"Следният пакет е отстранен от системата поради препокриване на всичките му " +"файлове от други пакети:" +msgstr[1] "" +"Следните пакети са отстранени от системата поради препокриване на всичките " +"им файлове от други пакети:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Това се прави автоматично от dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Не би трябвало да се изтрива. AutoRemover няма да бъде стартиран" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Доклад за зависимостите не е записан защото грешката е причинена от " -"недостатъчно дисково пространство" +"Хм, изглежда AutoRemover скапа нещо, а това не би трябвало\n" +"да се случва. Съобщете за грешка в пакета apt." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" msgstr "" -"Доклад за зависимостите не е записан поради входно-изходна грешка с dpkg" +"Следната информация може да помогне за намиране на изход от ситуацията:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Вътрешна грешка, AutoRemover счупи нещо в системата" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Неуспех при заключване на административната директория (%s). Може би се " -"използва от друг процес?" +"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] "Следният пакет е бил инсталиран автоматично и вече не е необходим:" +msgstr[1] "" +"Следните пакети са били инсталирани автоматично и вече не са необходими:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Неуспех при заключване на административната директория (%s). Може би липсват " -"административни права?" +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" +msgstr[1] "" +"%lu пакета са били инсталирани автоматично и вече не са необходими:\n" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +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“ за да ги премахнете." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или " +"укажете разрешение)." + +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"Процесът dpkg е беше прекъснат. Проблемът трябва да се коригира чрез ръчно " -"изпълнение на „%s“." - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Без заключване" +"Някои пакети не можаха да бъдат инсталирани. Това може да означава,\n" +"че сте изискали невъзможна ситуация или ако използвате нестабилната\n" +"дистрибуция, че някои необходими пакети още не са създадени или пък\n" +"са били преместени от Incoming." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%liд %liч %liм %liс" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Счупени пакети" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%liч %liм %liс" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Следните допълнителни пакети ще бъдат инсталирани:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%liм %liс" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Предложени пакети:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%liс" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Препоръчвани пакети:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Изборът %s не е намерен" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Пропускане на %s, вече е инсталиран и не е маркиран за актуализация.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Не се използва заключване за файл за заключване %s, който е само за четене" +"Пропускане на %s, който не е инсталиран при заявени само обновявания.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Неуспех при отварянето на файл за заключване %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Преинсталацията на %s не е възможна, не може да бъде изтеглен.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Не се използва заключване за файл за заключване %s, който е монтиран по NFS" +msgid "%s is already the newest version.\n" +msgstr "%s вече е най-новата версия.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Неуспех при достъпа до заключване %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Избрана е версия %s (%s) за %s\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Не може да се създаде списък от файлове, защото „%s“ не е директория" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Избрана е версия „%s“ (%s) за „%s“ заради „%s“\n" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Пропускане на „%s“ в директорията „%s“, понеже не е обикновен файл" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Пакетът „%s“ не е инсталиран, така че не е премахнат. Може би имахте предвид " +"„%s“?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Пропускане на файла „%s“ в директорията „%s“, понеже няма разширение" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Пакетът „%s“ не е инсталиран, така че не е премахнат\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"Пропускане на файла „%s“ в директорията „%s“, понеже разширението му е грешно" +"Забележка: това е само симулация!\n" +" apt-get има нужда от административни права за да работи.\n" +" Заключването е деактивирано, така че не разчитайте\n" +" на повтаряемост в реална ситуация." -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Нарушение на защитата на паметта (segmentation fault) в подпроцеса %s." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ПРЕДУПРЕЖДЕНИЕ: Следните пакети не могат да бъдат удостоверени!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Под-процесът %s получи сигнал %u." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Предупреждението за удостоверяването е пренебрегнато.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Подпроцесът %s върна код за грешка (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Някои пакети не можаха да бъдат удостоверени" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Подпроцесът %s завърши неочаквано" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Инсталиране на тези пакети без проверка?" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Проблем при затваряне на компресираният файл %s (gzip)" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Неуспех при преименуването на %s на %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Неуспех при отварянето на файла %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Неуспех при отварянето на файлов манипулатор %d" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Неуспех при създаването на подпроцес IPC" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Поп " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Неуспех при изпълнението на компресиращата програма " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Изт:" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "" -"грешка при четене, все още има %llu за четене, но няма нито един останал" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Игн " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "грешка при запис, все още име %llu за запис, но не успя" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Грш " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the file %s" -msgstr "Проблем при затваряне на файла %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Изтеглени %sB за %s (%sB/сек)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Проблем при преименуване на файла %s на %s" +msgid " [Working]" +msgstr " [В процес на работа]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Проблем при изтриване на файла %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Проблем при синхронизиране на файла" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Смяна на носител: сложете диска с етикет\n" +" „%s“\n" +"в устройството „%s“ и натиснете „Enter“\n" -#: apt-pkg/contrib/progress.cc:148 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Грешка!" +msgid "No mirror file '%s' found " +msgstr "Файлът „%s“ на огледалния сървър не е намерен " -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Готово" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "Can not read mirror file '%s'" +msgstr "Грешка при четене файла „%s“ от огледалния сървър" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Готово" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Невъзможно е да се прехвърли в паметта празен файл" +msgid "No entry found in mirror file '%s'" +msgstr "Грешка при четене файла „%s“ от огледалния сървър" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Неуспех при дублиране на файлов манипулатор %i" +msgid "[Mirror: %s]" +msgstr "[Огледален сървър: %s]" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Неуспех при прехвърлянето в паметта на %llu байта" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Неуспех при създаването на IPC pipe към подпроцеса" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Връзката прекъсна преждевременно" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Лоша стандартна настройка!" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Неуспех при затваряне на mmap" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Натиснете „Enter“, за да продължите." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Неуспех при синхронизирането на mmap" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Желаете ли да изтриете изтеглените пакетни файлове?" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Неуспех при прехвърлянето в паметта на %lu байта" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Възникнаха някои грешки при разпакетирането. инсталираните пакети" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Неуспех при отрязване на края на файла" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "ще бъдат конфигурирани. Това може да доведе до дублирани грешки" -#: 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)" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Недостатъчна памет за MMap. Увеличете стойността на променливата APT::Cache-" -"Start. Текуща стойност: %lu (man 5 apt.conf)" +"или грешки, причинени от липсващи зависимости. Това е нормално, само грешките" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: dselect/install:105 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Неуспех при увеличаване на паметта за MMap. Достигнато е текущото " -"ограничение от %lu байта." +"над това съобщение за важни. Коригирайте ги и изпълнете [I]nstall наново" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Неуспех при увеличаване на паметта за MMap. Автоматичното увеличаване е " -"забранено от потребителя." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Смесване на наличната информация" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Неуспех при намирането на атрибутите на точка за монтиране %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Извикан е DropNode за все още използван възел" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Неуспех при намирането на атрибутите на cdrom" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Грешка при намирането на хеш-елемента!" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Неизвестен тип на абревиатура: „%c“" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Неуспех при установяване на отклонението" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Отваряне на конфигурационен файл %s" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Вътрешна грешка в AddDiversion" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Синтактична грешка %s:%u: В началото на блока няма име." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Опит за изменение на отклонение, %s -> %s и %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Синтактична грешка %s:%u: Лошо форматиран таг" +msgid "Double add of diversion %s -> %s" +msgstr "Двойно добавяне на отклонение %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Синтактична грешка %s:%u: Излишни символи след стойността" +msgid "Duplicate conf file %s/%s" +msgstr "Дублиран конфигурационен файл %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Синтактична грешка %s:%u: Директиви могат да се задават само в най-горното " -"ниво" +msgid "The path %s is too long" +msgstr "Пътят %s е твърде дълъг" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Синтактична грешка %s:%u: Твърде много вложени „include“" +msgid "Unpacking %s more than once" +msgstr "Разпакетиране на %s повече от веднъж" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук" +msgid "The directory %s is diverted" +msgstr "Директорията %s е отклонена" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Синтактична грешка %s:%u: Неподдържана директива „%s“" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Пакетът се опитва да пише в целта за отклонение %s/%s" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Пътят за отклонение е твърде дълъг" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Синтактична грешка %s:%u: директивата clear изисква аргумент дърво от опции" +msgid "Failed to stat %s" +msgstr "Грешка при получаването на атрибути за %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Синтактична грешка %s:%u: Излишни символи в края на файла" +msgid "Failed to rename %s to %s" +msgstr "Неуспех при преименуването на %s на %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "В %s няма инсталиран ключодържател." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Директорията %s се заменя с не-директория" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Неуспех при намирането на възел в неговия хеш" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Пътят е твърде дълъг" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Неизвестна опция за команден ред „%c“ [от %s]." +msgid "Overwrite package match with no version for %s" +msgstr "Файловете се заменят със съдържанието на пакета %s без версия" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Опцията за команден ред %s не е разпозната" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Файл %s/%s заменя този в пакет %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Опцията за команден ред %s не е булева" +msgid "Unable to stat %s" +msgstr "Неуспех при получаването на атрибути за %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Опция %s изисква аргумент." +msgid "Failed to write file %s" +msgstr "Неуспех при запис на файл %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Опция %s: Значението трябва да има =<val>." +msgid "Failed to close file %s" +msgstr "Неуспех при затварянето на файл %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Опция %s изисква аргумент цяло число, не „%s“" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Това не е валиден DEB архив, липсва елемент „%s“" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Опция „%s“ е твърде дълга" +msgid "Internal error, could not locate member %s" +msgstr "Вътрешна грешка, неуспех при намирането на съставна част %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Контролен файл, невъзможен за анализ" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Невалиден подпис на архива" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Грешка при четене на заглавната част на елемента на архива" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Смисълът %s не е ясен, опитайте true или false." +msgid "Invalid archive member header %s" +msgstr "Невалидна заглавна част %s на елемента на архива" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Невалидна заглавна част на елемента на архива" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Архивът е твърде кратък" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Неуспех при четенето на заглавните части на архива" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Неуспех при създаването на програмни канали" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Неуспех при изпълнението на gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Развален архив" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Невярна контролна сума на tar, развален архив" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Невалидна операция %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Непозната заглавна част на TAR тип %u, елемент %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3619,7 +3623,7 @@ msgstr "Неуспех при четене докато се изчислява msgid "Problem unlinking %s" msgstr "Неуспех при премахването на връзка на %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3672,6 +3676,10 @@ msgstr "" " -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/" "tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Вътрешна грешка, „AllUpgrade“ счупи нещо в системата" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s не е валиден DEB пакет." diff --git a/po/bs.po b/po/bs.po index 59a733360..4b05a6624 100644 --- a/po/bs.po +++ b/po/bs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Å ećerović <sapphire@linux.org.ba>\n" "Language-Team: Bosnian <lokal@lugbih.org>\n" @@ -14,3007 +14,3014 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paket %s verzije %s ima nezadovoljenu zavisnost:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Ukupno naziva paketa:" - -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Ukupno naziva paketa:" - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normalni paketi:" - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Čisto virtuelni paketi:" - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pojedinačni virutuelni paketi:" - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " MijeÅ¡ani virtuelni paketi:" - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Nedostajući:" +msgid "Clean of %s is not supported" +msgstr "" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Ukupno različitih verzija:" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#, c-format +msgid "Unable to read %s" +msgstr "Ne mogu čitati %s" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Ukupno različitih verzija:" +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Ukupno zavisnosti:" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Ukupno Verzija/Datoteka odnosa:" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "Ukupno Verzija/Datoteka odnosa:" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" msgstr "" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "Package file %s is out of sync." +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Paketi nisu pronađeni" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/acquire-worker.cc:118 #, c-format -msgid "Unable to locate package %s" -msgstr "Ne mogu pronaći paket %s" +msgid "Is the package %s installed?" +msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Datoteke paketa:" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalirano:" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" msgstr "" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" msgstr "" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" msgstr "" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "%s %s for %s compiled on %s %s\n" +msgid "This APT does not support the versioning system '%s'" msgstr "" -#: cmdline/apt-cache.cc:1749 -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" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" msgstr "" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Zavisi" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Unaprijed zavisi" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Ne mogu otvoriti %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Predlaže" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Preporučuje" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" +#: apt-pkg/pkgcache.cc:322 +#, fuzzy +msgid "Conflicts" +msgstr "Sukobljava se sa" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenti nisu u parovima" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Zamjenjuje" -#: cmdline/apt-config.cc:89 -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 "" -"Upotreba: apt-config [opcije] naredba\n" -"\n" -"apt-config je jednostavni alat za čitanje APT konfiguracijske datoteke\n" -"\n" -"Naredbe:\n" -" shell - Shell mod\n" -" dump - Prikaz konfiguracije\n" -"\n" -"Opcije:\n" -" -h Ovaj tekst pomoći.\n" -" -c=? Pročitaj ovu konfiguracijsku datoteku\n" -" -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "" - -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "" - -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "" - -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "" - -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" - -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "" - -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "ali se %s treba instalirati" - -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "ali se %s treba instalirati" - -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" - -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "" - -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" - -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "" - -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" - -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" - -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "" - -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "" - -#: cmdline/apt-get.cc:882 -#, 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:891 -#, 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "" - -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "" - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "" - -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "" - -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "" - -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "" - -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "" - -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" - -#: cmdline/apt-get.cc:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" - -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "" - -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "" - -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" - -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" - -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" - -#: cmdline/apt-get.cc:1351 -#, 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:1357 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" - -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "" - -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "" - -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "" - -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, c-format -msgid "Changelog for %s (%s)" -msgstr "" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podržani moduli:" - -#: cmdline/apt-get.cc:1632 -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 "" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zastarijeva" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" msgstr "" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" msgstr "" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "važno" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ali nije instaliran" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "zahtijevano" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ali se %s treba instalirati" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standardno" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ali se %s treba instalirati" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcionalno" -#: cmdline/apt-mark.cc:241 -#, c-format -msgid "%s was already set on hold.\n" -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "%s was already not hold.\n" +msgid "Index file type '%s' is not supported" msgstr "" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ali se %s treba instalirati" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Ne mogu otvoriti %s" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" - -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" msgstr "" -#: methods/cdrom.cc:203 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "Unable to read the cdrom database %s" +msgid "Error occurred while processing %s (%s%d)" msgstr "" -#: 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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: methods/cdrom.cc:222 -#, fuzzy -msgid "Wrong CD-ROM" -msgstr "PogreÅ¡an CD" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se joÅ¡ uvijek koristi." - -#: methods/cdrom.cc:254 -#, fuzzy -msgid "Disk not found." -msgstr "Datoteka nije pronađena" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Datoteka nije pronađena" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Prijavljujem se" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Čitam spiskove paketa" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Ne mogu zapisati na %s" + +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" msgstr "" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "TYPE failed, server said: %s" +msgid "rename failed, %s (%s -> %s)." msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Server je zatvorio vezu" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "GreÅ¡ka pri čitanju" +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." +#: apt-pkg/acquire-item.cc:1573 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -#, fuzzy -msgid "Protocol corruption" -msgstr "OÅ¡tećenje protokola" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ne mogu otvoriti DB datoteku %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "GreÅ¡ka pri pisanju" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "NeuspjeÅ¡no" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." msgstr "" -#: methods/ftp.cc:802 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Unknown address family %u (AF_*)" +msgid "Archives directory %spartial is missing." msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Ne mogu kreirati %s" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "EPRT failed, server said: %s" +msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" +#: apt-pkg/acquire.cc:904 +#, fuzzy, c-format +msgid "Retrieving file %li of %li" +msgstr "Čitam spisak datoteke" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unable to fetch file, server said '%s'" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Data transfer failed, server said '%s'" +msgid "Did not understand pin type %s" msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, 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:503 apt-pkg/packagemanager.cc:533 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Ne mogu otvoriti %s" + +#: apt-pkg/packagemanager.cc:583 +#, 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 "" -#: methods/connect.cc:76 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Connecting to %s (%s)" +msgid "Line %u too long in source list %s." msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/cdrom.cc:571 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "PogreÅ¡an CD" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "[IP: %s %s]" +msgid "Using CD-ROM mount point %s\n" msgstr "" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +#: apt-pkg/cdrom.cc:599 +#, fuzzy +msgid "Waiting for disc...\n" +msgstr "Čekam na zaglavlja" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" msgstr "" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" +msgid "Stored label: %s\n" msgstr "" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "Connecting to %s" -msgstr "Povezujem se sa %s" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: methods/connect.cc:205 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Temporary failure resolving '%s'" +msgid "Found label '%s'\n" msgstr "" -#: methods/connect.cc:209 -#, c-format -msgid "System error resolving '%s:%s'" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" msgstr "" -#: methods/connect.cc:211 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ne mogu se povezati sa %s %s:" +#: apt-pkg/cdrom.cc:819 +#, fuzzy +msgid "Copying package lists..." +msgstr "Čitam spiskove paketa" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Gradim stablo zavisnosti" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Verzije kandidata" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Stvaranje zavisnosti" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 #, fuzzy -msgid "The following signatures were invalid:\n" -msgstr "Slijedeći dodatni paketi će biti instalirani:" +msgid "Reading state information" +msgstr "Sastavljam dostupne informacije" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" +#: apt-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "Ne mogu otvoriti %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Ne mogu ukloniti %s" -#: methods/http.cc:509 -msgid "Error writing to the file" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ne mogu pronaći paket %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Ne mogu otvoriti %s" -#: methods/http.cc:649 -msgid "Error writing to output file" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čekam na zaglavlja" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Ne mogu otvoriti %s" -#: methods/server.cc:109 -msgid "Bad header line" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Nepoznat oblik datuma" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Ne mogu otvoriti DB datoteku %s" -#: methods/server.cc:489 -msgid "Bad header data" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Povezivanje neuspjeÅ¡no" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "UnutraÅ¡nja greÅ¡ka" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Računam nadogradnju..." +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ne mogu otvoriti DB datoteku %s" + +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "" + +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" -#: apt-private/private-upgrade.cc:30 -msgid "Internal error, Upgrade broke stuff" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Urađeno" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Ispravljam zavisnosti..." +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ne mogu ispraviti zavisnosti" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Urađeno" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Otvaram %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nezadovoljene zavisnosti. PokuÅ¡ajte koristeći -f." +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: apt-private/private-output.cc:233 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[Instalirano]" +msgid "Installing %s" +msgstr " Instalirano:" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr "[Instalirano]" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, fuzzy, c-format +msgid "Configuring %s" +msgstr "Povezujem se sa %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, fuzzy, c-format +msgid "Removing %s" +msgstr "Otvaram %s" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr "[Instalirano]" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Ne mogu ukloniti %s" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr "[Instalirano]" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: apt-private/private-output.cc:248 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "[upgradable from: %s]" +msgid "Running post-installation trigger %s" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Ne mogu otvoriti %s" + +#: apt-pkg/deb/dpkgpm.cc:989 +#, fuzzy, c-format +msgid "Preparing %s" +msgstr "Otvaram %s" + +#: apt-pkg/deb/dpkgpm.cc:990 +#, fuzzy, c-format +msgid "Unpacking %s" +msgstr "Otvaram %s" + +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" msgstr "" -#: apt-private/private-output.cc:442 +#: apt-pkg/deb/dpkgpm.cc:997 +#, fuzzy, c-format +msgid "Installed %s" +msgstr " Instalirano:" + +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "but %s is installed" -msgstr "ali je %s instaliran" +msgid "Preparing for removal of %s" +msgstr "" -#: apt-private/private-output.cc:444 +#: apt-pkg/deb/dpkgpm.cc:1004 +#, fuzzy, c-format +msgid "Removed %s" +msgstr "Preporučuje" + +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "but %s is to be installed" -msgstr "ali se %s treba instalirati" +msgid "Preparing to completely remove %s" +msgstr "" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ali se ne može instalirati" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, fuzzy, c-format +msgid "Completely removed %s" +msgstr "Ne mogu ukloniti %s" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ali je virtuelni paket" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ali nije instaliran" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Ne mogu zapisati na %s" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "ali se neće instalirati" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " ili" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Slijedeći NOVI paketi će biti instalirani:" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Slijedeći paketi će biti UKLONJENI:" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-private/private-output.cc:538 -#, fuzzy -msgid "The following packages have been kept back:" -msgstr "Slijedeći paketi su zadržani:" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Slijedeći paketi će biti nadograđeni:" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: apt-private/private-output.cc:655 -#, c-format -msgid "%s (due to %s) " +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -#: apt-private/private-output.cc:663 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-private/private-output.cc:694 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "%lu upgraded, %lu newly installed, " +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" msgstr "" -#: apt-private/private-output.cc:698 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "%lu reinstalled, " +msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" -#: apt-private/private-output.cc:700 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "%lu downgraded, " +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" -#: apt-private/private-output.cc:702 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" +msgid "%lid %lih %limin %lis" msgstr "" -#: apt-private/private-output.cc:706 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "%lu not fully installed or removed.\n" +msgid "%lih %limin %lis" msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:195 #, c-format -msgid "Regex compilation error - %s" +msgid "Could not open lock file %s" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Could not get lock %s" +msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Need to get %sB/%sB of archives.\n" +msgid "Sub-process %s received signal %u." 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Need to get %sB of archives.\n" +msgid "Sub-process %s returned an error code (%u)" 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" +msgid "Sub-process %s exited unexpectedly" 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "GreÅ¡ka pri pisanju" + +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" +msgid "Problem closing the gzip file %s" msgstr "" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "You don't have enough free space in %s." +msgid "Could not open file %s" msgstr "" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Ne mogu otvoriti %s" + +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" msgstr "" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " msgstr "" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Da, uradi kako kažem!" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "GreÅ¡ka pri čitanju" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "read, still have %llu to read but none left" msgstr "" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Odustani." +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Da li želite nastaviti?" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Ne mogu ukloniti %s" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" msgstr "" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" msgstr "" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" msgstr "" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" msgstr "" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Odustajem od instalacije." - -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" msgstr "" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" msgstr "" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" msgstr "" -#: apt-private/private-install.cc:512 +#: apt-pkg/contrib/mmap.cc:146 #, fuzzy -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] "Slijedeći NOVI paketi će biti instalirani:" -msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" - -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "Slijedeći NOVI paketi će biti instalirani:" -msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" +msgid "Unable to close mmap" +msgstr "Ne mogu kreirati %s" -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Ne mogu kreirati %s" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" msgstr "" -#: apt-private/private-install.cc:614 +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Ne mogu ukloniti %s" + +#: apt-pkg/contrib/mmap.cc:341 +#, c-format msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -#: apt-private/private-install.cc:628 +#: apt-pkg/contrib/mmap.cc:446 +#, c-format 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." +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "OÅ¡tećeni paketi" - -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Slijedeći dodatni paketi će biti instalirani:" - -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Predloženi paketi:" - -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Preporučeni paketi:" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "Unable to stat the mount point %s" msgstr "" -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" msgstr "" -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgid "Unrecognized type abbreviation: '%c'" msgstr "" -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%s is already the newest version.\n" +msgid "Opening configuration file %s" msgstr "" -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" +msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-private/private-install.cc:889 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-private/private-install.cc:937 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "Package '%s' is not installed, so not removed\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-private/private-main.cc:32 -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!" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-private/private-download.cc:36 -#, fuzzy -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "Slijedeći paketi će biti nadograđeni:" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "Failed to fetch %s %s\n" +msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" -#: apt-private/private-sources.cc:58 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Ne mogu otvoriti %s" +msgid "No keyring installed in %s." +msgstr "Odustajem od instalacije." -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" msgstr "" -#: apt-private/acqprogress.cc:90 -msgid "Get:" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." msgstr "" -#: apt-private/acqprogress.cc:121 -msgid "Ign " +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -#: apt-private/acqprogress.cc:125 -msgid "Err " +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" +msgid "Option '%s' is too long" msgstr "" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid " [Working]" +msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Invalid operation %s" 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to read %s" -msgstr "Ne mogu čitati %s" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paket %s verzije %s ima nezadovoljenu zavisnost:\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Ukupno naziva paketa:" + +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Ukupno naziva paketa:" + +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normalni paketi:" + +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Čisto virtuelni paketi:" + +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pojedinačni virutuelni paketi:" + +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " MijeÅ¡ani virtuelni paketi:" + +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Nedostajući:" + +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Ukupno različitih verzija:" + +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Ukupno različitih verzija:" + +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Ukupno zavisnosti:" + +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Ukupno Verzija/Datoteka odnosa:" + +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Ukupno Verzija/Datoteka odnosa:" + +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " msgstr "" -#. 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 " +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Ne mogu otvoriti %s" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Ne mogu otvoriti %s" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "" -#: methods/mirror.cc:445 +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "" + +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "[Mirror: %s]" +msgid "Package file %s is out of sync." msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Paketi nisu pronađeni" + +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" msgstr "" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "LoÅ¡a podrazumjevana postavka!" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Datoteke paketa:" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pritisnite enter za nastavak." +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "" + +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "" + +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalirano:" + +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr "" + +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" msgstr "" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " msgstr "" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" msgstr "" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: dselect/install:105 +#: cmdline/apt-cache.cc:1749 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"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 "" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Sastavljam dostupne informacije" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" msgstr "" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Ne mogu otvoriti %s" + +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenti nisu u parovima" + +#: cmdline/apt-config.cc:89 +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 "" +"Upotreba: apt-config [opcije] naredba\n" +"\n" +"apt-config je jednostavni alat za čitanje APT konfiguracijske datoteke\n" +"\n" +"Naredbe:\n" +" shell - Shell mod\n" +" dump - Prikaz konfiguracije\n" +"\n" +"Opcije:\n" +" -h Ovaj tekst pomoći.\n" +" -c=? Pročitaj ovu konfiguracijsku datoteku\n" +" -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Double add of diversion %s -> %s" +msgid "Can not find a package for architecture '%s'" msgstr "" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:327 #, c-format -msgid "Duplicate conf file %s/%s" +msgid "Can not find a package '%s' with version '%s'" msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:330 #, c-format -msgid "The path %s is too long" +msgid "Can not find a package '%s' with release '%s'" msgstr "" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Unpacking %s more than once" +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:423 #, c-format -msgid "The directory %s is diverted" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:454 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" +msgid "Couldn't find package %s" msgstr "" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "ali se %s treba instalirati" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "ali se %s treba instalirati" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 -#, c-format -msgid "Failed to rename %s to %s" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Putanja je preduga" - -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "File %s/%s overwrites the one in the package %s" +msgid "Unable to find a source package for %s" msgstr "" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Unable to stat %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, fuzzy, c-format -msgid "Failed to write file %s" -msgstr "Ne mogu ukloniti %s" - -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Failed to close file %s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:843 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" +msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" +msgid "Couldn't determine free space in %s" msgstr "" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Invalid archive member header %s" -msgstr "" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +msgid "You don't have enough free space in %s" msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arhiva je prekratka" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" +#. 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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Ne mogu izvrÅ¡iti gzip" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "OÅ¡tećena arhiva" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Provjera Tar kontrolnog zbira nije uspjela, arhiva oÅ¡tećena" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to stat %s." +msgid "Unpack command '%s' failed.\n" msgstr "" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Progress: [%3i%%]" +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" msgstr "" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Wrote %i records.\n" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Wrote %i records with %i missing files.\n" +msgid "Unable to get build-dependency information for %s" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Wrote %i records with %i mismatched files\n" +msgid "%s has no build depends.\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Can't find authentication record for: %s" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Hash mismatch for: %s" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "The method driver %s could not be found." +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Is the package %s installed?" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Method %s did not start correctly" +msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" msgstr "" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, c-format +msgid "Changelog for %s (%s)" msgstr "" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Podržani moduli:" + +#: cmdline/apt-get.cc:1632 +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 "" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" msgstr "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "ali nije instaliran" + +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "ali se %s treba instalirati" + +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ali se %s treba instalirati" + +#: cmdline/apt-mark.cc:241 +#, c-format +msgid "%s was already set on hold.\n" msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "This APT does not support the versioning system '%s'" +msgid "%s was already not hold.\n" +msgstr "" + +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "ali se %s treba instalirati" + +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Ne mogu otvoriti %s" + +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" + +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" + +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Zavisi" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Unaprijed zavisi" +#: 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 "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Predlaže" +#: methods/cdrom.cc:222 +#, fuzzy +msgid "Wrong CD-ROM" +msgstr "PogreÅ¡an CD" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Preporučuje" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se joÅ¡ uvijek koristi." -#: apt-pkg/pkgcache.cc:322 +#: methods/cdrom.cc:254 #, fuzzy -msgid "Conflicts" -msgstr "Sukobljava se sa" +msgid "Disk not found." +msgstr "Datoteka nije pronađena" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Zamjenjuje" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Datoteka nije pronađena" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zastarijeva" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "važno" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Prijavljujem se" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "zahtijevano" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standardno" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcionalno" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" +msgid "PASS failed, server said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." 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:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:280 #, c-format -msgid "Error occurred while processing %s (%s%d)" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" msgstr "" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Server je zatvorio vezu" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." msgstr "" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" +#: methods/ftp.cc:377 methods/ftp.cc:389 +#, fuzzy +msgid "Protocol corruption" +msgstr "OÅ¡tećenje protokola" + +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" msgstr "" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Čitam spiskove paketa" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "NeuspjeÅ¡no" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Ne mogu zapisati na %s" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" msgstr "" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" msgstr "" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." +msgid "EPRT failed, server said: %s" msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" msgstr "" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" msgstr "" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" msgstr "" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +msgid "Unable to fetch file, server said '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Ne mogu otvoriti DB datoteku %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " msgstr "" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:76 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +msgid "Connecting to %s (%s)" msgstr "" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:87 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +msgid "[IP: %s %s]" msgstr "" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:94 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:100 #, c-format -msgid "GPG error: %s: %s" +msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:108 #, 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)" +msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:126 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" +msgid "Could not connect to %s:%s (%s)." msgstr "" -#: apt-pkg/acquire-item.cc:1991 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 +#, c-format +msgid "Connecting to %s" +msgstr "Povezujem se sa %s" + +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." +msgid "Could not resolve '%s'" msgstr "" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" +msgid "Temporary failure resolving '%s'" msgstr "" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, c-format -msgid "List directory %spartial is missing." +msgid "System error resolving '%s:%s'" msgstr "" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, c-format -msgid "Archives directory %spartial is missing." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Ne mogu kreirati %s" +msgid "Unable to connect to %s:%s:" +msgstr "Ne mogu se povezati sa %s %s:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/acquire.cc:901 -#, fuzzy, c-format -msgid "Retrieving file %li of %li" -msgstr "Čitam spisak datoteke" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" msgstr "" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Slijedeći dodatni paketi će biti instalirani:" + +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +#: methods/http.cc:509 +msgid "Error writing to the file" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Ne mogu otvoriti %s" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/http.cc:525 +msgid "Error reading from server" msgstr "" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." +#: methods/http.cc:561 +msgid "Error writing to file" msgstr "" -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "PogreÅ¡an CD" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" +#: methods/http.cc:626 +msgid "Connection timed out" msgstr "" -#: apt-pkg/cdrom.cc:599 -#, fuzzy -msgid "Waiting for disc...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "" + +#: methods/server.cc:51 +msgid "Waiting for headers" msgstr "Čekam na zaglavlja" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" +#: methods/server.cc:109 +msgid "Bad header line" msgstr "" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" msgstr "" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" msgstr "" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Nepoznat oblik datuma" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" +#: methods/server.cc:489 +msgid "Bad header data" msgstr "" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Povezivanje neuspjeÅ¡no" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "UnutraÅ¡nja greÅ¡ka" -#: apt-pkg/cdrom.cc:819 -#, fuzzy -msgid "Copying package lists..." -msgstr "Čitam spiskove paketa" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Računam nadogradnju..." -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Urađeno" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-list.cc:164 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Ispravljam zavisnosti..." + +#: apt-private/private-cachefile.cc:96 +msgid " failed." msgstr "" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ne mogu ispraviti zavisnosti" + +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" msgstr "" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Urađeno" + +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Gradim stablo zavisnosti" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nezadovoljene zavisnosti. PokuÅ¡ajte koristeći -f." -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Verzije kandidata" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Stvaranje zavisnosti" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr "[Instalirano]" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "Reading state information" -msgstr "Sastavljam dostupne informacije" +msgid "[installed,local]" +msgstr "[Instalirano]" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Ne mogu otvoriti %s" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" + +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr "[Instalirano]" -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Ne mogu ukloniti %s" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr "[Instalirano]" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:249 #, c-format -msgid "Unable to parse package file %s (1)" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:435 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "" +msgid "but %s is installed" +msgstr "ali je %s instaliran" -#: apt-pkg/cacheset.cc:492 +#: apt-private/private-output.cc:437 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "" +msgid "but %s is to be installed" +msgstr "ali se %s treba instalirati" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Ne mogu otvoriti %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ali se ne može instalirati" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ali je virtuelni paket" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Ne mogu otvoriti %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ali nije instaliran" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ali se neće instalirati" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ili" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" msgstr "" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Slijedeći NOVI paketi će biti instalirani:" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Slijedeći paketi će biti UKLONJENI:" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Ne mogu otvoriti DB datoteku %s" +#: apt-private/private-output.cc:551 +#, fuzzy +msgid "The following packages have been kept back:" +msgstr "Slijedeći paketi su zadržani:" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Slijedeći paketi će biti nadograđeni:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" msgstr "" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" msgstr "" -#: apt-pkg/indexrecords.cc:130 +#: apt-private/private-output.cc:668 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" +msgid "%s (due to %s) " msgstr "" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ne mogu otvoriti DB datoteku %s" - -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -#: apt-pkg/sourcelist.cc:170 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgid "%lu upgraded, %lu newly installed, " msgstr "" -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +msgid "%lu reinstalled, " msgstr "" -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgid "%lu downgraded, " msgstr "" -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgid "%lu to remove and %lu not upgraded.\n" msgstr "" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%lu not fully installed or removed.\n" msgstr "" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" msgstr "" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" msgstr "" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" msgstr "" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" msgstr "" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-update.cc:90 #, c-format -msgid "Opening %s" -msgstr "Otvaram %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-show.cc:156 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr " Instalirano:" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, fuzzy, c-format -msgid "Configuring %s" -msgstr "Povezujem se sa %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, fuzzy, c-format -msgid "Removing %s" -msgstr "Otvaram %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Ne mogu ukloniti %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Noting disappearance of %s" +msgid "Need to get %sB/%sB of archives.\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Running post-installation trigger %s" +msgid "Need to get %sB of archives.\n" msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Directory '%s' missing" +msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Ne mogu otvoriti %s" - -#: apt-pkg/deb/dpkgpm.cc:989 -#, fuzzy, c-format -msgid "Preparing %s" -msgstr "Otvaram %s" - -#: apt-pkg/deb/dpkgpm.cc:990 -#, fuzzy, c-format -msgid "Unpacking %s" -msgstr "Otvaram %s" - -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to configure %s" +msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:997 -#, fuzzy, c-format -msgid "Installed %s" -msgstr " Instalirano:" - -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing for removal of %s" +msgid "You don't have enough free space in %s." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, fuzzy, c-format -msgid "Removed %s" -msgstr "Preporučuje" - -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, fuzzy, c-format -msgid "Completely removed %s" -msgstr "Ne mogu ukloniti %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Ne mogu zapisati na %s" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Da, uradi kako kažem!" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Odustani." + +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Da li želite nastaviti?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Odustajem od instalacije." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "Slijedeći NOVI paketi će biti instalirani:" +msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +#: apt-private/private-install.cc:517 +#, fuzzy, 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] "Slijedeći NOVI paketi će biti instalirani:" +msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" + +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:638 +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 "" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "OÅ¡tećeni paketi" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Slijedeći dodatni paketi će biti instalirani:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Predloženi paketi:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Preporučeni paketi:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "%limin %lis" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:829 #, c-format -msgid "%lis" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:841 #, c-format -msgid "Selection %s not found" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for read only lock file %s" +msgid "%s is already the newest version.\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not open lock file %s" +msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:899 #, c-format -msgid "Not using locking for nfs mounted lock file %s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:223 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Could not get lock %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:947 #, c-format -msgid "List of files can't be created as '%s' is not a directory" +msgid "Package '%s' is not installed, so not removed\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: apt-private/private-main.cc:32 +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 "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-download.cc:36 +#, fuzzy +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "Slijedeći paketi će biti nadograđeni:" + +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" msgstr "" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Ne mogu otvoriti %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Sub-process %s received signal %u." +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" +#: apt-private/acqprogress.cc:66 +msgid "Hit " msgstr "" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" +#: apt-private/acqprogress.cc:90 +msgid "Get:" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" +#: apt-private/acqprogress.cc:121 +msgid "Ign " msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Ne mogu otvoriti %s" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "read, still have %llu to read but none left" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "write, still have %llu to write but couldn't" +msgid "No mirror file '%s' found " msgstr "" -#: apt-pkg/contrib/fileutl.cc:1915 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Ne mogu ukloniti %s" +msgid "Can not read mirror file '%s'" +msgstr "Ne mogu otvoriti %s" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Ne mogu otvoriti %s" -#: apt-pkg/contrib/fileutl.cc:1938 +#: methods/mirror.cc:445 #, c-format -msgid "Problem unlinking the file %s" +msgid "[Mirror: %s]" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" msgstr "" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" msgstr "" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "LoÅ¡a podrazumjevana postavka!" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pritisnite enter za nastavak." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Ne mogu kreirati %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sastavljam dostupne informacije" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Ne mogu kreirati %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Ne mogu ukloniti %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "" -#: 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)" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" msgstr "" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Unable to stat the mount point %s" +msgid "Duplicate conf file %s/%s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" msgstr "" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:132 #, c-format -msgid "Unrecognized type abbreviation: '%c'" +msgid "Unpacking %s more than once" msgstr "" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:142 #, c-format -msgid "Opening configuration file %s" +msgid "The directory %s is diverted" msgstr "" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" msgstr "" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" +msgid "Failed to stat %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "Failed to rename %s to %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" +msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Putanja je preduga" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" +msgid "Unable to stat %s" msgstr "" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Odustajem od instalacije." +msgid "Failed to write file %s" +msgstr "Ne mogu ukloniti %s" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Command line option '%c' [from %s] is not known." +msgid "Failed to close file %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Command line option %s is not understood" +msgid "This is not a valid DEB archive, missing '%s' member" msgstr "" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Command line option %s is not boolean" +msgid "Internal error, could not locate member %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" msgstr "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" msgstr "" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Option '%s' is too long" +msgid "Invalid archive member header %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" msgstr "" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arhiva je prekratka" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Ne mogu izvrÅ¡iti gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "OÅ¡tećena arhiva" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Provjera Tar kontrolnog zbira nije uspjela, arhiva oÅ¡tećena" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" +msgid "Unknown TAR header type %u, member %s" msgstr "" #: cmdline/apt-extracttemplates.cc:224 @@ -3311,7 +3318,7 @@ msgstr "" msgid "Problem unlinking %s" msgstr "" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" diff --git a/po/ca.po b/po/ca.po index 9f7a9b7fc..7eada0a9f 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-10-19 13:30+0200\n" "Last-Translator: Jordi Mallach <jordi@debian.org>\n" "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" @@ -18,3246 +18,3250 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "El tipus de fitxer índex «%s» no està suportat" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "El paquet %s versió %s té una dependència sense satisfer:\n" +msgid "Unable to read %s" +msgstr "No es pot llegir %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Nombre total de paquets: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "No es pot canviar a %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Nombre total d'estructures de paquets: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "No es pot veure l'estat de %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquets normals: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquets virtuals purs: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "S'està executant dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquets virtuals únics: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "El sistema d'empaquetament «%s» no està suportat" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquets virtuals mixtes: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat." -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Falten: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "S'han escrit %i registres.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Nombre total de versions diferents: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "S'han escrit %i registres, on falten %i fitxers.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Nombre total de descripcions diferents: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, 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" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Nombre total de dependències: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"S'han escrit %i registres, on falten %i fitxers i hi ha %i fitxers no " +"coincidents\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Nombre total de relacions versió/fitxer: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "No s'ha pogut trobar el registre d'autenticatió per a: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Nombre total de relacions descripció/fitxer: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "El resum no coincideix per a: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Nombre total dels mapes aportats: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "No s'ha pogut trobar el mètode de control %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Nombre total de cadenes globals: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Nombre total de l'espai per a dependències de versió: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "El mètode %s no s'ha iniciat correctament" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Nombre total de l'espai desaprofitat: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Inseriu el disc amb l'etiqueta: «%s» en la unitat «%s» i premeu Intro." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Nombre total de l'espai atribuït a: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"No s'han pogut analitzar o obrir les llistes de paquets o el fitxer d'estat." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "El fitxer %s del paquet està desincronitzat." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Potser voldreu executar apt-get update per a corregir aquests problemes" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "No s'han trobat paquets" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "No s'ha pogut llegir la llista de les fonts." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Heu de donar com a mínim un patró de cerca" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Memòria cau de paquets és buida" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Aquesta ordre és desaconsellada. Empreu «apt-mark showauto» en el seu lloc." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "El fitxer de memòria cau de paquets està corromput" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "El fitxer de memòria cau de paquets és una versió incompatible" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "El fitxer de memòria cau de paquets està corromput, és massa petit" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "No s'ha trobat el paquet %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Aquest APT no suporta el sistema de versions «%s»" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Fitxers de paquets:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "La memòria cau de paquets fou creada per a una arquitectura diferent" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depèn" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquets etiquetats:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Predepèn" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(no trobat)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suggereix" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instaŀlat: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomana" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidat: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Entra en conflicte" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(cap)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Reemplaça" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Etiqueta del paquet: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Fa obsolet" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Taula de versió:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Trenca" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s per a %s compilat el %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Millora" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Forma d'ús: apt-cache [opcions] ordre\n" -" apt-cache [opcions] add fitxer1 [fitxer2 …]\n" -" apt-cache [opcions] showpkg paquet1 [paquet2 …]\n" -" apt-cache [opcions] showsrc paquet1 [paquet2 …]\n" -"\n" -"apt-cache és una eina de baix nivell emprada per a consultar\n" -"la informació dels fitxers binaris de memòria cau de l'APT.\n" -"\n" -"Ordres:\n" -" gencaches - Crea la memòria cau de paquets i fonts\n" -" showpkg - Mostra informació general d'un sol paquet\n" -" showsrc - Mostra un registre d'un paquet font\n" -" stats - Mostra algunes estadístiques bàsiques\n" -" dump - Mostra el fitxer sencer en un format concís\n" -" dumpavail - Genera un registre llegible a stdout\n" -" unmet - Mostra dependències sense satisfer\n" -" search - Cerca en la llista de paquets per un patró d'expressió regular\n" -" show - Mostra un registre llegible pel paquet\n" -" showauto - Mostra una llista de paquets instaŀlats automàticanent\n" -" depends - Mostra informació de dependències (en cru) d'un paquet\n" -" rdepends - Mostra informació de dependències inverses d'un paquet\n" -" pkgnames - Llista els noms de tots els paquets del sistema\n" -" dotty - Genera gràfiques de paquets per a GraphViz\n" -" xvcg - Genera gràfiques de paquets per a xvcg\n" -" policy - Mostra la configuració de política\n" -"\n" -"Opcions:\n" -" -h Aquest text d'ajuda.\n" -" -p=? La memòria cau de paquets.\n" -" -s=? La memòria cau de la font.\n" -" -q Inhabilita l'indicador de progrés.\n" -" -i Només mostra dependències importants amb l'opció «unmet».\n" -" -c=? Llegeix aquest fitxer de configuració.\n" -" -o=? Estableix una opció de conf arbitrària, p. ex. -o dir::cache=/tmp\n" -"Vegeu les pàgines de manual apt-cache(8) i apt.conf(5) per a més " -"informació.\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 5.0.3 Disc 1»" - -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Inseriu un disc en la unitat i premeu Intro" - -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "No s'ha pogut muntar «%s» a «%s»" - -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repetiu aquest procés per a la resta de CD del vostre joc." - -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Els arguments no són en parells" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "important" -#: cmdline/apt-config.cc:89 -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 "" -"Forma d'ús: apt-config [opcions] ordre\n" -"\n" -"apt-config és una eina simple per llegir el fitxer de configuració d'APT\n" -"\n" -"Ordres:\n" -" shell - Mode shell\n" -" dump - Mostra la configuració\n" -"\n" -"Opcions:\n" -" -h Aquest text d'ajuda.\n" -" -c=? Llegeix aquest fitxer de configuració\n" -" -o=? Estableix una opció de conf arbitrària, p. ex. -o dir::cache=/tmp\n" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requerit" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estàndard" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgrecords.cc:38 #, 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" - -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Descarta la versió «%s» no disponible del paquet «%s»" +msgid "Index file type '%s' is not supported" +msgstr "El tipus de fitxer índex «%s» no està suportat" -#: cmdline/apt-get.cc:454 +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 #, c-format -msgid "Couldn't find package %s" -msgstr "No s'ha pogut trobar el paquet %s" +msgid "Regex compilation error - %s" +msgstr "S'ha produït un error de compilació de l'expressió regular - %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "S'ha marcat %s com instaŀlat manualment.\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "La memòria cau té un sistema de versions incompatible" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "S'ha marcat %s com instaŀlat automàticament.\n" +msgid "Error occurred while processing %s (%s%d)" +msgstr "S'ha produït un error en processar %s (%s%d)" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» " -"en el seu lloc." +"Uau, heu excedit el nombre de paquets que aquest APT és capaç de gestionar." -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -"S'ha produït un error intern, el solucionador de problemes ha trencat coses" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "No és possible blocar el directori de descàrrega" - -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Haureu d'especificar un paquet de codi font per a baixar" +"Uau, heu excedit el nombre de versions que aquest APT és capaç de gestionar." -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "No es pot trobar un paquet de fonts per a %s" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Uau, heu excedit el nombre de descripcions que aquest APT és capaç de " +"gestionar. " -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -"Avís: L'empaquetat de «%s» és mantingut amb el sistema de control de\n" -"versions «%s» a:\n" -"%s\n" +"Uau, heu excedit el nombre de dependències que aquest APT és capaç de " +"gestionar." -#: cmdline/apt-get.cc:791 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -"Empreu:\n" -"bzr branch %s\n" -"per obtenir les últimes actualitzacions (possiblement no publicades) del " -"paquet.\n" +"No s'ha trobat el paquet %s %s en processar les dependències del fitxer" -#: cmdline/apt-get.cc:843 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "S'està ometent el fitxer ja baixat «%s»\n" +msgid "Couldn't stat source package list %s" +msgstr "No s'ha pogut llegir la llista de paquets font %s" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "No s'ha pogut determinar l'espai lliure en %s" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "S'està llegint la llista de paquets" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "No teniu prou espai lliure en %s" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "S'estan recollint els fitxers que proveeixen" -#. 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:891 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Es necessita baixar %sB/%sB d'arxius font.\n" +msgid "Unable to write to %s" +msgstr "No es pot escriure en %s" -#. 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Es necessita baixar %sB d'arxius font.\n" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Error d'E/S en desar la memòria cau de la font" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Obtén el font %s\n" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Envia l'escenari al resoledor" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "No s'ha pogut baixar alguns arxius." +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Envia la petició al resoledor" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Baixada completa i en mode de només baixada" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Prepara per a rebre una solució" -#: cmdline/apt-get.cc:950 -#, 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" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "El resoledor extern ha fallat sense un missatge d'error adient" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Executa un resoledor extern" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)." -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "L'ordre de construir «%s» ha fallat.\n" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "La suma resum no concorda" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Ha fallat el procés fill" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "La mida no concorda" -#: cmdline/apt-get.cc:1029 -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" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operació no vàlida %s" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"No hi ha informació d'arquitectura disponible per a %s. Vegeu apt.conf(5) " -"APT::Architectures per a configurar-ho" +"No s'ha trobat l'entrada «%s» esperada, al fitxer Release (entrada errònia " +"al sources.list o fitxer malformat)" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/acquire-item.cc:1589 #, 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" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "No s'ha trobat la suma de comprovació per a «%s» al fitxer Release" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s no té dependències de construcció.\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "No hi ha cap clau pública disponible per als següents ID de clau:\n" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"La dependència %s en %s no es pot satisfer perquè %s no és permès als " -"paquets «%s»" +"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:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire-item.cc:1721 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"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 "" -"La dependència %s en %s no es pot satisfer perquè no es pot trobar el paquet " -"%s" +"S'ha produït un error durant la verificació de la signatura. El dipòsit no " +"està actualitzat i s'emprarà el fitxer d'índex anterior. Error del GPG: %s: " +"%s\n" -#: cmdline/apt-get.cc:1312 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, 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" +msgid "GPG error: %s: %s" +msgstr "S'ha produït un error amb el GPG: %s: %s" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/acquire-item.cc:1859 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"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 "" -"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" +"No ha estat possible localitzar un fitxer pel paquet %s. Això podria " +"significar que haureu d'arreglar aquest paquet manualment (segons " +"arquitectura)." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/acquire-item.cc:1925 +#, 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»" + +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"La dependència %s en %s no es pot satisfer perquè el paquet %s no té versió " -"candidata" +"L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp " +"per al paquet %s." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/vendorlist.cc:85 #, 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" +msgid "Vendor block %s contains no fingerprint" +msgstr "El camp del proveïdor %s no té una empremta digital" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, 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" +msgid "List directory %spartial is missing." +msgstr "Falta el directori de llistes %spartial." -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "No es poden processar les dependències de construcció" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Falta el directori d'arxius %spartial." -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Registre de canvis per a %s (%s)" +msgid "Unable to lock directory %s" +msgstr "No es pot blocar el directori %s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Mòduls suportats:" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "S'està obtenint el fitxer %li de %li (falten %s)" -#: cmdline/apt-get.cc:1632 -#, fuzzy -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 "" -"Forma d'ús: apt-get [opcions] ordre\n" -" apt-get [opcions] install|remove paq1 [paq2 …]\n" -" apt-get [opcions] source paq1 [paq2 …]\n" -"\n" -"apt-get és una interfície de línia d'ordres simple per\n" -"baixar i instaŀlar paquets. Les ordres més freqüents són\n" -"update i install.\n" -"\n" -"Ordres:\n" -" update - Obtén llistes noves dels paquets\n" -" upgrade - Realitza una actualització\n" -" install - Instaŀla nous paquets (el paquet és libc6, no libc6.deb)\n" -" remove - Suprimeix paquets\n" -" autoremove - Suprimeix automàticament tots els paquets en desús\n" -" purge - Suprimeix i purga paquets\n" -" source - Baixa arxius font\n" -" build-dep - Configura dependències de construcció pels paquets font\n" -" dist-upgrade - Actualitza la distribució, vegeu apt-get(8)\n" -" dselect-upgrade - Segueix les seleccions del dselect\n" -" clean - Suprimeix els fitxers d'arxiu baixats\n" -" autoclean - Suprimeix els fitxers d'arxiu antics baixats\n" -" check - Verifica que no hi hagi dependències trencades\n" -" markauto - Marca els paquets donats com a instaŀlats automàticament\n" -" unmarkauto - Marca els paquets donats com a instaŀlats manualment\n" -" changelog - Baixa i mostra el registre de canvis del paquet\n" -" download - Baixa el paquet binari al directori actual\n" -"\n" -"Opcions:\n" -" -h Aquest text d'ajuda\n" -" -q Sortida enregistrable - sense indicador de progrés\n" -" -qq Sense sortida, llevat dels errors\n" -" -d Només baixa - NO instaŀles o desempaquetes arxius\n" -" -s No actues. Realitza les ordres en mode de simulació\n" -" -y Assumeix «Sí» per a totes les preguntes i no preguntes\n" -" -f Intenta corregir un sistema amb dependències trencades\n" -" -m Intenta continuar si no es troben els arxius\n" -" -u Mostra també una llista dels paquets actualitzats\n" -" -b Construeix el paquet font després de baixar-lo\n" -" -V Mostra els números de versió detallats\n" -" -c=? Llegeix aquest fitxer de configuració\n" -" -o=? Estableix una opció de configuració arbitrària, p. ex.\n" -" -o dir::cache=/tmp\n" -"Vegeu les pàgines de manual apt-get(8), sources.list(5) i apt.conf(5)\n" -"per a obtenir més informació i opcions.\n" -" Aquest APT té superpoders bovins.\n" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "S'està obtenint el fitxer %li de %li" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Haureu d'especificar un paquet de codi font per a baixar" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "No s'ha pogut obtenir %s %s\n" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Alguns índex no s'han pogut baixar. S'han descartat, o en el seu lloc s'han " +"emprat els antics." -#: cmdline/apt-helper.cc:66 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Heu de posar algunes URI 'font' en el vostre sources.list" + +#: apt-pkg/policy.cc:83 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"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" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/policy.cc:422 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s no es pot marcar perquè no està instaŀlat.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Registre no vàlid al fitxer de preferències %s, paquet sense capçalera" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s ja estava marcat com instaŀlat manualment.\n" +msgid "Did not understand pin type %s" +msgstr "No s'ha entès el pin de tipus %s" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "No hi ha prioritat especificada per al pin (o és zero)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s ja estava marcat com instaŀlat automàticament.\n" +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)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ja estava retingut.\n" +msgid "Could not configure '%s'. " +msgstr "No s'ha pogut configurar «%s»." -#: cmdline/apt-mark.cc:243 +#: apt-pkg/packagemanager.cc:583 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s ja estava no retingut.\n" +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 "" +"Aquesta instaŀlació requereix suprimir temporalment el paquet essencial %s " +"per qüestió d'un bucle de Conflictes/Pre-dependències. Això sol ser una cosa " +"dolenta, però si realment desitgeu fer-la, activeu l'opció APT::Force-" +"LoopBreak." -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperava %s però no hi era" +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/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "S'està desmuntant el CD-ROM…\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s set on hold.\n" -msgstr "S'ha marcat %s com retingut.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "S'està esperant al disc…\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "S'està muntant el CD-ROM…\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "S'està identificant…" + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "S'ha cancel·lat la marca de retenció en %s.\n" +msgid "Stored label: %s\n" +msgstr "S'ha emmagatzemat l'etiqueta: %s\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "L'execució del dpkg ha fallat. Sou root?" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "S'està analitzant el disc per a fitxers d'índex…\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/cdrom.cc:734 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"S'han trobat %zu índexos de paquets, %zu índexos de fonts, %zu indexos de " +"traduccions i %zu signatures\n" -#: cmdline/apt.cc:47 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"No s'ha trobat cap fitxer de paquets, potser no és un disc de Debian o la " +"arquitectura és incorrecta?" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "No es pot llegir la base de dades del cdrom %s" +msgid "Found label '%s'\n" +msgstr "S'ha trobat l'etiqueta «%s»\n" -#: methods/cdrom.cc:212 +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Aquest no és un nom vàlid, torneu-ho a provar.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Si us plau, useu apt-cdrom per a que aquest CD sigui reconegut per APT. No " -"pot emprar-se apt-get update per afegir-ne de nous" +"El disc es diu:\n" +"«%s»\n" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD erroni" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "S'estan copiant les llistes de paquets…" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús." +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "S'està escrivint una nova llista de fonts\n" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "No s'ha trobat el disc" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Les entrades de la llista de fonts per a aquest disc són:\n" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fitxer no trobat" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"El paquet %s necessita ser reinstaŀlat, però no se li pot trobar un arxiu." -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "L'estat ha fallat" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat " +"causat per paquets retinguts." -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "No s'ha pogut establir el temps de modificació" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"No es poden corregir els problemes, teniu paquets retinguts que estan " +"trencats." -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI no vàlid, els URI locals no han de començar per //" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "S'està construint l'arbre de dependències" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "S'està accedint a" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versions candidates" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "No es pot determinar el nom de la màquina distant" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Dependències que genera" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "No es pot determinar el nom local" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "S'està llegint la informació de l'estat" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s" +msgid "Failed to open StateFile %s" +msgstr "No s'ha pogut obrir el fitxer d'estat %s" -#: methods/ftp.cc:225 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER ha fallat, el servidor ha dit: %s" +msgid "Failed to write temporary StateFile %s" +msgstr "No s'ha pogut escriure el fitxer d'estat temporal %s" -#: methods/ftp.cc:232 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS ha fallat, el servidor ha dit: %s" - -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"S'ha especificat un servidor intermediari però no un script d'accés, " -"Acquire::ftp::ProxyLogin està buit." +msgid "Unable to parse package file %s (1)" +msgstr "No es pot analitzar el fitxer del paquet %s (1)" -#: methods/ftp.cc:280 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "L'ordre «%s» de l'script d'accés ha fallat, el servidor ha dit: %s" +msgid "Unable to parse package file %s (2)" +msgstr "No es pot analitzar el fitxer del paquet %s (2)" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE ha fallat, el servidor ha dit: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Temps de connexió finalitzat" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "El servidor ha tancat la connexió" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Error de lectura" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Una resposta ha desbordat la memòria intermèdia." +msgid "Release '%s' for '%s' was not found" +msgstr "No s'ha trobat la versió puntual «%s» per a «%s»" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocol corromput" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "No s'ha trobat la versió «%s» per a «%s»" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Error d'escriptura" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "No s'ha trobat el paquet %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "No s'ha pogut crear un sòcol" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "No s'ha pogut trobar la tasca «%s»" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "No s'ha pogut connectar amb el sòcol de dades, connexió finalitzada" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Ha fallat" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "No s'ha pogut connectar amb el sòcol passiu." +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"No s'han pogut seleccionar les versions del paquet «%s» ja que és purament " +"virtual" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"No s'han pogut seleccionar la versió instaŀlada ni la candidata del paquet " +"«%s» ja que no estan disponibles cap de les dues" -# abastar? huh? jm -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "No s'ha pogut vincular a un connector" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"No s'ha pogut seleccionar la versió més nova del paquet «%s» ja que és " +"purament virtual" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "No s'ha pogut escoltar sobre el sòcol" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"No s'ha pogut seleccionar la versió candidata del paquet %s ja que no té " +"candidata" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "No s'ha pogut determinar el nom del sòcol" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"No s'ha pogut seleccionar la versió instaŀlada del paquet %s ja que no està " +"instaŀlada" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "No es pot enviar l'ordre PORT" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "No es pot analitzar el fitxer Release %s" -#: methods/ftp.cc:802 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "La família d'adreces %u és desconeguda (AF_*)" +msgid "No sections in Release file %s" +msgstr "No hi ha seccions al fitxer Release %s" -#: methods/ftp.cc:811 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT ha fallat, el servidor ha dit: %s" +msgid "No Hash entry in Release file %s" +msgstr "No hi ha una entrada Hash al fitxer Release %s" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "S'ha esgotat el temps de connexió al sòcol de dades" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "El camp «Valid-Until» al fitxer Release %s és invàlid" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "No es pot acceptar la connexió" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "El camp «Date» al fitxer Release %s és invàlid" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema escollint el fitxer" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "No és possible obtenir el fitxer, el servidor ha dit '%s'" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "S'ha esgotat el temps d'espera per al sòcol de dades" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Línia %lu malformada en la llista de fonts %s ([opció] no reconeixible)" -#: methods/ftp.cc:935 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Línia %lu malformada en la llista de fonts %s ([opció] massa curta)" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Consulta" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Línia %lu malformada en la llista de fonts %s ([%s] no és una assignació)" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "No es pot invocar" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Línia %lu malformada en la llista de fonts %s ([%s] no té clau)" -#: methods/connect.cc:76 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Connecting to %s (%s)" -msgstr "S'està connectant amb %s (%s)" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Línia %lu malformada en la llista de fonts %s ([%s] la clau %s no té valor)" -#: methods/connect.cc:87 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Línia %lu malformada en la llista de fonts %s (URI)" -#: methods/connect.cc:94 +#: apt-pkg/sourcelist.cc:208 #, 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)" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Línia %lu malformada en la llista de fonts %s (dist)" -#: methods/connect.cc:100 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "No es pot iniciar la connexió amb %s:%s (%s)." +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)" -#: methods/connect.cc:108 +#: apt-pkg/sourcelist.cc:217 #, 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" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)" -#: methods/connect.cc:126 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "No s'ha pogut connectar amb %s:%s (%s)." +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Connecting to %s" -msgstr "S'està connectant amb %s" +msgid "Opening %s" +msgstr "S'està obrint %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Could not resolve '%s'" -msgstr "No s'ha pogut resoldre «%s»" +msgid "Malformed line %u in source list %s (type)" +msgstr "La línia %u és malformada en la llista de fonts %s (tipus)" -#: methods/connect.cc:205 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "S'ha produït un error temporal en resoldre «%s»" +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" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" +msgid "Installing %s" +msgstr "S'està instaŀlant %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "No es pot connectar amb %s:%s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Error intern: La signatura és correcta, però no s'ha pogut determinar " -"l'emprempta digital de la clau!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "S'ha trobat almenys una signatura invàlida." +msgid "Configuring %s" +msgstr "S'està configurant el paquet %s" -#: methods/gpgv.cc:174 -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?)" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "S'està suprimint el paquet %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Completely removing %s" +msgstr "S'ha suprimit completament %s" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "S'ha produït un error desconegut en executar el gpgv" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "S'està anotant la desaparició de %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Les signatures següents són invàlides:\n" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "S'està executant l'activador de postinstaŀlació %s" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Les signatures següents no s'han pogut verificar perquè la clau pública no " -"està disponible:\n" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Manca el directori «%s»" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Els fitxers buits no poden ser arxius vàlids" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "No s'ha pogut obrir el fitxer «%s»" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "S'ha produït un error en escriure al fitxer" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "S'està preparant el paquet %s" -#: methods/http.cc:523 -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ó" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "S'està desempaquetant %s" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "S'ha produït un error en llegir des del servidor" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "S'està preparant per a configurar el paquet %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "S'ha produït un error en escriure al fitxer" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "S'ha instaŀlat el paquet %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Ha fallat la selecció" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "S'està preparant per a la supressió del paquet %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Connexió finalitzada" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "S'ha suprimit el paquet %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "S'ha produït un error en escriure al fitxer de sortida" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "S'està preparant per a suprimir completament el paquet %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "S'estan esperant les capçaleres" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "S'ha suprimit completament el paquet %s" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Línia de capçalera incorrecta" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "El servidor HTTP ha enviat una capçalera de resposta no vàlida" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "No es pot escriure en %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "El servidor HTTP ha enviat una capçalera de Content-Length no vàlida" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "El servidor HTTP ha enviat una capçalera de Content-Range no vàlida" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Aquest servidor HTTP té el suport d'abast trencat" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Esperava %s però no hi era" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Format de la data desconegut" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "S'ha interromput l'operació abans que pogués finalitzar" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Capçalera de dades no vàlida" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "No s'ha escrit cap informe perquè ja s'ha superat MaxReports" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Ha fallat la connexió" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "S'han produït problemes de depències, es deixa sense configurar" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Error intern" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica que és un error " +"consequent de una fallida anterior." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "S'està calculant l'actualització… " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " +"disc ple" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Error intern, AllUpgrade ha trencat coses" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " +"falta de memòria" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Fet" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " +"disc ple" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica d'una fallida " +"d'E/S del dpkg" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" msgstr "" +"No s'ha pogut bloquejar el directori d'administració (%s), hi ha cap altre " +"procés utilitzant-lo?" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "No es pot blocar el directori d'administració (%s), sou root?" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "S'estan corregint les dependències…" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"S'ha interromput el dpkg, hauríeu d'executar manualment «%s» per a corregir " +"el problema." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ha fallat." +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "No blocat" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "No es poden corregir les dependències" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "No es pot minimitzar el joc de versions revisades" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fet" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Potser voldreu executar «apt-get -f install» per a corregir-ho." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependències sense satisfer. Proveu-ho emprant -f." +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "No s'ha trobat la selecció %s" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" +"No s'empren blocats per a llegir el fitxer de blocat de sols lectura %s" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instaŀlat]" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "No es pot resoldre el fitxer de blocat %s" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instaŀlat]" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "No s'empren blocats per al fitxer de blocat %s de muntar nfs" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "No s'ha pogut blocar %s" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instaŀlat]" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "No es pot crear la llista de fitxers perquè «%s» no és un directori" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instaŀlat]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "S'està descartant «%s» al directori «%s» perquè no és un fitxer normal" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "[upgradable from: %s]" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" +"S'està descartant «%s» al directori «%s» perquè no té extensió del nom de " +"fitxer" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" +"S'està descartant «%s» al directori «%s» perquè té una extensió del nom de " +"fitxer invàlida" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Els següents paquets tenen dependències sense satisfer:" - -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "but %s is installed" -msgstr "però està instaŀlat %s" +msgid "Sub-process %s received a segmentation fault." +msgstr "El sub-procés %s ha rebut una violació de segment." -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "but %s is to be installed" -msgstr "però s'instaŀlarà %s" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "però no és instaŀlable" - -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "però és un paquet virtual" +msgid "Sub-process %s received signal %u." +msgstr "El sub-procés %s ha rebut un senyal %u." -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "però no està instaŀlat" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "El sub-procés %s ha retornat un codi d'error (%u)" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "però no serà instaŀlat" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "El sub-procés %s ha sortit inesperadament" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " o" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Error d'escriptura" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "S'instaŀlaran els paquets NOUS següents:" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Ha hagut un problema en tancar el fitxer gzip %s" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Es SUPRIMIRAN els paquets següents:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "No s'ha pogut obrir el fitxer %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "S'han mantingut els paquets següents:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "No s'ha pogut obrir el descriptor del fitxer %d" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "S'actualitzaran els paquets següents:" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "No s'ha pogut crear el subprocés IPC" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Es DESACTUALITZARAN els paquets següents:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "No s'ha pogut executar el compressor " -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Es canviaran els paquets retinguts següents:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Error de lectura" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "%s (due to %s) " -msgstr "%s (per %s) " +msgid "read, still have %llu to read but none left" +msgstr "llegits, falten %llu per llegir, però no queda res" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"AVÍS: Es suprimiran els paquets essencials següents.\n" -"Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escrits, falten %llu per escriure però no s'ha pogut" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu actualitzats, %lu nous a instaŀlar, " +msgid "Problem closing the file %s" +msgstr "Ha hagut un problema en tancar el fitxer %s" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstaŀlats, " +msgid "Problem renaming the file %s to %s" +msgstr "Ha hagut un problema en reanomenar el fitxer %s a %s" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "%lu downgraded, " -msgstr "%lu desactualitzats, " +msgid "Problem unlinking the file %s" +msgstr "Ha hagut un problema en desenllaçar el fitxer %s" + +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Ha hagut un problema en sincronitzar el fitxer" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu a suprimir i %lu no actualitzats.\n" +msgid "%c%s... Error!" +msgstr "%c%s… Error!" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu no instaŀlats o suprimits completament.\n" +msgid "%c%s... Done" +msgstr "%c%s… Fet" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[s/N]" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "No es pot transferir un fitxer buit a memòria" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "No s'ha pogut duplicar el descriptor del fitxer %i" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Regex compilation error - %s" -msgstr "S'ha produït un error de compilació de l'expressió regular - %s" +msgid "Couldn't make mmap of %llu bytes" +msgstr "No s'ha pogut crear un mapa de memòria de %llu octets" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "L'ordre update no pren arguments" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "No es pot tancar el mmap" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "No es pot sincronitzar el mmap" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Couldn't make mmap of %lu bytes" +msgstr "No s'ha pogut crear un mapa de memòria de %lu octets" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "No s'ha pogut truncar el fitxer %s" + +#: 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 "" +"No hi ha espai per al «Dynamic MMap». Incrementeu la mida d'APT::Cache-" +"Start. Valor actual: %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"S'ha produït un error intern, s'ha cridat a InstallPackages amb paquets " -"trencats!" +"No s'ha pogut incrementar la mida del MMap ja que el limit de %lu bytes ja " +"s'ha superat." -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Els paquets necessiten ser suprimits però s'ha inhabilitat la supressió." +"No s'ha pogut incrementar la mida del MMap ja que el creixement automàtic " +"està deshabilitat per l'usuari." + +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "No es pot obtenir informació del punt de muntatge %s" + +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "No s'ha pogut fer «stat» del cdrom" + +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreujament de tipus no reconegut: «%c»" + +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "S'està obrint el fitxer de configuració %s" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "S'ha produït un error intern, l'ordenació no ha acabat" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Error sintàctic %s:%u: No comença el camp amb un nom." -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Què estrany… les mides no coincideixen, informeu a apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Error sintàctic %s:%u: Etiqueta malformada" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "S'ha d'obtenir %sB/%sB d'arxius.\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Error sintàctic %s:%u Text extra després del valor" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "S'ha d'obtenir %sB d'arxius.\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Error sintàctic %s:%u: Es permeten directrius només al nivell més alt" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Després d'aquesta operació s'empraran %sB d'espai en disc addicional.\n" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include niats" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -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" +msgid "Syntax error %s:%u: Included from here" +msgstr "Error sintàctic %s:%u: Inclusió des d'aquí" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "You don't have enough free space in %s." -msgstr "No teniu prou espai lliure en %s." +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Error sintàctic %s:%u: Directriu no suportada «%s»" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Hi ha problemes i s'ha emprat -y sense --force-yes" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Error sintàctic %s:%u: la directiva clear requereix un arbre d'opcions com a " +"argument" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "S'ha especificat «Trivial Only» però aquesta operació no és trivial." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Error sintàctic %s:%u: Text extra al final del fitxer" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Sí, fes el que et dic!" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "No s'ha instaŀlat cap clauer a %s." -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Esteu a punt de fer quelcom potencialment nociu.\n" -"Per continuar escriviu la frase «%s»\n" -" ?] " +msgid "Command line option '%c' [from %s] is not known." +msgstr "L'opció de la línia d'ordres «%c» [de %s] és desconeguda." -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Avortat." +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "No s'entén l'opció de la línia d'ordres %s" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Voleu continuar?" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "No és lògica l'opció de la línia d'ordres %s" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Alguns fitxers no s'han pogut baixar" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "L'opció de la línia d'ordres %s precisa un paràmetre." -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"No es poden baixar alguns arxius, proveu a executar apt-get update o " -"intenteu-ho amb --fix-missing." +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =<val>" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing i els medi intercanviables actualment no estan suportats" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "L'opció %s precisa un paràmetre numèric, no '%s'" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "No es poden corregir els paquets que falten." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "L'opció '%s' és massa llarga" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "S'està avortant la instaŀlació." +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "El sentit %s no s'entén, proveu «true» (vertader) o «false» (fals)." -#: apt-private/private-install.cc:365 -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] "" -"El següent paquet ha desaparegut del vostre sistema ja\n" -"que tots els fitxers s'han sobreescrit per altres paquets:" -msgstr[1] "" -"Els següents paquets han desaparegut del vostre sistema ja\n" -"que tots els fitxers s'han sobreescrit per altres paquets:" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Operació no vàlida %s" -#: apt-private/private-install.cc:369 -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-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "El paquet %s versió %s té una dependència sense satisfer:\n" -#: apt-private/private-install.cc:390 -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-cache.cc:277 +msgid "Total package names: " +msgstr "Nombre total de paquets: " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Sembla que el supressor automàtic ha destruït alguna cosa que no deuria. Si " -"us plau, envieu un informe d'error per a l'apt." +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Nombre total d'estructures de paquets: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "La informació següent pot ajudar-vos a resoldre la situació:" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquets normals: " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "S'ha produït un error intern, el supressor automàtic ha trencat coses" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquets virtuals purs: " -#: apt-private/private-install.cc:512 -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] "" -"El paquet següent s'ha instaŀlat automàticament i ja no serà necessari:" -msgstr[1] "" -"Els paquets següents s'han instaŀlat automàticament i ja no són necessaris:" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquets virtuals únics: " -#: apt-private/private-install.cc:516 -#, 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] "" -"El paquet %lu es va instaŀlar automàticament i ja no és necessari:\n" -msgstr[1] "" -"Els paquets %lu es van s'instaŀlar automàticament i ja no són necessaris:\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquets virtuals mixtes: " -#: apt-private/private-install.cc:518 -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-cache.cc:323 +msgid " Missing: " +msgstr " Falten: " -#: apt-private/private-install.cc:612 -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-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Nombre total de versions diferents: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o " -"especifiqueu una solució)." +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Nombre total de descripcions diferents: " -#: apt-private/private-install.cc:628 -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 "" -"No s'han pogut instaŀlar alguns paquets. Això pot ser degut a que heu\n" -"demanat una situació impossible o que esteu emprant la distribució\n" -"«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-cache.cc:329 +msgid "Total dependencies: " +msgstr "Nombre total de dependències: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Paquets trencats" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Nombre total de relacions versió/fitxer: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "S'instaŀlaran els següents paquets extres:" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Nombre total de relacions descripció/fitxer: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Paquets suggerits:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Nombre total dels mapes aportats: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Paquets recomanats:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Nombre total de cadenes globals: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"S'està ometent %s, ja està instaŀlat i l'actualització no està establerta.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Nombre total de l'espai per a dependències de versió: " -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"S'està ometent '%s', no està instaŀlat i només es demana l'actualització.\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Nombre total de l'espai desaprofitat: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "No es possible la reinstaŀlació del paquet %s, no es pot baixar.\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Nombre total de l'espai atribuït a: " -#: apt-private/private-install.cc:836 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ja es troba en la versió més recent.\n" +msgid "Package file %s is out of sync." +msgstr "El fitxer %s del paquet està desincronitzat." -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versió seleccionada «%s» (%s) per a «%s»\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "No s'han trobat paquets" -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versió seleccionada «%s» (%s) per a «%s» degut a «%s»\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Heu de donar com a mínim un patró de cerca" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"El paquet «%s» no està instaŀlat, així doncs no es suprimirà. Volíeu dir " -"«%s»?\n" +"Aquesta ordre és desaconsellada. Empreu «apt-mark showauto» en el seu lloc." -#: apt-private/private-install.cc:937 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "El paquet «%s» no està instaŀlat, així doncs no es suprimirà\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Fitxers de paquets:" -#: apt-private/private-main.cc:32 -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!" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"Nota: Això només és una simulació!\n" -" L'apt-get necessita privilegis de root per a l'execució real.\n" -" Tingueu en ment que el bloqueig està desactivat,\n" -" per tant, no es depèn de la situació actual real." +"Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVÍS: No es poden autenticar els següents paquets!" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquets etiquetats:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "S'ha descartat l'avís d'autenticació.\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(no trobat)" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "No s'ha pogut autenticar alguns paquets" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instaŀlat: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Voleu instaŀlar aquests paquets sense verificar-los?" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidat: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "No s'ha pogut obtenir %s %s\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(cap)" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "No s'ha pogut canviar el nom de %s a %s" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Etiqueta del paquet: " -#: apt-private/private-sources.cc:70 +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Taula de versió:" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s per a %s compilat el %s %s\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Forma d'ús: apt-cache [opcions] ordre\n" +" apt-cache [opcions] add fitxer1 [fitxer2 …]\n" +" apt-cache [opcions] showpkg paquet1 [paquet2 …]\n" +" apt-cache [opcions] showsrc paquet1 [paquet2 …]\n" +"\n" +"apt-cache és una eina de baix nivell emprada per a consultar\n" +"la informació dels fitxers binaris de memòria cau de l'APT.\n" +"\n" +"Ordres:\n" +" gencaches - Crea la memòria cau de paquets i fonts\n" +" showpkg - Mostra informació general d'un sol paquet\n" +" showsrc - Mostra un registre d'un paquet font\n" +" stats - Mostra algunes estadístiques bàsiques\n" +" dump - Mostra el fitxer sencer en un format concís\n" +" dumpavail - Genera un registre llegible a stdout\n" +" unmet - Mostra dependències sense satisfer\n" +" search - Cerca en la llista de paquets per un patró d'expressió regular\n" +" show - Mostra un registre llegible pel paquet\n" +" showauto - Mostra una llista de paquets instaŀlats automàticanent\n" +" depends - Mostra informació de dependències (en cru) d'un paquet\n" +" rdepends - Mostra informació de dependències inverses d'un paquet\n" +" pkgnames - Llista els noms de tots els paquets del sistema\n" +" dotty - Genera gràfiques de paquets per a GraphViz\n" +" xvcg - Genera gràfiques de paquets per a xvcg\n" +" policy - Mostra la configuració de política\n" +"\n" +"Opcions:\n" +" -h Aquest text d'ajuda.\n" +" -p=? La memòria cau de paquets.\n" +" -s=? La memòria cau de la font.\n" +" -q Inhabilita l'indicador de progrés.\n" +" -i Només mostra dependències importants amb l'opció «unmet».\n" +" -c=? Llegeix aquest fitxer de configuració.\n" +" -o=? Estableix una opció de conf arbitrària, p. ex. -o dir::cache=/tmp\n" +"Vegeu les pàgines de manual apt-cache(8) i apt.conf(5) per a més " +"informació.\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Obj " +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 5.0.3 Disc 1»" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Bai:" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Inseriu un disc en la unitat i premeu Intro" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "No s'ha pogut muntar «%s» a «%s»" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "S'ha baixat %sB en %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repetiu aquest procés per a la resta de CD del vostre joc." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Treballant]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Els arguments no són en parells" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Canvi de medi: inseriu el disc amb l'etiqueta\n" -" «%s»\n" -"en la unitat «%s» i premeu Intro\n" +"Forma d'ús: apt-config [opcions] ordre\n" +"\n" +"apt-config és una eina simple per llegir el fitxer de configuració d'APT\n" +"\n" +"Ordres:\n" +" shell - Mode shell\n" +" dump - Mostra la configuració\n" +"\n" +"Opcions:\n" +" -h Aquest text d'ajuda.\n" +" -c=? Llegeix aquest fitxer de configuració\n" +" -o=? Estableix una opció de conf arbitrària, p. ex. -o dir::cache=/tmp\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "No es pot llegir %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "No es pot canviar a %s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#. 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 "No s'ha trobat el fitxer rèplica «%s»" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "No es pot llegir el fitxer rèplica «%s»" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "S'està agafant «%s» com a paquet font en lloc de '%s'\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "No es pot llegir el fitxer rèplica «%s»" +msgid "Can not find version '%s' of package '%s'" +msgstr "Descarta la versió «%s» no disponible del paquet «%s»" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:454 #, c-format -msgid "[Mirror: %s]" -msgstr "[Rèplica: %s]" +msgid "Couldn't find package %s" +msgstr "No s'ha pogut trobar el paquet %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "No s'ha pogut crear el conducte IPC al subprocés" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "S'ha marcat %s com instaŀlat manualment.\n" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "La connexió s'ha tancat prematurament" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "S'ha marcat %s com instaŀlat automàticament.\n" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Paràmetre per defecte incorrecte!" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +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." -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Premeu Intro per a continuar." +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "" +"S'ha produït un error intern, el solucionador de problemes ha trencat coses" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Voleu suprimir els paquets .deb baixats prèviament?" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "No és possible blocar el directori de descàrrega" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"S'han produït alguns errors en desempaquetar. Els paquets que s'han instaŀlat" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Haureu d'especificar un paquet de codi font per a baixar" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "seran configurats. Això pot provocar errors duplicats" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "No es pot trobar un paquet de fonts per a %s" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"o errors causats per dependències sense satisfer. Això està bé, només els " -"errors" +"Avís: L'empaquetat de «%s» és mantingut amb el sistema de control de\n" +"versions «%s» a:\n" +"%s\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:791 +#, c-format msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"anteriors a aquest missatge són importants. Corregiu-los i torneu a executar " -"[I]nstaŀla una altra vegada" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "S'està fusionant la informació disponible" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode crida a un node que encara està enllaçat" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "No s'ha trobat l'element diseminat!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "No s'ha pogut assignar la desviació" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "S'ha produït un error intern en AddDiversion" +"Empreu:\n" +"bzr branch %s\n" +"per obtenir les últimes actualitzacions (possiblement no publicades) del " +"paquet.\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "S'està intentant sobreescriure una desviació, %s -> %s i %s/%s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "S'està ometent el fitxer ja baixat «%s»\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Afegit doble d'una desviació %s -> %s" +msgid "Couldn't determine free space in %s" +msgstr "No s'ha pogut determinar l'espai lliure en %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Fitxer de conf. duplicat %s/%s" +msgid "You don't have enough free space in %s" +msgstr "No teniu prou espai lliure en %s" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#. 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:891 #, c-format -msgid "The path %s is too long" -msgstr "La ruta %s és massa llarga" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Es necessita baixar %sB/%sB d'arxius font.\n" -#: apt-inst/extract.cc:132 +#. 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:896 #, c-format -msgid "Unpacking %s more than once" -msgstr "S'està desempaquetant %s més d'una vegada" +msgid "Need to get %sB of source archives.\n" +msgstr "Es necessita baixar %sB d'arxius font.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The directory %s is diverted" -msgstr "El directori %s està desviat" +msgid "Fetch source %s\n" +msgstr "Obtén el font %s\n" -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "No s'ha pogut baixar alguns arxius." -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "La ruta de desviació és massa llarga" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Baixada completa i en mode de només baixada" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to stat %s" -msgstr "No es pot determinar l'estat de %s" +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" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Failed to rename %s to %s" -msgstr "No s'ha pogut canviar el nom de %s a %s" +msgid "Unpack command '%s' failed.\n" +msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:963 #, 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" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "No s'ha trobat el node dins de la taula" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "L'ordre de construir «%s» ha fallat.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "La ruta és massa llarga" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Ha fallat el procés fill" + +#: cmdline/apt-get.cc:1029 +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" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "S'està sobreescrivint el corresponent paquet sense versió per a %s" +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" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, 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" +msgid "Unable to get build-dependency information for %s" +msgstr "" +"No es pot obtenir informació sobre les dependències de construcció per a %s" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Unable to stat %s" -msgstr "No es pot veure l'estat de %s" +msgid "%s has no build depends.\n" +msgstr "%s no té dependències de construcció.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Failed to write file %s" -msgstr "No s'ha pogut escriure el fitxer %s" +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»" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Failed to close file %s" -msgstr "Ha fallat el tancament del fitxer %s" +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" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Aquest no és un arxiu DEB vàlid, falta el membre «%s»" +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" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Error intern, no s'ha pogut localitzar al membre %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "El fitxer de control no es pot analitzar" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Signatura de l'arxiu no vàlida" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "S'ha produït un error en llegir la capçalera del membre de l'arxiu" +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" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Invalid archive member header %s" -msgstr "La capçalera %s del membre de l'arxiu no és vàlida" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "La capçalera del membre de l'arxiu no és vàlida" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "L'arxiu és massa petit" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Ha fallat la lectura de les capçaleres de l'arxiu" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "No es poden crear els conductes" +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" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "No es pot executar el gzip " +#: cmdline/apt-get.cc:1380 +#, 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" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arxiu corromput" +#: cmdline/apt-get.cc:1395 +#, 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" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "La suma de comprovació de tar ha fallat, arxiu corromput" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "No es poden processar les dependències de construcció" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Capçalera TAR desconeguda del tipus %u, membre %s" +msgid "Changelog for %s (%s)" +msgstr "Registre de canvis per a %s (%s)" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "No es pot veure l'estat de %s." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Mòduls suportats:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Forma d'ús: apt-get [opcions] ordre\n" +" apt-get [opcions] install|remove paq1 [paq2 …]\n" +" apt-get [opcions] source paq1 [paq2 …]\n" +"\n" +"apt-get és una interfície de línia d'ordres simple per\n" +"baixar i instaŀlar paquets. Les ordres més freqüents són\n" +"update i install.\n" +"\n" +"Ordres:\n" +" update - Obtén llistes noves dels paquets\n" +" upgrade - Realitza una actualització\n" +" install - Instaŀla nous paquets (el paquet és libc6, no libc6.deb)\n" +" remove - Suprimeix paquets\n" +" autoremove - Suprimeix automàticament tots els paquets en desús\n" +" purge - Suprimeix i purga paquets\n" +" source - Baixa arxius font\n" +" build-dep - Configura dependències de construcció pels paquets font\n" +" dist-upgrade - Actualitza la distribució, vegeu apt-get(8)\n" +" dselect-upgrade - Segueix les seleccions del dselect\n" +" clean - Suprimeix els fitxers d'arxiu baixats\n" +" autoclean - Suprimeix els fitxers d'arxiu antics baixats\n" +" check - Verifica que no hi hagi dependències trencades\n" +" markauto - Marca els paquets donats com a instaŀlats automàticament\n" +" unmarkauto - Marca els paquets donats com a instaŀlats manualment\n" +" changelog - Baixa i mostra el registre de canvis del paquet\n" +" download - Baixa el paquet binari al directori actual\n" +"\n" +"Opcions:\n" +" -h Aquest text d'ajuda\n" +" -q Sortida enregistrable - sense indicador de progrés\n" +" -qq Sense sortida, llevat dels errors\n" +" -d Només baixa - NO instaŀles o desempaquetes arxius\n" +" -s No actues. Realitza les ordres en mode de simulació\n" +" -y Assumeix «Sí» per a totes les preguntes i no preguntes\n" +" -f Intenta corregir un sistema amb dependències trencades\n" +" -m Intenta continuar si no es troben els arxius\n" +" -u Mostra també una llista dels paquets actualitzats\n" +" -b Construeix el paquet font després de baixar-lo\n" +" -V Mostra els números de versió detallats\n" +" -c=? Llegeix aquest fitxer de configuració\n" +" -o=? Estableix una opció de configuració arbitrària, p. ex.\n" +" -o dir::cache=/tmp\n" +"Vegeu les pàgines de manual apt-get(8), sources.list(5) i apt.conf(5)\n" +"per a obtenir més informació i opcions.\n" +" Aquest APT té superpoders bovins.\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "S'està executant dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "El sistema d'empaquetament «%s» no està suportat" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Haureu d'especificar un paquet de codi font per a baixar" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "S'han escrit %i registres.\n" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "S'han escrit %i registres, on falten %i fitxers.\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s no es pot marcar perquè no està instaŀlat.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-mark.cc:74 #, 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" +msgid "%s was already set to manually installed.\n" +msgstr "%s ja estava marcat com instaŀlat manualment.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"S'han escrit %i registres, on falten %i fitxers i hi ha %i fitxers no " -"coincidents\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s ja estava marcat com instaŀlat automàticament.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "No s'ha pogut trobar el registre d'autenticatió per a: %s" +msgid "%s was already set on hold.\n" +msgstr "%s ja estava retingut.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Hash mismatch for: %s" -msgstr "El resum no coincideix per a: %s" +msgid "%s was already not hold.\n" +msgstr "%s ja estava no retingut.\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "The method driver %s could not be found." -msgstr "No s'ha pogut trobar el mètode de control %s." - -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" +msgid "%s set on hold.\n" +msgstr "S'ha marcat %s com retingut.\n" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Method %s did not start correctly" -msgstr "El mètode %s no s'ha iniciat correctament" +msgid "Canceled hold on %s.\n" +msgstr "S'ha cancel·lat la marca de retenció en %s.\n" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Inseriu el disc amb l'etiqueta: «%s» en la unitat «%s» i premeu Intro." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "L'execució del dpkg ha fallat. Sou root?" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"No s'han pogut analitzar o obrir les llistes de paquets o el fitxer d'estat." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Potser voldreu executar apt-get update per a corregir aquests problemes" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "No s'ha pogut llegir la llista de les fonts." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Memòria cau de paquets és buida" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "El fitxer de memòria cau de paquets està corromput" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "El fitxer de memòria cau de paquets és una versió incompatible" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "El fitxer de memòria cau de paquets està corromput, és massa petit" - -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Aquest APT no suporta el sistema de versions «%s»" - -#: apt-pkg/pkgcache.cc:179 -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:321 -msgid "Depends" -msgstr "Depèn" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Predepèn" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suggereix" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomana" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Entra en conflicte" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Reemplaça" +msgid "Unable to read the cdrom database %s" +msgstr "No es pot llegir la base de dades del cdrom %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Fa obsolet" +#: 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 "" +"Si us plau, useu apt-cdrom per a que aquest CD sigui reconegut per APT. No " +"pot emprar-se apt-get update per afegir-ne de nous" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Trenca" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD erroni" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Millora" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "important" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "No s'ha trobat el disc" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requerit" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fitxer no trobat" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estàndard" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "L'estat ha fallat" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "No s'ha pogut establir el temps de modificació" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI no vàlid, els URI locals no han de començar per //" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "El tipus de fitxer índex «%s» no està suportat" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "S'està accedint a" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La memòria cau té un sistema de versions incompatible" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "No es pot determinar el nom de la màquina distant" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "S'ha produït un error en processar %s (%s%d)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "No es pot determinar el nom local" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Uau, heu excedit el nombre de paquets que aquest APT és capaç de gestionar." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Uau, heu excedit el nombre de versions que aquest APT és capaç de gestionar." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER ha fallat, el servidor ha dit: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Uau, heu excedit el nombre de descripcions que aquest APT és capaç de " -"gestionar. " +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS ha fallat, el servidor ha dit: %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Uau, heu excedit el nombre de dependències que aquest APT és capaç de " -"gestionar." +"S'ha especificat un servidor intermediari però no un script d'accés, " +"Acquire::ftp::ProxyLogin està buit." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, 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" +msgid "Login script command '%s' failed, server said: %s" +msgstr "L'ordre «%s» de l'script d'accés ha fallat, el servidor ha dit: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "No s'ha pogut llegir la llista de paquets font %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE ha fallat, el servidor ha dit: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "S'està llegint la llista de paquets" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Temps de connexió finalitzat" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "S'estan recollint els fitxers que proveeixen" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "El servidor ha tancat la connexió" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "No es pot escriure en %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Una resposta ha desbordat la memòria intermèdia." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Error d'E/S en desar la memòria cau de la font" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocol corromput" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Envia l'escenari al resoledor" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "No s'ha pogut crear un sòcol" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Envia la petició al resoledor" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "No s'ha pogut connectar amb el sòcol de dades, connexió finalitzada" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Prepara per a rebre una solució" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Ha fallat" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "El resoledor extern ha fallat sense un missatge d'error adient" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "No s'ha pogut connectar amb el sòcol passiu." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Executa un resoledor extern" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)." +# abastar? huh? jm +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "No s'ha pogut vincular a un connector" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "La suma resum no concorda" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "No s'ha pogut escoltar sobre el sòcol" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "La mida no concorda" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "No s'ha pogut determinar el nom del sòcol" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operació no vàlida %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "No es pot enviar l'ordre PORT" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"No s'ha trobat l'entrada «%s» esperada, al fitxer Release (entrada errònia " -"al sources.list o fitxer malformat)" +msgid "Unknown address family %u (AF_*)" +msgstr "La família d'adreces %u és desconeguda (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "No s'ha trobat la suma de comprovació per a «%s» al fitxer Release" +msgid "EPRT failed, server said: %s" +msgstr "EPRT ha fallat, el servidor ha dit: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "No hi ha cap clau pública disponible per als següents ID de clau:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "S'ha esgotat el temps de connexió al sòcol de dades" + +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "No es pot acceptar la connexió" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema escollint el fitxer" + +#: methods/ftp.cc:890 #, c-format -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." +msgid "Unable to fetch file, server said '%s'" +msgstr "No és possible obtenir el fitxer, el servidor ha dit '%s'" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "S'ha esgotat el temps d'espera per al sòcol de dades" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:935 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)" +msgid "Data transfer failed, server said '%s'" +msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Consulta" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "No es pot invocar" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:76 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"S'ha produït un error durant la verificació de la signatura. El dipòsit no " -"està actualitzat i s'emprarà el fitxer d'índex anterior. Error del GPG: %s: " -"%s\n" +msgid "Connecting to %s (%s)" +msgstr "S'està connectant amb %s (%s)" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:87 #, c-format -msgid "GPG error: %s: %s" -msgstr "S'ha produït un error amb el GPG: %s: %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:94 #, 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 "" -"No ha estat possible localitzar un fitxer pel paquet %s. Això podria " -"significar que haureu d'arreglar aquest paquet manualment (segons " -"arquitectura)." +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)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:100 #, 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»" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "No es pot iniciar la connexió amb %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:108 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp " -"per al paquet %s." +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" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "El camp del proveïdor %s no té una empremta digital" +msgid "Could not connect to %s:%s (%s)." +msgstr "No s'ha pogut connectar amb %s:%s (%s)." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "List directory %spartial is missing." -msgstr "Falta el directori de llistes %spartial." +msgid "Connecting to %s" +msgstr "S'està connectant amb %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta el directori d'arxius %spartial." +msgid "Could not resolve '%s'" +msgstr "No s'ha pogut resoldre «%s»" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "No es pot blocar el directori %s" +msgid "Temporary failure resolving '%s'" +msgstr "S'ha produït un error temporal en resoldre «%s»" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "S'està obtenint el fitxer %li de %li (falten %s)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "S'està obtenint el fitxer %li de %li" +msgid "Unable to connect to %s:%s:" +msgstr "No es pot connectar amb %s:%s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Alguns índex no s'han pogut baixar. S'han descartat, o en el seu lloc s'han " -"emprat els antics." +"Error intern: La signatura és correcta, però no s'ha pogut determinar " +"l'emprempta digital de la clau!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Heu de posar algunes URI 'font' en el vostre sources.list" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "S'ha trobat almenys una signatura invàlida." -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"El valor «%s» és invàlid per a APT:Default-Release donat que aquest " -"llançament no és disponible a les fonts" +"No s'ha pogut executar el «gpgv» per a verificar la signatura (està " +"instaŀlat el gpgv?)" -#: apt-pkg/policy.cc:422 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Registre no vàlid al fitxer de preferències %s, paquet sense capçalera" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "No s'ha entès el pin de tipus %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "S'ha produït un error desconegut en executar el gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "No hi ha prioritat especificada per al pin (o és zero)" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Les signatures següents són invàlides:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" 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)" +"Les signatures següents no s'han pogut verificar perquè la clau pública no " +"està disponible:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "No s'ha pogut configurar «%s»." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Els fitxers buits no poden ser arxius vàlids" -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "S'ha produït un error en escriure al fitxer" + +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" msgstr "" -"Aquesta instaŀlació requereix suprimir temporalment el paquet essencial %s " -"per qüestió d'un bucle de Conflictes/Pre-dependències. Això sol ser una cosa " -"dolenta, però si realment desitgeu fer-la, activeu l'opció APT::Force-" -"LoopBreak." +"S'ha produït un error en llegir, el servidor remot ha tancat la connexió" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "La línia %u és massa llarga en la llista de fonts %s." +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "S'ha produït un error en llegir des del servidor" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "S'està desmuntant el CD-ROM…\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "S'ha produït un error en escriure al fitxer" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Ha fallat la selecció" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "S'està esperant al disc…\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Connexió finalitzada" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "S'està muntant el CD-ROM…\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "S'ha produït un error en escriure al fitxer de sortida" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "S'està identificant…" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "S'estan esperant les capçaleres" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "S'ha emmagatzemat l'etiqueta: %s\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Línia de capçalera incorrecta" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "S'està analitzant el disc per a fitxers d'índex…\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "El servidor HTTP ha enviat una capçalera de resposta no vàlida" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"S'han trobat %zu índexos de paquets, %zu índexos de fonts, %zu indexos de " -"traduccions i %zu signatures\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "El servidor HTTP ha enviat una capçalera de Content-Length no vàlida" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"No s'ha trobat cap fitxer de paquets, potser no és un disc de Debian o la " -"arquitectura és incorrecta?" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "El servidor HTTP ha enviat una capçalera de Content-Range no vàlida" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "S'ha trobat l'etiqueta «%s»\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Aquest servidor HTTP té el suport d'abast trencat" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Aquest no és un nom vàlid, torneu-ho a provar.\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Format de la data desconegut" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"El disc es diu:\n" -"«%s»\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Capçalera de dades no vàlida" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "S'estan copiant les llistes de paquets…" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Ha fallat la connexió" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "S'està escrivint una nova llista de fonts\n" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Error intern" -#: apt-pkg/cdrom.cc:874 -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-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "S'està calculant l'actualització… " -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"El paquet %s necessita ser reinstaŀlat, però no se li pot trobar un arxiu." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fet" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat " -"causat per paquets retinguts." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"No es poden corregir els problemes, teniu paquets retinguts que estan " -"trencats." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "S'està construint l'arbre de dependències" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versions candidates" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Dependències que genera" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "S'està llegint la informació de l'estat" - -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "No s'ha pogut obrir el fitxer d'estat %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "No s'ha pogut escriure el fitxer d'estat temporal %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "S'estan corregint les dependències…" + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " ha fallat." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "No es pot analitzar el fitxer del paquet %s (1)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "No es poden corregir les dependències" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "No es pot analitzar el fitxer del paquet %s (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "No es pot minimitzar el joc de versions revisades" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "No s'ha trobat la versió puntual «%s» per a «%s»" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fet" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "No s'ha trobat la versió «%s» per a «%s»" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Potser voldreu executar «apt-get -f install» per a corregir-ho." -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "No s'ha pogut trobar la tasca «%s»" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependències sense satisfer. Proveu-ho emprant -f." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" +msgid "[installed,upgradable to: %s]" +msgstr " [Instaŀlat]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"No s'han pogut seleccionar les versions del paquet «%s» ja que és purament " -"virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instaŀlat]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"No s'han pogut seleccionar la versió instaŀlada ni la candidata del paquet " -"«%s» ja que no estan disponibles cap de les dues" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"No s'ha pogut seleccionar la versió més nova del paquet «%s» ja que és " -"purament virtual" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instaŀlat]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instaŀlat]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"No s'ha pogut seleccionar la versió candidata del paquet %s ja que no té " -"candidata" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"No s'ha pogut seleccionar la versió instaŀlada del paquet %s ja que no està " -"instaŀlada" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "No es pot analitzar el fitxer Release %s" +msgid "but %s is installed" +msgstr "però està instaŀlat %s" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "No hi ha seccions al fitxer Release %s" +msgid "but %s is to be installed" +msgstr "però s'instaŀlarà %s" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "No hi ha una entrada Hash al fitxer Release %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "però no és instaŀlable" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "El camp «Valid-Until» al fitxer Release %s és invàlid" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "però és un paquet virtual" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "El camp «Date» al fitxer Release %s és invàlid" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "però no està instaŀlat" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "però no serà instaŀlat" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Línia %lu malformada en la llista de fonts %s ([opció] no reconeixible)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " o" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Línia %lu malformada en la llista de fonts %s ([opció] massa curta)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Els següents paquets tenen dependències sense satisfer:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Línia %lu malformada en la llista de fonts %s ([%s] no és una assignació)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "S'instaŀlaran els paquets NOUS següents:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Línia %lu malformada en la llista de fonts %s ([%s] no té clau)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Es SUPRIMIRAN els paquets següents:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Línia %lu malformada en la llista de fonts %s ([%s] la clau %s no té valor)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "S'han mantingut els paquets següents:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Línia %lu malformada en la llista de fonts %s (URI)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "S'actualitzaran els paquets següents:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Línia %lu malformada en la llista de fonts %s (dist)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Es DESACTUALITZARAN els paquets següents:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Es canviaran els paquets retinguts següents:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)" +msgid "%s (due to %s) " +msgstr "%s (per %s) " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"AVÍS: Es suprimiran els paquets essencials següents.\n" +"Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu actualitzats, %lu nous a instaŀlar, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)" +msgid "%lu reinstalled, " +msgstr "%lu reinstaŀlats, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "S'està obrint %s" +msgid "%lu downgraded, " +msgstr "%lu desactualitzats, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, 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)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu a suprimir i %lu no actualitzats.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu no instaŀlats o suprimits completament.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "S'està instaŀlant %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "S'està configurant el paquet %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "S'està suprimint el paquet %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "L'ordre update no pren arguments" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Completely removing %s" -msgstr "S'ha suprimit completament %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "S'està anotant la desaparició de %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "S'està executant l'activador de postinstaŀlació %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Manca el directori «%s»" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "No s'ha pogut obrir el fitxer «%s»" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"S'ha produït un error intern, s'ha cridat a InstallPackages amb paquets " +"trencats!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "S'està preparant el paquet %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Els paquets necessiten ser suprimits però s'ha inhabilitat la supressió." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "S'està desempaquetant %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "S'ha produït un error intern, l'ordenació no ha acabat" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "S'està preparant per a configurar el paquet %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Què estrany… les mides no coincideixen, informeu a apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "S'ha instaŀlat el paquet %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "S'ha d'obtenir %sB/%sB d'arxius.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "S'està preparant per a la supressió del paquet %s" +msgid "Need to get %sB of archives.\n" +msgstr "S'ha d'obtenir %sB d'arxius.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "S'ha suprimit el paquet %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Després d'aquesta operació s'empraran %sB d'espai en disc addicional.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "S'està preparant per a suprimir completament el paquet %s" +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" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "S'ha suprimit completament el paquet %s" +msgid "You don't have enough free space in %s." +msgstr "No teniu prou espai lliure en %s." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Hi ha problemes i s'ha emprat -y sense --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "No es pot escriure en %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "S'ha especificat «Trivial Only» però aquesta operació no és trivial." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sí, fes el que et dic!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Esteu a punt de fer quelcom potencialment nociu.\n" +"Per continuar escriviu la frase «%s»\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "S'ha interromput l'operació abans que pogués finalitzar" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Avortat." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "No s'ha escrit cap informe perquè ja s'ha superat MaxReports" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Voleu continuar?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "S'han produït problemes de depències, es deixa sense configurar" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Alguns fitxers no s'han pogut baixar" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica que és un error " -"consequent de una fallida anterior." +"No es poden baixar alguns arxius, proveu a executar apt-get update o " +"intenteu-ho amb --fix-missing." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " -"disc ple" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing i els medi intercanviables actualment no estan suportats" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " -"falta de memòria" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "No es poden corregir els paquets que falten." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "S'està avortant la instaŀlació." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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] "" +"El següent paquet ha desaparegut del vostre sistema ja\n" +"que tots els fitxers s'han sobreescrit per altres paquets:" +msgstr[1] "" +"Els següents paquets han desaparegut del vostre sistema ja\n" +"que tots els fitxers s'han sobreescrit per altres paquets:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Això ho fa el dpkg automàticament i a propòsit." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " -"disc ple" +"Es suposa que no hauriem de suprimir coses, no es pot iniciar el supressor " +"automàtic" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica d'una fallida " -"d'E/S del dpkg" +"Sembla que el supressor automàtic ha destruït alguna cosa que no deuria. Si " +"us plau, envieu un informe d'error per a l'apt." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "La informació següent pot ajudar-vos a resoldre la situació:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "S'ha produït un error intern, el supressor automàtic ha trencat coses" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"No s'ha pogut bloquejar el directori d'administració (%s), hi ha cap altre " -"procés utilitzant-lo?" +"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] "" +"El paquet següent s'ha instaŀlat automàticament i ja no serà necessari:" +msgstr[1] "" +"Els paquets següents s'han instaŀlat automàticament i ja no són necessaris:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "No es pot blocar el directori d'administració (%s), sou root?" +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] "" +"El paquet %lu es va instaŀlar automàticament i ja no és necessari:\n" +msgstr[1] "" +"Els paquets %lu es van s'instaŀlar automàticament i ja no són necessaris:\n" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Potser voldreu executar «apt-get -f install» per corregir-ho:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"S'ha interromput el dpkg, hauríeu d'executar manualment «%s» per a corregir " -"el problema." - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "No blocat" +"Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o " +"especifiqueu una solució)." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: apt-private/private-install.cc:638 +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 "" +"No s'han pogut instaŀlar alguns paquets. Això pot ser degut a que heu\n" +"demanat una situació impossible o que esteu emprant la distribució\n" +"«unstable» i alguns paquets requerits encara no han estat creats o bé\n" +"encara no els hi han introduït des d'«Incoming»." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquets trencats" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "S'instaŀlaran els següents paquets extres:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquets suggerits:" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "No s'ha trobat la selecció %s" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquets recomanats:" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:825 #, c-format -msgid "Not using locking for read only lock file %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -"No s'empren blocats per a llegir el fitxer de blocat de sols lectura %s" +"S'està ometent %s, ja està instaŀlat i l'actualització no està establerta.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:829 #, c-format -msgid "Could not open lock file %s" -msgstr "No es pot resoldre el fitxer de blocat %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"S'està ometent '%s', no està instaŀlat i només es demana l'actualització.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:841 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "No s'empren blocats per al fitxer de blocat %s de muntar nfs" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "No es possible la reinstaŀlació del paquet %s, no es pot baixar.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:846 #, c-format -msgid "Could not get lock %s" -msgstr "No s'ha pogut blocar %s" +msgid "%s is already the newest version.\n" +msgstr "%s ja es troba en la versió més recent.\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:894 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "No es pot crear la llista de fitxers perquè «%s» no és un directori" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versió seleccionada «%s» (%s) per a «%s»\n" -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/private-install.cc:899 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "S'està descartant «%s» al directori «%s» perquè no és un fitxer normal" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versió seleccionada «%s» (%s) per a «%s» degut a «%s»\n" -#: apt-pkg/contrib/fileutl.cc:412 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"S'està descartant «%s» al directori «%s» perquè no té extensió del nom de " -"fitxer" +"El paquet «%s» no està instaŀlat, així doncs no es suprimirà. Volíeu dir " +"«%s»?\n" -#: apt-pkg/contrib/fileutl.cc:421 +#: apt-private/private-install.cc:947 #, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "El paquet «%s» no està instaŀlat, així doncs no es suprimirà\n" + +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"S'està descartant «%s» al directori «%s» perquè té una extensió del nom de " -"fitxer invàlida" - -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "El sub-procés %s ha rebut una violació de segment." +"Nota: Això només és una simulació!\n" +" L'apt-get necessita privilegis de root per a l'execució real.\n" +" Tingueu en ment que el bloqueig està desactivat,\n" +" per tant, no es depèn de la situació actual real." -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "El sub-procés %s ha rebut un senyal %u." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVÍS: No es poden autenticar els següents paquets!" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "El sub-procés %s ha retornat un codi d'error (%u)" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "S'ha descartat l'avís d'autenticació.\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "El sub-procés %s ha sortit inesperadament" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "No s'ha pogut autenticar alguns paquets" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Ha hagut un problema en tancar el fitxer gzip %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Voleu instaŀlar aquests paquets sense verificar-los?" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "No s'ha pogut obrir el fitxer %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "No s'ha pogut canviar el nom de %s a %s" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file descriptor %d" -msgstr "No s'ha pogut obrir el descriptor del fitxer %d" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "No s'ha pogut crear el subprocés IPC" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "No s'ha pogut executar el compressor " +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Obj " -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "llegits, falten %llu per llegir, però no queda res" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Bai:" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escrits, falten %llu per escriure però no s'ha pogut" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Ha hagut un problema en tancar el fitxer %s" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Ha hagut un problema en reanomenar el fitxer %s a %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "S'ha baixat %sB en %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Ha hagut un problema en desenllaçar el fitxer %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Ha hagut un problema en sincronitzar el fitxer" +msgid " [Working]" +msgstr " [Treballant]" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s… Error!" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Canvi de medi: inseriu el disc amb l'etiqueta\n" +" «%s»\n" +"en la unitat «%s» i premeu Intro\n" -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Done" -msgstr "%c%s… Fet" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "…" +msgid "No mirror file '%s' found " +msgstr "No s'ha trobat el fitxer rèplica «%s»" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… %u%%" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "No es pot transferir un fitxer buit a memòria" +msgid "Can not read mirror file '%s'" +msgstr "No es pot llegir el fitxer rèplica «%s»" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "No s'ha pogut duplicar el descriptor del fitxer %i" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "No es pot llegir el fitxer rèplica «%s»" -#: apt-pkg/contrib/mmap.cc:119 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "No s'ha pogut crear un mapa de memòria de %llu octets" +msgid "[Mirror: %s]" +msgstr "[Rèplica: %s]" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "No es pot tancar el mmap" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "No s'ha pogut crear el conducte IPC al subprocés" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "No es pot sincronitzar el mmap" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "La connexió s'ha tancat prematurament" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "No s'ha pogut crear un mapa de memòria de %lu octets" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Paràmetre per defecte incorrecte!" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "No s'ha pogut truncar el fitxer %s" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Premeu Intro per a continuar." -#: 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)" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Voleu suprimir els paquets .deb baixats prèviament?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"No hi ha espai per al «Dynamic MMap». Incrementeu la mida d'APT::Cache-" -"Start. Valor actual: %lu. (man 5 apt.conf)" +"S'han produït alguns errors en desempaquetar. Els paquets que s'han instaŀlat" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "seran configurats. Això pot provocar errors duplicats" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"No s'ha pogut incrementar la mida del MMap ja que el limit de %lu bytes ja " -"s'ha superat." +"o errors causats per dependències sense satisfer. Això està bé, només els " +"errors" -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"No s'ha pogut incrementar la mida del MMap ja que el creixement automàtic " -"està deshabilitat per l'usuari." +"anteriors a aquest missatge són importants. Corregiu-los i torneu a executar " +"[I]nstaŀla una altra vegada" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "No es pot obtenir informació del punt de muntatge %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "S'està fusionant la informació disponible" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "No s'ha pogut fer «stat» del cdrom" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode crida a un node que encara està enllaçat" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreujament de tipus no reconegut: «%c»" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "No s'ha trobat l'element diseminat!" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "S'està obrint el fitxer de configuració %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "No s'ha pogut assignar la desviació" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "S'ha produït un error intern en AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Error sintàctic %s:%u: No comença el camp amb un nom." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "S'està intentant sobreescriure una desviació, %s -> %s i %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Error sintàctic %s:%u: Etiqueta malformada" +msgid "Double add of diversion %s -> %s" +msgstr "Afegit doble d'una desviació %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Error sintàctic %s:%u Text extra després del valor" +msgid "Duplicate conf file %s/%s" +msgstr "Fitxer de conf. duplicat %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Error sintàctic %s:%u: Es permeten directrius només al nivell més alt" +msgid "The path %s is too long" +msgstr "La ruta %s és massa llarga" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include niats" +msgid "Unpacking %s more than once" +msgstr "S'està desempaquetant %s més d'una vegada" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Error sintàctic %s:%u: Inclusió des d'aquí" +msgid "The directory %s is diverted" +msgstr "El directori %s està desviat" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Error sintàctic %s:%u: Directriu no suportada «%s»" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "La ruta de desviació és massa llarga" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Error sintàctic %s:%u: la directiva clear requereix un arbre d'opcions com a " -"argument" +msgid "Failed to stat %s" +msgstr "No es pot determinar l'estat de %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Error sintàctic %s:%u: Text extra al final del fitxer" +msgid "Failed to rename %s to %s" +msgstr "No s'ha pogut canviar el nom de %s a %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "No s'ha instaŀlat cap clauer a %s." +msgid "The directory %s is being replaced by a non-directory" +msgstr "El directori %s està sent reemplaçat per un no-directori" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "No s'ha trobat el node dins de la taula" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "La ruta és massa llarga" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "L'opció de la línia d'ordres «%c» [de %s] és desconeguda." +msgid "Overwrite package match with no version for %s" +msgstr "S'està sobreescrivint el corresponent paquet sense versió per a %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "No s'entén l'opció de la línia d'ordres %s" +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-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "No és lògica l'opció de la línia d'ordres %s" +msgid "Unable to stat %s" +msgstr "No es pot veure l'estat de %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "L'opció de la línia d'ordres %s precisa un paràmetre." +msgid "Failed to write file %s" +msgstr "No s'ha pogut escriure el fitxer %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =<val>" +msgid "Failed to close file %s" +msgstr "Ha fallat el tancament del fitxer %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "L'opció %s precisa un paràmetre numèric, no '%s'" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Aquest no és un arxiu DEB vàlid, falta el membre «%s»" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "L'opció '%s' és massa llarga" +msgid "Internal error, could not locate member %s" +msgstr "Error intern, no s'ha pogut localitzar al membre %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "El fitxer de control no es pot analitzar" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Signatura de l'arxiu no vàlida" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "S'ha produït un error en llegir la capçalera del membre de l'arxiu" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "El sentit %s no s'entén, proveu «true» (vertader) o «false» (fals)." +msgid "Invalid archive member header %s" +msgstr "La capçalera %s del membre de l'arxiu no és vàlida" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "La capçalera del membre de l'arxiu no és vàlida" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "L'arxiu és massa petit" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Ha fallat la lectura de les capçaleres de l'arxiu" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "No es poden crear els conductes" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "No es pot executar el gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arxiu corromput" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "La suma de comprovació de tar ha fallat, arxiu corromput" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Operació no vàlida %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Capçalera TAR desconeguda del tipus %u, membre %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3603,7 +3607,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" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3656,6 +3660,10 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de configuració, p. ex: -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Error intern, AllUpgrade ha trencat coses" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s no és un paquet DEB vàlid." diff --git a/po/cs.po b/po/cs.po index 670654a21..262db1013 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-07-08 13:46+0200\n" "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" @@ -17,3196 +17,3200 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n>=2 && n<=4 ? 1 : 2;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indexový typ souboru „%s“ není podporován" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Balík %s verze %s má nesplněné závislosti:\n" +msgid "Unable to read %s" +msgstr "Nelze číst %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Celkem názvů balíků: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Nelze přejít do %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Celkem struktur balíků: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Nebylo možno vyhodnotit %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normálních balíků: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Čistě virtuálních balíků: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Spouštím dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Jednoduchých virtuálních balíků: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Balíčkovací systém „%s“ není podporován" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Smíšených virtuálních balíků: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nebylo možno určit vhodný typ balíčkovacího systému" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Chybějících: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Zapsáno %i záznamů.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Celkem různých verzí: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, 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" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Celkem různých popisů: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Zapsáno %i záznamů s nesouhlasícími soubory (%i).\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Celkem závislostí: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Celkem vztahů ver/soubor: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Nelze najít autentizační záznam pro: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Celkem vztahů popis/soubor: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Neshoda kontrolních součtů pro: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Celkem poskytnutých mapování: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Ovladač metody %s nemohl být nalezen." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Celkem globovaných řetězců: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Celkem místa závislých verzí: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Metoda %s nebyla spuštěna správně" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Celkem jalového místa: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Vložte prosím disk nazvaný „%s“ do mechaniky „%s“ a stiskněte enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Celkem přiřazeného místa: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Seznamy balíků nebo stavový soubor nemohly být zpracovány nebo otevřeny." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Soubor balíku %s je špatně synchronizovaný." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Pro nápravu těchto problémů můžete zkusit spustit apt-get update" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nebyly nalezeny žádné balíky" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nelze přečíst seznam zdrojů." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Musíte zadat alespoň jeden vyhledávací vzor" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache balíků je prázdná" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Tento příkaz je zastaralý, použijte místo něj „apt-mark showauto“." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Cache soubor balíků je poškozen" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Cache soubor balíků má nekompatibilní verzi" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Cache soubor balíků je poškozen, je příliš malý" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Nelze najít balík %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Tato APT nepodporuje systém pro správu verzí „%s“" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Soubory balíku:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Cache balíků byla vytvořena pro jinou architekturu" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Cache není synchronizovaná, nemohu se odkázat na soubor balíku" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Závisí na" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Vypíchnuté balíky:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Předzávisí na" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nenalezeno)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Navrhuje" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalovaná verze: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Doporučuje" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidát: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Koliduje s" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(žádná)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Nahrazuje" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Vypíchnutý balík: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zastarává" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabulka verzí:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Porušuje" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Rozšiřuje" + +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "důležitý" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "vyžadovaný" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standardní" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "volitelný" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pro %s zkompilován na %s %s\n" +msgid "Index file type '%s' is not supported" +msgstr "Indexový typ souboru „%s“ není podporován" -#: cmdline/apt-cache.cc:1749 -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 "" -"Použití: apt-cache [volby] příkaz\n" -" apt-cache [volby] showpkg balík1 [balík2 …]\n" -" apt-cache [volby] showsrc balík1 [balík2 …]\n" -"\n" -"apt-cache je nízkoúrovňový nástroj pro získávání informací o balících.\n" -"\n" -"Příkazy:\n" -" gencaches - Vytvoří vyrovnávací paměť balíků i zdrojů\n" -" showpkg - Zobrazí obecné informace o balíku\n" -" showsrc - Zobrazí zdrojové záznamy\n" -" stats - Zobrazí základní statistiky\n" -" dump - Zobrazí celý soubor ve zhuštěné podobě\n" -" dumpavail - Vytiskne na výstup dostupné balíky\n" -" unmet - Zobrazí nesplněné závislosti\n" -" search - V seznamu balíků hledá regulární výraz\n" -" show - Zobrazí informace o balíku\n" -" depends - Zobrazí závislosti balíku\n" -" rdepends - Zobrazí reverzní závislosti balíku\n" -" pkgnames - Vypíše jména všech balíků v systému\n" -" dotty - Vygeneruje grafy ve formátu pro GraphViz\n" -" xvcg - Vygeneruje grafy ve formátu pro xvcg\n" -" policy - Zobrazí nastavenou politiku\n" -"\n" -"Volby:\n" -" -h Tato nápověda.\n" -" -p=? Vyrovnávací paměť balíků.\n" -" -s=? Vyrovnávací paměť zdrojů.\n" -" -q Nezobrazí indikátor postupu.\n" -" -i U příkazu unmet zobrazí pouze důležité závislosti.\n" -" -c=? Načte daný konfigurační soubor\n" -" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -"Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Zadejte prosím název tohoto média, např. „Debian 5.0.3 Disk 1“" - -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Vložte prosím médium do mechaniky a stiskněte enter" - -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Selhalo připojení „%s“ na „%s“" - -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Tento proces opakujte pro všechna zbývající média." - -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenty nejsou v párech" - -#: cmdline/apt-config.cc:89 -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 "" -"Použití: apt-config [volby] příkaz\n" -"\n" -"apt-config je jednoduchý nástroj pro čtení konfiguračního souboru APT\n" -"\n" -"Příkazy:\n" -" shell - Shellový režim\n" -" dump - Zobrazí nastavení\n" -"\n" -"Volby:\n" -" -h Tato nápověda.\n" -" -c=? Načte tento konfigurační soubor\n" -" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" - -#: cmdline/apt-get.cc:367 -#, 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" - -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignoruje se nedostupná verze „%s“ balíku „%s“" - -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Nelze najít balík %s" +msgid "Regex compilation error - %s" +msgstr "Chyba při kompilaci regulárního výrazu - %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s nastaven jako instalovaný ručně.\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Cache má nekompatibilní systém správy verzí" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s nastaven jako instalovaný automaticky.\n" - -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „apt-mark " -"manual“." - -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Vnitřní chyba, řešitel problémů pokazil věci" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nelze zamknout adresář pro stahování" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Chyba při zpracování %s (%s%d)" -#: cmdline/apt-get.cc:726 -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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Wow, překročili jste počet jmen balíků, které tato APT umí zpracovat." -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Nelze najít zdrojový balík pro %s" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Wow, překročili jste počet verzí, které tato APT umí zpracovat." -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"INFO: Balík „%s“ je spravován v systému pro správu verzí „%s“ na:\n" -"%s\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Wow, překročili jste počet popisů, které tato APT umí zpracovat." -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Pro stažení nejnovějších (možná dosud nevydaných) aktualizací balíku prosím " -"použijte:\n" -"bzr branch %s\n" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:843 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Přeskakuji dříve stažený soubor „%s“\n" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Při zpracování závislostí nebyl nalezen balík %s %s" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nelze určit volné místo v %s" +msgid "Couldn't stat source package list %s" +msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Na %s nemáte dostatek volného místa" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Čtu seznamy balíků" -#. 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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\n" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Collecting File poskytuje" -#. 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:896 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Potřebuji stáhnout %sB zdrojových archivů.\n" +msgid "Unable to write to %s" +msgstr "Nelze zapsat do %s" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Stažení zdroje %s\n" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Chyba IO při ukládání zdrojové cache" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Stažení některých archivů selhalo." +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Scénář odeslán řešiteli" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Stahování dokončeno v režimu pouze stáhnout" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Požadavek odeslán řešiteli" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Příprava na obdržení řešení" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Příkaz pro rozbalení „%s“ selhal.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Externí řešitel selhal, aniž by zanechal rozumnou chybovou hlášku" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Spuštění externího řešitele" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Příkaz pro sestavení „%s“ selhal.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Synovský proces selhal" - -#: cmdline/apt-get.cc:1029 -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í" +msgid "rename failed, %s (%s -> %s)." +msgstr "přejmenování selhalo, %s (%s -> %s)." -#: cmdline/apt-get.cc:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -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)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Neshoda kontrolních součtů" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nelze získat závislosti pro sestavení %s" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Velikosti nesouhlasí" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s nemá žádné závislosti pro sestavení.\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Neplatná operace %s" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"závislost %s pro %s nemůže být splněna, protože %s není na balících „%s“ " -"dovolena" +"V souboru Release nelze najít očekávanou položku „%s“ (chybný sources.list " +"nebo porušený soubor)" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire-item.cc:1589 #, 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" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "V souboru Release nelze najít kontrolní součet „%s“" -#: cmdline/apt-get.cc:1312 -#, 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ý" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "K následujícím ID klíčů není dostupný veřejný klíč:\n" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." 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" +"Soubor Release pro %s již expiroval (neplatný od %s). Aktualizace z tohoto " +"repositáře se nepoužijí." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"závislost %s pro %s nemůže být splněna, protože balík %s nemá kandidátskou " -"verzi" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konfliktní distribuce: %s (očekáváno %s, obdrženo %s)" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Selhalo splnění závislosti %s pro %s: %s" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Při ověřování podpisů se objevila chyba. Repositář není aktualizovaný, tudíž " +"se použijí předchozí indexové soubory. Chyba GPG: %s: %s\n" -#: cmdline/apt-get.cc:1395 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, 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:1400 -msgid "Failed to process build dependencies" -msgstr "Chyba při zpracování závislostí pro sestavení" +msgid "GPG error: %s: %s" +msgstr "Chyba GPG: %s: %s" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Seznam změn %s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podporované moduly:" - -#: cmdline/apt-get.cc:1632 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" +"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 "" -"Použití: apt-get [volby] příkaz\n" -" apt-get [volby] install|remove balík1 [balík2 …]\n" -" apt-get [volby] source balík1 [balík2 …]\n" -"\n" -"apt-get je jednoduché řádkové rozhraní pro stahování a instalování\n" -"balíků. Nejpoužívanější příkazy jsou update a install.\n" -"\n" -"Příkazy:\n" -" update - Získá seznam nových balíků\n" -" upgrade - Provede aktualizaci\n" -" install - Instaluje nové balíky (balík je libc6, ne libc6.deb)\n" -" remove - Odstraní balíky\n" -" autoremove - Automaticky odstraní nepoužívané balíky\n" -" purge - Odstraní balíky včetně konfiguračních souborů\n" -" source - Stáhne zdrojové archivy\n" -" build-dep - Pro zdrojové balíky nastaví build-dependencies\n" -" dist-upgrade - Aktualizace distribuce, viz apt-get(8)\n" -" dselect-upgrade - Řídí se podle výběru v dselectu\n" -" clean - Smaže stažené archivy\n" -" autoclean - Smaže staré stažené archivy\n" -" check - Ověří, zda se nevyskytují porušené závislosti\n" -" changelog - Stáhne a zobrazí seznam změn daného balíku\n" -" download - Stáhne binární balík to aktuálního adresáře\n" -"\n" -"Volby:\n" -" -h Tato nápověda\n" -" -q Nezobrazí indikátor postupu - vhodné pro záznam\n" -" -qq Nezobrazí nic než chyby\n" -" -d Pouze stáhne - neinstaluje ani nerozbaluje archivy\n" -" -s Pouze simuluje prováděné akce\n" -" -y Na všechny otázky odpovídá automaticky Ano\n" -" -f Zkusí opravit systém s porušenými závislostmi\n" -" -m Zkusí pokračovat, i když se nepodaří najít archivy\n" -" -u Zobrazí také seznam aktualizovaných balíků\n" -" -b Po stažení zdrojového balíku jej i zkompiluje\n" -" -V Zobrazí podrobná čísla verzí\n" -" -c=? Načte daný konfigurační soubor\n" -" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -"Více voleb naleznete v manuálových stránkách apt-get(8), sources.list(5)\n" -"a apt.conf(5).\n" -" Tato APT má schopnosti svaté krávy.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty" +"Nebylo možné nalézt soubor s balíkem %s. To by mohlo znamenat, že tento " +"balík je třeba opravit ručně (kvůli chybějící architektuře)" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-pkg/acquire-item.cc:1925 +#, 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-helper.cc:66 +#: apt-pkg/acquire-item.cc:1983 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Indexové soubory balíku jsou narušeny. Chybí pole Filename: u balíku %s." -#: cmdline/apt-mark.cc:68 -#, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s nemůže být označen, protože není nainstalovaný.\n" - -#: cmdline/apt-mark.cc:74 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s již byl nastaven jako instalovaný ručně.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Blok výrobce %s neobsahuje otisk klíče" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s již byl nastaven jako instalovaný automaticky.\n" +msgid "List directory %spartial is missing." +msgstr "Adresář seznamů %spartial chybí." -#: cmdline/apt-mark.cc:241 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s již byl podržen v aktuální verzi.\n" +msgid "Archives directory %spartial is missing." +msgstr "Archivní adresář %spartial chybí." -#: cmdline/apt-mark.cc:243 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s již nebyl držen v aktuální verzi.\n" +msgid "Unable to lock directory %s" +msgstr "Nelze uzamknout adresář %s" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Čekal jsem na %s, ale nebyl tam" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Stahuji soubor %li z %li (%s zbývá)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "%s set on hold.\n" -msgstr "%s bude podržen v aktuální verzi.\n" +msgid "Retrieving file %li of %li" +msgstr "Stahuji soubor %li z %li" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Podržení balíku %s v aktuální verzi bylo zrušeno.\n" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Spuštění dpkg selhalo. Jste root?" - -#: cmdline/apt-mark.cc:392 -#, fuzzy -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +msgid "Failed to fetch %s %s\n" +msgstr "Selhalo stažení %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Použití: apt-mark [volby] {auto|manual} balík1 [balík2 …]\n" -"\n" -"apt-mark je jednoduché řádkové rozhraní pro označování balíků jako\n" -"instalovaných ručně nebo automaticky. Také umí tyto značky vypsat.\n" -"\n" -"Příkazy:\n" -" auto - Označí dané balíky jako instalované automaticky\n" -" manual - Označí dané balíky jako instalované ručně\n" -"\n" -"Volby:\n" -" -h Tato nápověda.\n" -" -q Nezobrazí indikátor postupu - vhodné pro záznam\n" -" -qq Nezobrazí nic než chyby\n" -" -s Pouze simuluje prováděné akce\n" -" -f Přečte/zapíše ruční/automatické značky z/do daného souboru\n" -" -c=? Načte daný konfigurační soubor\n" -" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -"Více informací viz manuálové stránky apt-mark(8) a apt.conf(5)." +"Některé indexové soubory se nepodařilo stáhnout. Jsou ignorovány, nebo jsou " +"použity starší verze." -#: cmdline/apt.cc:47 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Do sources.list musíte zadat „zdrojové“ URI" + +#: apt-pkg/policy.cc:83 +#, c-format msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" +"Hodnota „%s“ není v APT::Default-Release platná, protože toto vydání není " +"dostupné v sources.list" -#: methods/cdrom.cc:203 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nelze číst databázi na cdrom %s" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Neplatný záznam v souboru preferencí %s, chybí hlavička Package" -#: methods/cdrom.cc:212 +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Nerozumím vypíchnutí typu %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Pro přidání CD do APTu použijte apt-cdrom. apt-get update nelze využít pro " -"přidávání nových CD." +"Nelze spustit okamžitou konfiguraci balíku „%s“. Podrobnosti naleznete v man " +"5 apt.conf v části APT::Immediate-Configure. (%d)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Chybné CD" +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Nelze nastavit „%s“." -#: methods/cdrom.cc:249 +#: apt-pkg/packagemanager.cc:583 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nelze odpojit CD-ROM v %s - možná se stále používá." +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 "" +"Tento běh instalace si vyžádá dočasné odstranění klíčového balíku %s kvůli " +"smyčce v Conflicts/Pre-Depends. To je často špatné, ale pokud to skutečně " +"chcete udělat, aktivujte možnost APT::Force-LoopBreak." -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk nebyl nalezen." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý." -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Soubor nebyl nalezen" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Odpojuji CD-ROM…\n" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Selhalo vyhodnocení" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Používám přípojný bod %s\n" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Nelze nastavit čas modifikace" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Čekám na disk…\n" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Neplatné URI, lokální URI nesmí začínat na //" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Připojuji CD-ROM…\n" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Přihlašuji se" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Rozpoznávám… " -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nelze určit jméno druhé strany" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Uložený název: %s \n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nelze určit lokální jméno" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Hledám na disku indexové soubory…\n" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Server zamítl naše spojení a řekl: %s" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Nalezeny indexy balíků (%zu), indexy zdrojů (%zu), indexy popisů (%zu) a " +"podpisy (%zu)\n" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "USER selhal, server řekl: %s" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Nenalezeny žádné balíky. Možná to není disk s Debianem, nebo je pro jinou " +"architekturu?" -#: methods/ftp.cc:232 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS selhal, server řekl: %s" +msgid "Found label '%s'\n" +msgstr "Nalezený název: „%s“\n" -#: methods/ftp.cc:252 +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Nejedná se o platné jméno, zkuste to znovu.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"This disc is called: \n" +"'%s'\n" msgstr "" -"Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin " -"je prázdný." +"Tento disk se nazývá: \n" +"„%s“\n" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Příkaz „%s“ přihlašovacího skriptu selhal, server řekl: %s" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopíruji seznamy balíků…" -#: methods/ftp.cc:306 +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Zapisuji nový seznam balíků\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Seznamy zdrojů na tomto disku jsou:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE selhal, server řekl: %s" +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." -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Čas spojení vypršel" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno " +"podrženými balíky." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Server uzavřel spojení" +#: apt-pkg/algorithms.cc:1088 +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." -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Chyba čtení" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Vytváří se strom závislostí" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odpověď přeplnila buffer." +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidátské verze" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generování závislostí" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Čtu stavové informace" + +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Nelze otevřít stavový soubor %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Porušení protokolu" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Nelze zapsat dočasný stavový soubor %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Chyba zápisu" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Nelze zpracovat soubor %s (1)" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nelze vytvořit socket" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nelze zpracovat soubor %s (2)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Nelze připojit datový socket, čas spojení vypršel" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Selhalo" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Verze „%s“ pro „%s“ nebyla nalezena" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nelze připojit pasivní socket." +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nelze najít balík %s" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nezískal naslouchající socket" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Nelze najít úlohu „%s“" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nelze navázat socket" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nelze naslouchat na socketu" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nelze určit jméno socketu" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Nelze vybrat verze balíku „%s“, protože je čistě virtuální" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nelze odeslat příkaz PORT" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Nelze vybrat nainstalovanou ani kandidátskou verzi balíku „%s“, protože " +"žádné takové verze nemá" -#: methods/ftp.cc:802 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Neznámá rodina adres %u (AF_*)" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "Nelze vybrat nejnovější verzi balíku „%s“, protože je čistě virtuální" -#: methods/ftp.cc:811 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT selhal, server řekl: %s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "Nelze vybrat kandidátskou verzi balíku %s, protože žádnou nemá" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Spojení datového socketu vypršelo" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "Nelze vybrat nainstalované verze balíku %s, protože není nainstalován" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nelze přijmout spojení" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Nelze zpracovat Release soubor %s" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problém s kontrolním součtem souboru" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Release soubor %s neobsahuje žádné sekce" -#: methods/ftp.cc:890 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nelze stáhnout soubor, server řekl „%s“" +msgid "No Hash entry in Release file %s" +msgstr "Release soubor %s neobsahuje Hash záznam" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datový socket vypršel" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Neplatná položka „Valid-Until“ v Release souboru %s" -#: methods/ftp.cc:935 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Přenos dat selhal, server řekl „%s“" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Neplatná položka „Date“ v Release souboru %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Dotaz" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nelze vyvolat " +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (nezpracovatelná [volba])" -#: methods/connect.cc:76 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Připojuji se k %s (%s)" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (příliš krátká [volba])" -#: methods/connect.cc:87 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] není přiřazení)" -#: methods/connect.cc:94 +#: apt-pkg/sourcelist.cc:190 #, 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)" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] nemá klíč)" -#: methods/connect.cc:100 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nelze navázat spojení na %s:%s (%s)." +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] klíč %s nemá hodnotu)" -#: methods/connect.cc:108 +#: apt-pkg/sourcelist.cc:206 #, 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" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (URI)" -#: methods/connect.cc:126 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nelze se připojit k %s:%s (%s)." +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (dist)" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Connecting to %s" -msgstr "Připojuji se k %s" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nelze přeložit „%s“" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (Absolutní dist)" -#: methods/connect.cc:205 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Dočasné selhání při zjišťování „%s“" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Něco hodně ošklivého se přihodilo při překladu „%s:%s“ (%i - %s)" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Otevírám %s" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:371 #, 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)" +msgid "Malformed line %u in source list %s (type)" +msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nelze se připojit k %s:%s:" +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ý" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Vnitřní chyba: Dobrý podpis, ale nemohu zjistit otisk klíče?!" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Byl zaznamenán nejméně jeden neplatný podpis. " +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Instaluji %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Nelze spustit „gpgv“ pro ověření podpisu (je gpgv nainstalováno?)" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Nastavuji %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Removing %s" +msgstr "Odstraňuji %s" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Neznámá chyba při spouštění gpgv" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Kompletně odstraňuji %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Následující podpisy jsou neplatné:\n" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Značím si zmizení %s" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Následující podpisy nemohly být ověřeny, protože není dostupný veřejný " -"klíč:\n" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Spouštím poinstalační spouštěč %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Prázdné soubory nejsou platnými archivy" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Adresář „%s“ chybí" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Chyba zápisu do souboru" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Nelze otevřít soubor „%s“" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Připravuji %s" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Chyba čtení ze serveru" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Rozbaluji %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Chyba zápisu do souboru" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Připravuji nastavení %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Výběr selhal" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Nainstalován %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Čas spojení vypršel" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Připravuji odstranění %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Chyba zápisu do výstupního souboru" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Odstraněn %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čekám na hlavičky" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Připravuji úplné odstranění %s" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Chybná hlavička" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Kompletně odstraněn %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Http server poslal neplatnou hlavičku odpovědi" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http server poslal neplatnou hlavičku Content-Length" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nelze zapsat do %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http server poslal neplatnou hlavičku Content-Range" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Tento HTTP server má porouchanou podporu rozsahů" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Neznámý formát data" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Čekal jsem na %s, ale nebyl tam" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Špatné datové záhlaví" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Operace byla přerušena dříve, než mohla skončit" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Spojení selhalo" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože již byl dosažen MaxReports" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Vnitřní chyba" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problémy se závislostmi - ponechávám nezkonfigurované" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Propočítávám aktualizaci… " +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " +"se jedná o chybu způsobenou předchozí chybou." -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Vnitřní chyba, AllUpgrade pokazil věci" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " +"je chyba způsobena zcela zaplněným diskem." -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Hotovo" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " +"je chyba způsobena zcela zaplněnou pamětí." -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " +"je chyba způsobena zcela zaplněným diskem." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje " +"chybu V/V dpkg." -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "Nelze uzamknout administrační adresář (%s). Používá jej jiný proces?" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Opravuji závislosti…" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nelze uzamknout administrační adresář (%s). Jste root?" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " selhalo." +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg byl přerušen, pro nápravu problému musíte ručně spustit „%s“." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nelze opravit závislosti" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Není uzamčen" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nelze minimalizovat sadu pro aktualizaci" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Hotovo" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Pro opravení můžete spustit „apt-get -f install“." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" + +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" + +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Výběr %s nenalezen" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nesplněné závislosti. Zkuste použít -f." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Nepoužívám zamykání pro zámkový soubor %s, který je pouze pro čtení" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nešlo otevřít zámkový soubor %s" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[Instalovaný]" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Nepoužívám zamykání pro zámkový soubor %s připojený přes nfs" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr "[Instalovaný]" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Nelze získat zámek %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Seznam souborů nelze vytvořit, jelikož „%s“ není adresář" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr "[Instalovaný]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignoruji „%s“ v adresáři „%s“, jelikož to není obyčejný soubor" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr "[Instalovaný]" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož nemá příponu" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož má neplatnou příponu" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Podproces %s obdržel chybu segmentace." -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Následující balíky mají nesplněné závislosti:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Podproces %s obdržel signál %u." -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "but %s is installed" -msgstr "ale %s je nainstalován" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Podproces %s vrátil chybový kód (%u)" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "but %s is to be installed" -msgstr "ale %s se bude instalovat" +msgid "Sub-process %s exited unexpectedly" +msgstr "Podproces %s neočekávaně skončil" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ale nedá se nainstalovat" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Chyba zápisu" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ale je to virtuální balík" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problém při zavírání gzip souboru %s" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ale není nainstalovaný" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nelze otevřít soubor %s" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "ale nebude se instalovat" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nelze otevřít popisovač souboru %d" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " nebo" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nelze vytvořit podproces IPC" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Následující NOVÉ balíky budou nainstalovány:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nezdařilo se spustit kompresor " -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Následující balíky budou ODSTRANĚNY:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Chyba čtení" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Následující balíky jsou podrženy v aktuální verzi:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "čtení, stále mám k přečtení %llu, ale už nic nezbývá" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Následující balíky budou aktualizovány:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "zápis, stále mám %llu k zápisu, ale nejde to" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Následující balíky budou DEGRADOVÁNY:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problém při zavírání souboru %s" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Následující podržené balíky budou změněny:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problém při přejmenování souboru %s na %s" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "%s (due to %s) " -msgstr "%s (kvůli %s) " +msgid "Problem unlinking the file %s" +msgstr "Problém při odstraňování souboru %s" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"VAROVÁNÍ: Následující nezbytné balíky budou odstraněny.\n" -"Pokud přesně nevíte, co děláte, NEDĚLEJTE to!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problém při synchronizování souboru" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualizováno, %lu nově instalováno, " +msgid "%c%s... Error!" +msgstr "%c%s… Chyba!" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu přeinstalováno, " +msgid "%c%s... Done" +msgstr "%c%s… Hotovo" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/private-output.cc:700 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "%lu downgraded, " -msgstr "%lu degradováno, " +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nelze provést mmap prázdného souboru" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu k odstranění a %lu neaktualizováno.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nelze duplikovat popisovač souboru %i" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu instalováno nebo odstraněno pouze částečně.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nešlo mmapovat %llu bajtů" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[Y/n]" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nelze zavřít mmap" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nelze synchronizovat mmap" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nešlo mmapovat %lu bajtů" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Nelze zmenšit soubor" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Regex compilation error - %s" -msgstr "Chyba při kompilaci regulárního výrazu - %s" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"Dynamickému MMapu došlo místo. Zvyšte prosím hodnotu APT::Cache-Start. " +"Současná hodnota: %lu. (man 5 apt.conf)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Příkaz update neakceptuje žádné argumenty" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "Nelze zvýšit velikost MMapu, protože limit %lu bajtů již byl dosažen." -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Nelze zvýšit velikost MMapu, protože automatické zvětšování bylo uživatelem " +"zakázáno." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Unable to stat the mount point %s" +msgstr "Nelze vyhodnotit přípojný bod %s" + +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nezdařilo se vyhodnotit cdrom" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nerozpoznaná zkratka typu: „%c“" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Otevírám konfigurační soubor %s" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Vnitřní chyba, InstallPackages byl zavolán s porušenými balíky!" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem." -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta." +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaktická chyba %s:%u: Zkomolená značka" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Vnitřní chyba, třídění nedoběhlo do konce" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Jak podivné… velikosti nesouhlasí, ohlaste to na apt@packages.debian.org" +"Syntaktická chyba %s:%u: Direktivy je možné provádět pouze na nejvyšší úrovni" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Potřebuji stáhnout %sB/%sB archivů.\n" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Potřebuji stáhnout %sB archivů.\n" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po této operaci bude na disku použito dalších %sB.\n" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva „%s“" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:900 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Po této operaci bude na disku uvolněno %sB.\n" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Syntaktická chyba %s:%u: Direktiva clear vyžaduje jako argument strom " +"možností" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "You don't have enough free space in %s." -msgstr "V %s nemáte dostatek volného místa." - -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes" - -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Udáno „pouze triviální“, ovšem toto není triviální operace." +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Ano, udělej to tak, jak říkám!" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "V %s není nainstalována žádná klíčenka." -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Chystáte se vykonat něco potenciálně škodlivého.\n" -"Pro pokračování opište frázi „%s“\n" -" ?] " +msgid "Command line option '%c' [from %s] is not known." +msgstr "Parametr příkazové řádky „%c“ [z %s] je neznámý" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Přerušeno." +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Nerozumím parametru %s příkazové řádky" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Chcete pokračovat?" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Parametr příkazové řádky %s není pravdivostní hodnota" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Některé soubory nemohly být staženy" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Volba %s vyžaduje argument." -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Nelze stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --" -"fix-missing?" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =<hodn>." -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing a výměna média nejsou momentálně podporovány" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Volba %s vyžaduje jako argument celé číslo (integer), ne „%s“" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Nelze opravit chybějící balíky." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Volba „%s“ je příliš dlouhá" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Přerušuji instalaci." +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Nechápu význam %s, zkuste true nebo false." -#: apt-private/private-install.cc:365 -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] "" -"Následující balík z tohoto systému zmizel, protože\n" -"všechny jeho soubory byly přepsány jinými balíky:" -msgstr[1] "" -"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:" -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:" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Neplatná operace %s" -#: apt-private/private-install.cc:369 -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-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Balík %s verze %s má nesplněné závislosti:\n" -#: apt-private/private-install.cc:390 -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-cache.cc:277 +msgid "Total package names: " +msgstr "Celkem názvů balíků: " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, zdá se, že AutoRemover zničil něco, co neměl.\n" -"Nahlaste prosím chybu v apt." +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Celkem struktur balíků: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -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-cache.cc:319 +msgid " Normal packages: " +msgstr " Normálních balíků: " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Vnitřní chyba, AutoRemover pokazil věci" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Čistě virtuálních balíků: " -#: apt-private/private-install.cc:512 -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] "Následující balík byl nainstalován automaticky a již není potřeba:" -msgstr[1] "" -"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" -msgstr[2] "" -"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Jednoduchých virtuálních balíků: " -#: apt-private/private-install.cc:516 -#, 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 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-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Smíšených virtuálních balíků: " -#: apt-private/private-install.cc:518 -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-cache.cc:323 +msgid " Missing: " +msgstr " Chybějících: " -#: apt-private/private-install.cc:612 -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-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Celkem různých verzí: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo " -"navrhněte řešení)." +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Celkem různých popisů: " -#: apt-private/private-install.cc:628 -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 "" -"Některé balíky nemohly být instalovány. To může znamenat, že požadujete\n" -"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-cache.cc:329 +msgid "Total dependencies: " +msgstr "Celkem závislostí: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Poškozené balíky" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Celkem vztahů ver/soubor: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Následující extra balíky budou instalovány:" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Celkem vztahů popis/soubor: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Navrhované balíky:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Celkem poskytnutých mapování: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Doporučované balíky:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Celkem globovaných řetězců: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Přeskakuji %s, protože je již nainstalován.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Celkem místa závislých verzí: " -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Přeskakuji %s, protože není nainstalován a vyžadovány jsou pouze " -"aktualizace.\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Celkem jalového místa: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Přeinstalace %s není možná, protože nelze stáhnout.\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Celkem přiřazeného místa: " -#: apt-private/private-install.cc:836 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s je již nejnovější verze.\n" +msgid "Package file %s is out of sync." +msgstr "Soubor balíku %s je špatně synchronizovaný." -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Vybraná verze „%s“ (%s) pro „%s“\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nebyly nalezeny žádné balíky" -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Vybraná verze „%s“ (%s) pro „%s“ kvůli „%s“\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Musíte zadat alespoň jeden vyhledávací vzor" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Balík „%s“ není nainstalován, nelze tedy odstranit. Mysleli jste „%s“?\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Tento příkaz je zastaralý, použijte místo něj „apt-mark showauto“." -#: apt-private/private-install.cc:937 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Balík „%s“ není nainstalován, nelze tedy odstranit\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Soubory balíku:" -#: apt-private/private-main.cc:32 -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 "" -"INFO: Toto je pouze simulace!\n" -" apt-get vyžaduje pro skutečný běh rootovská oprávnění.\n" -" Mějte také na paměti, že je vypnuto zamykání, tudíž\n" -" tyto výsledky nemusí mít s realitou nic společného!" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Cache není synchronizovaná, nemohu se odkázat na soubor balíku" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "VAROVÁNÍ: Následující balíky nemohou být autentizovány!" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Vypíchnuté balíky:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentizační varování potlačeno.\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nenalezeno)" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Některé balíky nemohly být autentizovány" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalovaná verze: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalovat tyto balíky bez ověření?" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidát: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Selhalo stažení %s %s\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(žádná)" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Selhalo přejmenování %s na %s" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Vypíchnutý balík: " -#: apt-private/private-sources.cc:70 +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabulka verzí:" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pro %s zkompilován na %s %s\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1749 +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 "" +"Použití: apt-cache [volby] příkaz\n" +" apt-cache [volby] showpkg balík1 [balík2 …]\n" +" apt-cache [volby] showsrc balík1 [balík2 …]\n" +"\n" +"apt-cache je nízkoúrovňový nástroj pro získávání informací o balících.\n" +"\n" +"Příkazy:\n" +" gencaches - Vytvoří vyrovnávací paměť balíků i zdrojů\n" +" showpkg - Zobrazí obecné informace o balíku\n" +" showsrc - Zobrazí zdrojové záznamy\n" +" stats - Zobrazí základní statistiky\n" +" dump - Zobrazí celý soubor ve zhuštěné podobě\n" +" dumpavail - Vytiskne na výstup dostupné balíky\n" +" unmet - Zobrazí nesplněné závislosti\n" +" search - V seznamu balíků hledá regulární výraz\n" +" show - Zobrazí informace o balíku\n" +" depends - Zobrazí závislosti balíku\n" +" rdepends - Zobrazí reverzní závislosti balíku\n" +" pkgnames - Vypíše jména všech balíků v systému\n" +" dotty - Vygeneruje grafy ve formátu pro GraphViz\n" +" xvcg - Vygeneruje grafy ve formátu pro xvcg\n" +" policy - Zobrazí nastavenou politiku\n" +"\n" +"Volby:\n" +" -h Tato nápověda.\n" +" -p=? Vyrovnávací paměť balíků.\n" +" -s=? Vyrovnávací paměť zdrojů.\n" +" -q Nezobrazí indikátor postupu.\n" +" -i U příkazu unmet zobrazí pouze důležité závislosti.\n" +" -c=? Načte daný konfigurační soubor\n" +" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" +"Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Cíl " +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Zadejte prosím název tohoto média, např. „Debian 5.0.3 Disk 1“" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Mám:" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Vložte prosím médium do mechaniky a stiskněte enter" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Selhalo připojení „%s“ na „%s“" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Staženo %sB za %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Tento proces opakujte pro všechna zbývající média." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Pracuji]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenty nejsou v párech" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Výměna média: Vložte disk nazvaný\n" -" „%s“\n" -"do mechaniky „%s“ a stiskněte enter\n" +"Použití: apt-config [volby] příkaz\n" +"\n" +"apt-config je jednoduchý nástroj pro čtení konfiguračního souboru APT\n" +"\n" +"Příkazy:\n" +" shell - Shellový režim\n" +" dump - Zobrazí nastavení\n" +"\n" +"Volby:\n" +" -h Tato nápověda.\n" +" -c=? Načte tento konfigurační soubor\n" +" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Nelze číst %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Nelze přejít do %s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" -#. 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 "Soubor se zrcadly „%s“ nebyl nalezen " +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nelze číst soubor se zrcadly „%s“" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Vybírám „%s“ jako zdrojový balík místo „%s“\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nelze číst soubor se zrcadly „%s“" +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignoruje se nedostupná verze „%s“ balíku „%s“" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:454 #, c-format -msgid "[Mirror: %s]" -msgstr "[Zrcadlo: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Selhalo vytvoření meziprocesové roury k podprocesu" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Spojení bylo předčasně ukončeno" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Chybné standardní nastavení!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pro pokračování stiskněte enter." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Chcete smazat všechny dříve stažené .deb soubory?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Během rozbalování se vyskytly chyby. Balíky, které se nainstalovaly" +msgid "Couldn't find package %s" +msgstr "Nelze najít balík %s" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "budou zkonfigurovány. To může způsobit duplicitní chybové hlášky" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s nastaven jako instalovaný ručně.\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "o nesplněných závislostech. To je v pořádku, důležité jsou pouze" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s nastaven jako instalovaný automaticky.\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "chyby nad touto hláškou. Opravte je a poté znovu spusťte [I]nstalovat" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Slučuji dostupné informace" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Pokus o uvolnění uzlu (DropNode) na stále propojeném uzlu" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Nelze lokalizovat hashovací prvek!" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „apt-mark " +"manual“." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nelze alokovat diverzi" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Vnitřní chyba, řešitel problémů pokazil věci" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Vnitřní chyba při AddDiversion" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nelze zamknout adresář pro stahování" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Pokus o přepsání diverze, %s -> %s a %s/%s" +#: cmdline/apt-get.cc:726 +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" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dvojí přidání diverze %s -> %s" +msgid "Unable to find a source package for %s" +msgstr "Nelze najít zdrojový balík pro %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Duplicitní konfigurační soubor %s/%s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"INFO: Balík „%s“ je spravován v systému pro správu verzí „%s“ na:\n" +"%s\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:791 #, c-format -msgid "The path %s is too long" -msgstr "Cesta %s je příliš dlouhá" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Pro stažení nejnovějších (možná dosud nevydaných) aktualizací balíku prosím " +"použijte:\n" +"bzr branch %s\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Unpacking %s more than once" -msgstr "Rozbaluji %s vícekrát" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Přeskakuji dříve stažený soubor „%s“\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "The directory %s is diverted" -msgstr "Adresář %s je odkloněn" +msgid "Couldn't determine free space in %s" +msgstr "Nelze určit volné místo v %s" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:882 #, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Diverzní cesta je příliš dlouhá" +msgid "You don't have enough free space in %s" +msgstr "Na %s nemáte dostatek volného místa" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#. 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:891 #, c-format -msgid "Failed to stat %s" -msgstr "Nelze vyhodnotit %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. 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:896 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Selhalo přejmenování %s na %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Potřebuji stáhnout %sB zdrojových archivů.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Adresář %s bude nahrazen neadresářem" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Nelze nalézt uzel v jeho hashovacím kbelíku" +msgid "Fetch source %s\n" +msgstr "Stažení zdroje %s\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Cesta je příliš dlouhá" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Stažení některých archivů selhalo." -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Přepsat vyhovující balík bez udání verze pro %s" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Stahování dokončeno v režimu pouze stáhnout" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:950 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Soubor %s/%s přepisuje ten z balíku %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %s\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to stat %s" -msgstr "Nelze vyhodnotit %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Příkaz pro rozbalení „%s“ selhal.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Failed to write file %s" -msgstr "Selhal zápis souboru %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Failed to close file %s" -msgstr "Selhalo zavření souboru %s" +msgid "Build command '%s' failed.\n" +msgstr "Příkaz pro sestavení „%s“ selhal.\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Synovský proces selhal" + +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Toto není platný DEB archiv, chybí část „%s“" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +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)" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Vnitřní chyba, nemohu najít část %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Nelze získat závislosti pro sestavení %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Nezpracovatelný kontrolní soubor" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s nemá žádné závislosti pro sestavení.\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Neplatný podpis archivu" +#: cmdline/apt-get.cc:1271 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"závislost %s pro %s nemůže být splněna, protože %s není na balících „%s“ " +"dovolena" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Chyba při čtení záhlaví prvku archivu" +#: cmdline/apt-get.cc:1289 +#, 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" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Invalid archive member header %s" -msgstr "Neplatné záhlaví prvku archivu %s" +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ý" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Neplatné záhlaví prvku archivu" +#: cmdline/apt-get.cc:1351 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +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" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archiv je příliš krátký" +#: cmdline/apt-get.cc:1357 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"závislost %s pro %s nemůže být splněna, protože balík %s nemá kandidátskou " +"verzi" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Chyba při čtení hlaviček archivu" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Selhalo splnění závislosti %s pro %s: %s" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Selhalo vytvoření roury" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Závislosti pro sestavení %s nemohly být splněny." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Selhalo spuštění gzipu " +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Chyba při zpracování závislostí pro sestavení" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Porušený archiv" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Seznam změn %s (%s)" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Kontrolní součet taru selhal, archiv je poškozený" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Podporované moduly:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Neznámá hlavička TARu typ %u, člen %s" +#: cmdline/apt-get.cc:1632 +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 "" +"Použití: apt-get [volby] příkaz\n" +" apt-get [volby] install|remove balík1 [balík2 …]\n" +" apt-get [volby] source balík1 [balík2 …]\n" +"\n" +"apt-get je jednoduché řádkové rozhraní pro stahování a instalování\n" +"balíků. Nejpoužívanější příkazy jsou update a install.\n" +"\n" +"Příkazy:\n" +" update - Získá seznam nových balíků\n" +" upgrade - Provede aktualizaci\n" +" install - Instaluje nové balíky (balík je libc6, ne libc6.deb)\n" +" remove - Odstraní balíky\n" +" autoremove - Automaticky odstraní nepoužívané balíky\n" +" purge - Odstraní balíky včetně konfiguračních souborů\n" +" source - Stáhne zdrojové archivy\n" +" build-dep - Pro zdrojové balíky nastaví build-dependencies\n" +" dist-upgrade - Aktualizace distribuce, viz apt-get(8)\n" +" dselect-upgrade - Řídí se podle výběru v dselectu\n" +" clean - Smaže stažené archivy\n" +" autoclean - Smaže staré stažené archivy\n" +" check - Ověří, zda se nevyskytují porušené závislosti\n" +" changelog - Stáhne a zobrazí seznam změn daného balíku\n" +" download - Stáhne binární balík to aktuálního adresáře\n" +"\n" +"Volby:\n" +" -h Tato nápověda\n" +" -q Nezobrazí indikátor postupu - vhodné pro záznam\n" +" -qq Nezobrazí nic než chyby\n" +" -d Pouze stáhne - neinstaluje ani nerozbaluje archivy\n" +" -s Pouze simuluje prováděné akce\n" +" -y Na všechny otázky odpovídá automaticky Ano\n" +" -f Zkusí opravit systém s porušenými závislostmi\n" +" -m Zkusí pokračovat, i když se nepodaří najít archivy\n" +" -u Zobrazí také seznam aktualizovaných balíků\n" +" -b Po stažení zdrojového balíku jej i zkompiluje\n" +" -V Zobrazí podrobná čísla verzí\n" +" -c=? Načte daný konfigurační soubor\n" +" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" +"Více voleb naleznete v manuálových stránkách apt-get(8), sources.list(5)\n" +"a apt.conf(5).\n" +" Tato APT má schopnosti svaté krávy.\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Nebylo možno vyhodnotit %s." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Spouštím dpkg" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/init.cc:146 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Balíčkovací systém „%s“ není podporován" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nebylo možno určit vhodný typ balíčkovacího systému" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s nemůže být označen, protože není nainstalovaný.\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Wrote %i records.\n" -msgstr "Zapsáno %i záznamů.\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s již byl nastaven jako instalovaný ručně.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-mark.cc:76 #, 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" +msgid "%s was already set to automatically installed.\n" +msgstr "%s již byl nastaven jako instalovaný automaticky.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Zapsáno %i záznamů s nesouhlasícími soubory (%i).\n" +msgid "%s was already set on hold.\n" +msgstr "%s již byl podržen v aktuální verzi.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-mark.cc:243 #, 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" +msgid "%s was already not hold.\n" +msgstr "%s již nebyl držen v aktuální verzi.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Nelze najít autentizační záznam pro: %s" +msgid "%s set on hold.\n" +msgstr "%s bude podržen v aktuální verzi.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Neshoda kontrolních součtů pro: %s" +msgid "Canceled hold on %s.\n" +msgstr "Podržení balíku %s v aktuální verzi bylo zrušeno.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Ovladač metody %s nemohl být nalezen." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Spuštění dpkg selhalo. Jste root?" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Použití: apt-mark [volby] {auto|manual} balík1 [balík2 …]\n" +"\n" +"apt-mark je jednoduché řádkové rozhraní pro označování balíků jako\n" +"instalovaných ručně nebo automaticky. Také umí tyto značky vypsat.\n" +"\n" +"Příkazy:\n" +" auto - Označí dané balíky jako instalované automaticky\n" +" manual - Označí dané balíky jako instalované ručně\n" +"\n" +"Volby:\n" +" -h Tato nápověda.\n" +" -q Nezobrazí indikátor postupu - vhodné pro záznam\n" +" -qq Nezobrazí nic než chyby\n" +" -s Pouze simuluje prováděné akce\n" +" -f Přečte/zapíše ruční/automatické značky z/do daného souboru\n" +" -c=? Načte daný konfigurační soubor\n" +" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" +"Více informací viz manuálové stránky apt-mark(8) a apt.conf(5)." -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoda %s nebyla spuštěna správně" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/acquire-worker.cc:455 +#: methods/cdrom.cc:203 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Vložte prosím disk nazvaný „%s“ do mechaniky „%s“ a stiskněte enter." +msgid "Unable to read the cdrom database %s" +msgstr "Nelze číst databázi na cdrom %s" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: 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 "" -"Seznamy balíků nebo stavový soubor nemohly být zpracovány nebo otevřeny." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Pro nápravu těchto problémů můžete zkusit spustit apt-get update" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nelze přečíst seznam zdrojů." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache balíků je prázdná" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Cache soubor balíků je poškozen" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Cache soubor balíků má nekompatibilní verzi" +"Pro přidání CD do APTu použijte apt-cdrom. apt-get update nelze využít pro " +"přidávání nových CD." -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Cache soubor balíků je poškozen, je příliš malý" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Chybné CD" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:249 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Tato APT nepodporuje systém pro správu verzí „%s“" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Cache balíků byla vytvořena pro jinou architekturu" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Závisí na" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Předzávisí na" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Navrhuje" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Doporučuje" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Koliduje s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nelze odpojit CD-ROM v %s - možná se stále používá." -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Nahrazuje" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk nebyl nalezen." -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zastarává" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Soubor nebyl nalezen" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Porušuje" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Selhalo vyhodnocení" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Rozšiřuje" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Nelze nastavit čas modifikace" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "důležitý" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Neplatné URI, lokální URI nesmí začínat na //" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "vyžadovaný" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Přihlašuji se" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standardní" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nelze určit jméno druhé strany" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "volitelný" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nelze určit lokální jméno" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Server zamítl naše spojení a řekl: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:225 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexový typ souboru „%s“ není podporován" +msgid "USER failed, server said: %s" +msgstr "USER selhal, server řekl: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cache má nekompatibilní systém správy verzí" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS selhal, server řekl: %s" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin " +"je prázdný." + +#: methods/ftp.cc:280 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Chyba při zpracování %s (%s%d)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Příkaz „%s“ přihlašovacího skriptu selhal, server řekl: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Wow, překročili jste počet jmen balíků, které tato APT umí zpracovat." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE selhal, server řekl: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Wow, překročili jste počet verzí, které tato APT umí zpracovat." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Čas spojení vypršel" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Wow, překročili jste počet popisů, které tato APT umí zpracovat." +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Server uzavřel spojení" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Odpověď přeplnila buffer." -#: apt-pkg/pkgcachegen.cc:576 -#, 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" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Porušení protokolu" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nelze vytvořit socket" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Čtu seznamy balíků" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Nelze připojit datový socket, čas spojení vypršel" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Collecting File poskytuje" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Selhalo" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Nelze zapsat do %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nelze připojit pasivní socket." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Chyba IO při ukládání zdrojové cache" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo nezískal naslouchající socket" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Scénář odeslán řešiteli" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nelze navázat socket" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Požadavek odeslán řešiteli" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nelze naslouchat na socketu" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Příprava na obdržení řešení" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nelze určit jméno socketu" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "Externí řešitel selhal, aniž by zanechal rozumnou chybovou hlášku" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nelze odeslat příkaz PORT" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Spuštění externího řešitele" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Neznámá rodina adres %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "přejmenování selhalo, %s (%s -> %s)." +msgid "EPRT failed, server said: %s" +msgstr "EPRT selhal, server řekl: %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Neshoda kontrolních součtů" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Spojení datového socketu vypršelo" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Velikosti nesouhlasí" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nelze přijmout spojení" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Neplatná operace %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problém s kontrolním součtem souboru" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"V souboru Release nelze najít očekávanou položku „%s“ (chybný sources.list " -"nebo porušený soubor)" +msgid "Unable to fetch file, server said '%s'" +msgstr "Nelze stáhnout soubor, server řekl „%s“" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datový socket vypršel" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:935 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "V souboru Release nelze najít kontrolní součet „%s“" +msgid "Data transfer failed, server said '%s'" +msgstr "Přenos dat selhal, server řekl „%s“" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "K následujícím ID klíčů není dostupný veřejný klíč:\n" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Dotaz" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Soubor Release pro %s již expiroval (neplatný od %s). Aktualizace z tohoto " -"repositáře se nepoužijí." +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nelze vyvolat " -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konfliktní distribuce: %s (očekáváno %s, obdrženo %s)" +msgid "Connecting to %s (%s)" +msgstr "Připojuji se k %s (%s)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:87 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Při ověřování podpisů se objevila chyba. Repositář není aktualizovaný, tudíž " -"se použijí předchozí indexové soubory. Chyba GPG: %s: %s\n" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:94 #, c-format -msgid "GPG error: %s: %s" -msgstr "Chyba GPG: %s: %s" +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)" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:100 #, 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 "" -"Nebylo možné nalézt soubor s balíkem %s. To by mohlo znamenat, že tento " -"balík je třeba opravit ručně (kvůli chybějící architektuře)" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nelze navázat spojení na %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:108 #, 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“" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Nelze se připojit k %s:%s (%s), čas spojení vypršel" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:126 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Indexové soubory balíku jsou narušeny. Chybí pole Filename: u balíku %s." +msgid "Could not connect to %s:%s (%s)." +msgstr "Nelze se připojit k %s:%s (%s)." -#: apt-pkg/vendorlist.cc:85 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Blok výrobce %s neobsahuje otisk klíče" +msgid "Connecting to %s" +msgstr "Připojuji se k %s" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "List directory %spartial is missing." -msgstr "Adresář seznamů %spartial chybí." +msgid "Could not resolve '%s'" +msgstr "Nelze přeložit „%s“" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archivní adresář %spartial chybí." +msgid "Temporary failure resolving '%s'" +msgstr "Dočasné selhání při zjišťování „%s“" -#: apt-pkg/acquire.cc:99 -#, c-format -msgid "Unable to lock directory %s" -msgstr "Nelze uzamknout adresář %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Něco hodně ošklivého se přihodilo při překladu „%s:%s“ (%i - %s)" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Stahuji soubor %li z %li (%s zbývá)" +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)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Stahuji soubor %li z %li" +msgid "Unable to connect to %s:%s:" +msgstr "Nelze se připojit k %s:%s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Některé indexové soubory se nepodařilo stáhnout. Jsou ignorovány, nebo jsou " -"použity starší verze." +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Vnitřní chyba: Dobrý podpis, ale nemohu zjistit otisk klíče?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Do sources.list musíte zadat „zdrojové“ URI" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Byl zaznamenán nejméně jeden neplatný podpis. " -#: apt-pkg/policy.cc:83 +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Nelze spustit „gpgv“ pro ověření podpisu (je gpgv nainstalováno?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Hodnota „%s“ není v APT::Default-Release platná, protože toto vydání není " -"dostupné v sources.list" -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Neplatný záznam v souboru preferencí %s, chybí hlavička Package" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Nerozumím vypíchnutí typu %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Neznámá chyba při spouštění gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Následující podpisy jsou neplatné:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Nelze spustit okamžitou konfiguraci balíku „%s“. Podrobnosti naleznete v man " -"5 apt.conf v části APT::Immediate-Configure. (%d)" +"Následující podpisy nemohly být ověřeny, protože není dostupný veřejný " +"klíč:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Nelze nastavit „%s“." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Prázdné soubory nejsou platnými archivy" -#: apt-pkg/packagemanager.cc:583 -#, 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 "" -"Tento běh instalace si vyžádá dočasné odstranění klíčového balíku %s kvůli " -"smyčce v Conflicts/Pre-Depends. To je často špatné, ale pokud to skutečně " -"chcete udělat, aktivujte možnost APT::Force-LoopBreak." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Chyba zápisu do souboru" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Odpojuji CD-ROM…\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Chyba čtení ze serveru" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Používám přípojný bod %s\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Chyba zápisu do souboru" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Čekám na disk…\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Výběr selhal" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Připojuji CD-ROM…\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Čas spojení vypršel" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Rozpoznávám… " +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Chyba zápisu do výstupního souboru" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Uložený název: %s \n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Čekám na hlavičky" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Hledám na disku indexové soubory…\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Chybná hlavička" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Http server poslal neplatnou hlavičku odpovědi" + +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Http server poslal neplatnou hlavičku Content-Length" + +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Http server poslal neplatnou hlavičku Content-Range" + +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Tento HTTP server má porouchanou podporu rozsahů" + +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Neznámý formát data" + +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Špatné datové záhlaví" + +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Spojení selhalo" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Vnitřní chyba" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Propočítávám aktualizaci… " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Hotovo" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Nalezeny indexy balíků (%zu), indexy zdrojů (%zu), indexy popisů (%zu) a " -"podpisy (%zu)\n" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"Nenalezeny žádné balíky. Možná to není disk s Debianem, nebo je pro jinou " -"architekturu?" -#: apt-pkg/cdrom.cc:771 +#: apt-private/private-list.cc:164 #, c-format -msgid "Found label '%s'\n" -msgstr "Nalezený název: „%s“\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Nejedná se o platné jméno, zkuste to znovu.\n" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Tento disk se nazývá: \n" -"„%s“\n" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Opravuji závislosti…" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopíruji seznamy balíků…" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " selhalo." -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Zapisuji nový seznam balíků\n" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nelze opravit závislosti" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Seznamy zdrojů na tomto disku jsou:\n" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nelze minimalizovat sadu pro aktualizaci" -#: apt-pkg/algorithms.cc:265 -#, c-format -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-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Hotovo" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno " -"podrženými balíky." +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Pro opravení můžete spustit „apt-get -f install“." -#: apt-pkg/algorithms.cc:1088 -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-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nesplněné závislosti. Zkuste použít -f." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Vytváří se strom závislostí" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidátské verze" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr "[Instalovaný]" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generování závislostí" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr "[Instalovaný]" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Čtu stavové informace" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Nelze otevřít stavový soubor %s" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr "[Instalovaný]" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Nelze zapsat dočasný stavový soubor %s" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr "[Instalovaný]" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:249 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nelze zpracovat soubor %s (1)" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nelze zpracovat soubor %s (2)" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:435 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno" +msgid "but %s is installed" +msgstr "ale %s je nainstalován" -#: apt-pkg/cacheset.cc:492 +#: apt-private/private-output.cc:437 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Verze „%s“ pro „%s“ nebyla nalezena" +msgid "but %s is to be installed" +msgstr "ale %s se bude instalovat" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Nelze najít úlohu „%s“" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ale nedá se nainstalovat" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ale je to virtuální balík" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ale není nainstalovaný" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Nelze vybrat verze balíku „%s“, protože je čistě virtuální" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ale nebude se instalovat" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Nelze vybrat nainstalovanou ani kandidátskou verzi balíku „%s“, protože " -"žádné takové verze nemá" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " nebo" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "Nelze vybrat nejnovější verzi balíku „%s“, protože je čistě virtuální" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Následující balíky mají nesplněné závislosti:" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "Nelze vybrat kandidátskou verzi balíku %s, protože žádnou nemá" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Následující NOVÉ balíky budou nainstalovány:" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "Nelze vybrat nainstalované verze balíku %s, protože není nainstalován" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Následující balíky budou ODSTRANĚNY:" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Nelze zpracovat Release soubor %s" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Následující balíky jsou podrženy v aktuální verzi:" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Release soubor %s neobsahuje žádné sekce" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Následující balíky budou aktualizovány:" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Release soubor %s neobsahuje Hash záznam" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Následující balíky budou DEGRADOVÁNY:" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Neplatná položka „Valid-Until“ v Release souboru %s" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Následující podržené balíky budou změněny:" -#: apt-pkg/indexrecords.cc:149 +#: apt-private/private-output.cc:668 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Neplatná položka „Date“ v Release souboru %s" +msgid "%s (due to %s) " +msgstr "%s (kvůli %s) " -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"VAROVÁNÍ: Následující nezbytné balíky budou odstraněny.\n" +"Pokud přesně nevíte, co děláte, NEDĚLEJTE to!" -#: apt-pkg/sourcelist.cc:170 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (nezpracovatelná [volba])" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualizováno, %lu nově instalováno, " -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (příliš krátká [volba])" +msgid "%lu reinstalled, " +msgstr "%lu přeinstalováno, " -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] není přiřazení)" +msgid "%lu downgraded, " +msgstr "%lu degradováno, " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] nemá klíč)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu k odstranění a %lu neaktualizováno.\n" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] klíč %s nemá hodnotu)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu instalováno nebo odstraněno pouze částečně.\n" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (URI)" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (dist)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (Absolutní dist)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Příkaz update neakceptuje žádné argumenty" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-update.cc:90 #, c-format -msgid "Opening %s" -msgstr "Otevírám %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-show.cc:156 #, 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ý" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instaluji %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Vnitřní chyba, InstallPackages byl zavolán s porušenými balíky!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Nastavuji %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Odstraňuji %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Vnitřní chyba, třídění nedoběhlo do konce" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Kompletně odstraňuji %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Jak podivné… velikosti nesouhlasí, ohlaste to na apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:99 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Noting disappearance of %s" -msgstr "Značím si zmizení %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Potřebuji stáhnout %sB/%sB archivů.\n" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Spouštím poinstalační spouštěč %s" +msgid "Need to get %sB of archives.\n" +msgstr "Potřebuji stáhnout %sB archivů.\n" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Directory '%s' missing" -msgstr "Adresář „%s“ chybí" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po této operaci bude na disku použito dalších %sB.\n" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file '%s'" -msgstr "Nelze otevřít soubor „%s“" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po této operaci bude na disku uvolněno %sB.\n" -#: apt-pkg/deb/dpkgpm.cc:989 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing %s" -msgstr "Připravuji %s" +msgid "You don't have enough free space in %s." +msgstr "V %s nemáte dostatek volného místa." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Rozbaluji %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Připravuji nastavení %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Udáno „pouze triviální“, ovšem toto není triviální operace." -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Nainstalován %s" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ano, udělej to tak, jak říkám!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:222 #, c-format -msgid "Preparing for removal of %s" -msgstr "Připravuji odstranění %s" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Chystáte se vykonat něco potenciálně škodlivého.\n" +"Pro pokračování opište frázi „%s“\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Odstraněn %s" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Přerušeno." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Připravuji úplné odstranění %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Chcete pokračovat?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Kompletně odstraněn %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Některé soubory nemohly být staženy" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Nelze stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --" +"fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nelze zapsat do %s" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing a výměna média nejsou momentálně podporovány" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nelze opravit chybějící balíky." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Přerušuji instalaci." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Operace byla přerušena dříve, než mohla skončit" +#: apt-private/private-install.cc:366 +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] "" +"Následující balík z tohoto systému zmizel, protože\n" +"všechny jeho soubory byly přepsány jinými balíky:" +msgstr[1] "" +"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:" +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:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože již byl dosažen MaxReports" +#: apt-private/private-install.cc:370 +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." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problémy se závislostmi - ponechávám nezkonfigurované" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Neměli bychom mazat věci, nemůžu spustit AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " -"se jedná o chybu způsobenou předchozí chybou." +"Hmm, zdá se, že AutoRemover zničil něco, co neměl.\n" +"Nahlaste prosím chybu v apt." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " -"je chyba způsobena zcela zaplněným diskem." +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Následující informace vám mohou pomoci vyřešit tuto situaci:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Vnitřní chyba, AutoRemover pokazil věci" + +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " -"je chyba způsobena zcela zaplněnou pamětí." +"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] "Následující balík byl nainstalován automaticky a již není potřeba:" +msgstr[1] "" +"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" +msgstr[2] "" +"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:517 +#, 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 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" + +#: apt-private/private-install.cc:519 +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“." + +#: apt-private/private-install.cc:612 +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“:" + +#: apt-private/private-install.cc:614 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " -"je chyba způsobena zcela zaplněným diskem." +"Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo " +"navrhněte řešení)." -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:638 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"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 "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje " -"chybu V/V dpkg." +"Některé balíky nemohly být instalovány. To může znamenat, že požadujete\n" +"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." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "Nelze uzamknout administrační adresář (%s). Používá jej jiný proces?" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Poškozené balíky" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nelze uzamknout administrační adresář (%s). Jste root?" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Následující extra balíky budou instalovány:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg byl přerušen, pro nápravu problému musíte ručně spustit „%s“." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Navrhované balíky:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Není uzamčen" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Doporučované balíky:" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: apt-private/private-install.cc:825 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Přeskakuji %s, protože je již nainstalován.\n" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:829 #, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Přeskakuji %s, protože není nainstalován a vyžadovány jsou pouze " +"aktualizace.\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:841 #, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Přeinstalace %s není možná, protože nelze stáhnout.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:846 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "%s is already the newest version.\n" +msgstr "%s je již nejnovější verze.\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:894 #, c-format -msgid "Selection %s not found" -msgstr "Výběr %s nenalezen" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Vybraná verze „%s“ (%s) pro „%s“\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:899 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Nepoužívám zamykání pro zámkový soubor %s, který je pouze pro čtení" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Vybraná verze „%s“ (%s) pro „%s“ kvůli „%s“\n" -#: apt-pkg/contrib/fileutl.cc:195 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Could not open lock file %s" -msgstr "Nešlo otevřít zámkový soubor %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Balík „%s“ není nainstalován, nelze tedy odstranit. Mysleli jste „%s“?\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:947 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nepoužívám zamykání pro zámkový soubor %s připojený přes nfs" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Balík „%s“ není nainstalován, nelze tedy odstranit\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Nelze získat zámek %s" +#: apt-private/private-main.cc:32 +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 "" +"INFO: Toto je pouze simulace!\n" +" apt-get vyžaduje pro skutečný běh rootovská oprávnění.\n" +" Mějte také na paměti, že je vypnuto zamykání, tudíž\n" +" tyto výsledky nemusí mít s realitou nic společného!" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Seznam souborů nelze vytvořit, jelikož „%s“ není adresář" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "VAROVÁNÍ: Následující balíky nemohou být autentizovány!" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignoruji „%s“ v adresáři „%s“, jelikož to není obyčejný soubor" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentizační varování potlačeno.\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož nemá příponu" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Některé balíky nemohly být autentizovány" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož má neplatnou příponu" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalovat tyto balíky bez ověření?" -#: apt-pkg/contrib/fileutl.cc:824 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Selhalo přejmenování %s na %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Podproces %s obdržel chybu segmentace." +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Cíl " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Mám:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "Podproces %s obdržel signál %u." +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Staženo %sB za %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Podproces %s vrátil chybový kód (%u)" +msgid " [Working]" +msgstr " [Pracuji]" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Podproces %s neočekávaně skončil" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Výměna média: Vložte disk nazvaný\n" +" „%s“\n" +"do mechaniky „%s“ a stiskněte enter\n" -#: apt-pkg/contrib/fileutl.cc:913 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problém při zavírání gzip souboru %s" +msgid "No mirror file '%s' found " +msgstr "Soubor se zrcadly „%s“ nebyl nalezen " -#: apt-pkg/contrib/fileutl.cc:1101 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Could not open file %s" -msgstr "Nelze otevřít soubor %s" +msgid "Can not read mirror file '%s'" +msgstr "Nelze číst soubor se zrcadly „%s“" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nelze číst soubor se zrcadly „%s“" + +#: methods/mirror.cc:445 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Nelze otevřít popisovač souboru %d" +msgid "[Mirror: %s]" +msgstr "[Zrcadlo: %s]" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nelze vytvořit podproces IPC" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Selhalo vytvoření meziprocesové roury k podprocesu" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nezdařilo se spustit kompresor " +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Spojení bylo předčasně ukončeno" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "čtení, stále mám k přečtení %llu, ale už nic nezbývá" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Chybné standardní nastavení!" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "zápis, stále mám %llu k zápisu, ale nejde to" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pro pokračování stiskněte enter." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problém při zavírání souboru %s" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Chcete smazat všechny dříve stažené .deb soubory?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problém při přejmenování souboru %s na %s" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Během rozbalování se vyskytly chyby. Balíky, které se nainstalovaly" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problém při odstraňování souboru %s" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "budou zkonfigurovány. To může způsobit duplicitní chybové hlášky" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problém při synchronizování souboru" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "o nesplněných závislostech. To je v pořádku, důležité jsou pouze" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s… Chyba!" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "chyby nad touto hláškou. Opravte je a poté znovu spusťte [I]nstalovat" + +#: dselect/update:30 +msgid "Merging available information" +msgstr "Slučuji dostupné informace" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s… Hotovo" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Pokus o uvolnění uzlu (DropNode) na stále propojeném uzlu" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "…" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Nelze lokalizovat hashovací prvek!" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… %u%%" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nelze alokovat diverzi" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nelze provést mmap prázdného souboru" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Vnitřní chyba při AddDiversion" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nelze duplikovat popisovač souboru %i" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Pokus o přepsání diverze, %s -> %s a %s/%s" -#: apt-pkg/contrib/mmap.cc:119 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nešlo mmapovat %llu bajtů" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nelze zavřít mmap" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nelze synchronizovat mmap" +msgid "Double add of diversion %s -> %s" +msgstr "Dvojí přidání diverze %s -> %s" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nešlo mmapovat %lu bajtů" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Nelze zmenšit soubor" +msgid "Duplicate conf file %s/%s" +msgstr "Duplicitní konfigurační soubor %s/%s" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, 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 "" -"Dynamickému MMapu došlo místo. Zvyšte prosím hodnotu APT::Cache-Start. " -"Současná hodnota: %lu. (man 5 apt.conf)" +msgid "The path %s is too long" +msgstr "Cesta %s je příliš dlouhá" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "Nelze zvýšit velikost MMapu, protože limit %lu bajtů již byl dosažen." +msgid "Unpacking %s more than once" +msgstr "Rozbaluji %s vícekrát" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Nelze zvýšit velikost MMapu, protože automatické zvětšování bylo uživatelem " -"zakázáno." +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Adresář %s je odkloněn" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nelze vyhodnotit přípojný bod %s" +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-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nezdařilo se vyhodnotit cdrom" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Diverzní cesta je příliš dlouhá" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nerozpoznaná zkratka typu: „%c“" +msgid "Failed to stat %s" +msgstr "Nelze vyhodnotit %s" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Opening configuration file %s" -msgstr "Otevírám konfigurační soubor %s" +msgid "Failed to rename %s to %s" +msgstr "Selhalo přejmenování %s na %s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Adresář %s bude nahrazen neadresářem" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaktická chyba %s:%u: Zkomolená značka" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Nelze nalézt uzel v jeho hashovacím kbelíku" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Cesta je příliš dlouhá" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Syntaktická chyba %s:%u: Direktivy je možné provádět pouze na nejvyšší úrovni" +msgid "Overwrite package match with no version for %s" +msgstr "Přepsat vyhovující balík bez udání verze pro %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Soubor %s/%s přepisuje ten z balíku %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud" +msgid "Unable to stat %s" +msgstr "Nelze vyhodnotit %s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva „%s“" +msgid "Failed to write file %s" +msgstr "Selhal zápis souboru %s" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Syntaktická chyba %s:%u: Direktiva clear vyžaduje jako argument strom " -"možností" +msgid "Failed to close file %s" +msgstr "Selhalo zavření souboru %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Toto není platný DEB archiv, chybí část „%s“" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "No keyring installed in %s." -msgstr "V %s není nainstalována žádná klíčenka." +msgid "Internal error, could not locate member %s" +msgstr "Vnitřní chyba, nemohu najít část %s" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Parametr příkazové řádky „%c“ [z %s] je neznámý" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Nezpracovatelný kontrolní soubor" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Nerozumím parametru %s příkazové řádky" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Neplatný podpis archivu" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Parametr příkazové řádky %s není pravdivostní hodnota" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Chyba při čtení záhlaví prvku archivu" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Option %s requires an argument." -msgstr "Volba %s vyžaduje argument." +msgid "Invalid archive member header %s" +msgstr "Neplatné záhlaví prvku archivu %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =<hodn>." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Neplatné záhlaví prvku archivu" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Volba %s vyžaduje jako argument celé číslo (integer), ne „%s“" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archiv je příliš krátký" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Volba „%s“ je příliš dlouhá" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Chyba při čtení hlaviček archivu" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Nechápu význam %s, zkuste true nebo false." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Selhalo vytvoření roury" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Selhalo spuštění gzipu " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Porušený archiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Kontrolní součet taru selhal, archiv je poškozený" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Neplatná operace %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Neznámá hlavička TARu typ %u, člen %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3550,7 +3554,7 @@ msgstr "Chyba čtení při výpočtu MD5" msgid "Problem unlinking %s" msgstr "Problém s odlinkováním %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3602,6 +3606,10 @@ msgstr "" " -c=? Načte tento konfigurační soubor\n" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Vnitřní chyba, AllUpgrade pokazil věci" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s není platný DEB balík." diff --git a/po/cy.po b/po/cy.po index b15c61792..9fa432356 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries <daf@muse.19inch.net>\n" "Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n" @@ -15,3228 +15,3232 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Ni chynhelir y math ffeil mynegai '%s'" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Mae gan y pecyn %s fersiwn %s ddibyniaeth heb ei gwrdd:\n" +msgid "Unable to read %s" +msgstr "Ni ellir darllen %s" -#: cmdline/apt-cache.cc:277 -#, fuzzy -msgid "Total package names: " -msgstr "Cyfanswm Enwau Pecynnau : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Ni ellir newid i %s" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Cyfanswm Enwau Pecynnau : " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Ni ellir gwneud stat() o %s." -#: cmdline/apt-cache.cc:319 -#, fuzzy -msgid " Normal packages: " -msgstr " Pecynnau Normal: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -#, fuzzy -msgid " Pure virtual packages: " -msgstr " Pecynnau Cwbl Rhithwir: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -#, fuzzy -msgid " Single virtual packages: " -msgstr " Pecynnau Rhithwir Sengl: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Ni chynhelir y system pecynnu '%s'" -#: cmdline/apt-cache.cc:322 +#: apt-pkg/init.cc:162 #, fuzzy -msgid " Mixed virtual packages: " -msgstr " Pecynnau Rhithwir Cymysg: " +msgid "Unable to determine a suitable packaging system type" +msgstr "Ni ellir canfod math system addas" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Ar Goll: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "" -#: cmdline/apt-cache.cc:325 -#, fuzzy -msgid "Total distinct versions: " -msgstr "Cyfanswm Fersiynau Gwahanol: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Cyfanswm Fersiynau Gwahanol: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "" -#: cmdline/apt-cache.cc:329 -#, fuzzy -msgid "Total dependencies: " -msgstr "Cyfanswm Dibyniaethau: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" -#: cmdline/apt-cache.cc:332 -#, fuzzy -msgid "Total ver/file relations: " -msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Camgyfatebiaeth swm MD5" -#: cmdline/apt-cache.cc:336 -#, fuzzy -msgid "Total Provides mappings: " -msgstr "Cyfanswm Mapiau Darpariath: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Methwyd canfod y gyrrydd dull %s." -#: cmdline/apt-cache.cc:348 -#, fuzzy -msgid "Total globbed strings: " -msgstr "Cyfanswm Llinynau Glob: " +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "" -#: cmdline/apt-cache.cc:362 -#, fuzzy -msgid "Total dependency version space: " -msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Ni gychwynodd y dull %s yn gywir" -#: cmdline/apt-cache.cc:367 -#, fuzzy -msgid "Total slack space: " -msgstr "Cyfanswm gofod Slac: " +#: apt-pkg/acquire-worker.cc:455 +#, fuzzy, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" +" '%s'\n" +"yn y gyrriant '%s' a gwasgwch Enter\n" -#: cmdline/apt-cache.cc:375 -#, fuzzy -msgid "Total space accounted for: " -msgstr "Cyfanswm Gofod Cyfrifwyd: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Methwyd agor neu ramadegu'r ffeil rhestrau neu statws." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Efallai hoffech rhedege apt-get update er mwyn cywiro'r problemau hyn." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Canfuwyd dim pecyn" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Methwyd darllen y rhestr ffynhonellau." -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Rhaid i chi ddarparu un patrwm yn union" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Storfa pecyn gwag" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Mae'r ffeil storfa pecyn yn llygredig" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 -#, c-format -msgid "Unable to locate package %s" -msgstr "Ni ellir lleoli'r pecyn %s" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn" -#: cmdline/apt-cache.cc:1545 +#: apt-pkg/pkgcache.cc:169 #, fuzzy -msgid "Package files:" -msgstr "Ffeiliau Pecynnau:" +msgid "The package cache file is corrupted, it is too small" +msgstr "Mae'r ffeil storfa pecyn yn llygredig" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Nid yw'r storfa yn gydamserol, ni ellir croesgyfeirio ffeil pecym" +# FIXME: capitalisation? +#: apt-pkg/pkgcache.cc:174 +#, fuzzy, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Nid yw'r APT yma yn cefnogi'r system fersiwn '%s'" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -#, fuzzy -msgid "Pinned packages:" -msgstr "Pecynnau wedi eu Pinio:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(heb ganfod)" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Dibynnu" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Wedi Sefydlu: " +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "CynDdibynnu" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Ymgeisydd: " +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Awgrymu" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(dim)" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Argymell" -#: cmdline/apt-cache.cc:1620 -#, fuzzy -msgid " Package pin: " -msgstr " Pin Pecyn: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Gwrthdaro" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -#, fuzzy -msgid " Version table:" -msgstr " Tabl Fersiynnau:" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Amnewid" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s ar gyfer %s %s wedi ei grynhow ar %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Darfodi" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Defnydd: apt-cache [opsiynnau] gorchymyn\n" -" apt-cache [opsiynnau] add ffeil1 [ffeil2 ...]\n" -" apt-cache [opsiynnau] showpkg pecyn1 [pecyn2 ...]\n" -" apt-cache [opsiynnau] showsrc pecyn1 [pecyn2 ...]\n" -"\n" -"Mae apt-cache yn erfyn lefel isel a ddefnyddir i ymdrin a ffeiliau storfa " -"deuol APT, ac ymholi gwybodaeth ohonynt\n" -"\n" -"Gorchmynion:\n" -" add - Ychwanegu ffeil pecyn i'r storfa ffynhonell\n" -" gencaches - Adeiladu'r storfeydd pecyn a ffynhonell\n" -" showpkg - Dangos gwybodaeth cyffredinol am becyn sengl\n" -" showsrc - Dangos cofnodion ffynhonell\n" -" stats - Dangos rhyw ystadegau sylfaenol\n" -" dump - Dangos y ffeil cyfan mewn ffurf syml\n" -" dumpavail - Dangos ffeil argaeledd\n" -" unmet - Dangos dibyniaethau heb eu darparu\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\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" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" - -#: cmdline/apt-cdrom.cc:91 -#, fuzzy -msgid "Please insert a Disc in the drive and press enter" -msgstr "" -"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" -" '%s'\n" -"yn y gyrriant '%s' a gwasgwch Enter\n" - -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Methwyd ailenwi %s at %s" - -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" - -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Nid yw ymresymiadau mewn parau" - -#: cmdline/apt-config.cc:89 -#, fuzzy -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 "" -"Defnydd: apt-config [opsiynnau] gorchymyn\n" -"\n" -"Mae apt-config yn erfyn syml sy'n darllen ffeil cyfluniad APT\n" -"\n" -"Gorchmynion:\n" -" shell - Modd plisgyn\n" -" dump - Dangod y cyfluniad\n" -"\n" -"Opsiynnau:\n" -" -h Y testun cymorth hwn\n" -" -c=? Darllen y ffeil cyfluniad\n" -" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Methwyd canfod pecyn %s" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Methwyd canfod pecyn %s" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Methwyd canfod pecyn %s" - -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" - -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" - -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Methwyd canfod pecyn %s" - -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" - -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" - -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" - -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -#, fuzzy -msgid "Internal error, problem resolver broke stuff" -msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" - -#: cmdline/apt-get.cc:726 -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:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" - -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" - -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" - -#: cmdline/apt-get.cc:843 -#, 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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, fuzzy, c-format -msgid "Couldn't determine free space in %s" -msgstr "Does dim digon o le rhydd yn %s gennych" - -#: cmdline/apt-get.cc:882 -#, 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:891 -#, 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" - -#: cmdline/apt-get.cc:902 -#, fuzzy, c-format -msgid "Fetch source %s\n" -msgstr "Cyrchu Ffynhonell %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Methwyd cyrchu rhai archifau." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" - -#: cmdline/apt-get.cc:950 -#, 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:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Methodd y gorchymyn dadbacio '%s'.\n" - -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "" - -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Methodd y gorchymyn adeiladu '%s'.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Methodd proses plentyn" - -#: cmdline/apt-get.cc:1029 -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:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" - -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, 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:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" - -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " -"%s" - -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " -"%s" - -#: cmdline/apt-get.cc:1312 -#, 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:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" 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:1357 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" msgstr "" -"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " -"%s" - -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." - -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Methwyd prosesu dibyniaethau adeiladu" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "pwysig" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Yn cysylltu i %s (%s)" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "angenrheidiol" -#: cmdline/apt-get.cc:1591 -#, fuzzy -msgid "Supported modules:" -msgstr "Modylau a Gynhelir:" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "safonnol" -# FIXME: split -#: cmdline/apt-get.cc:1632 -#, fuzzy -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 "" -"Defnydd: apt-get [opsiynnau] gorchymyn\n" -" apt-get [opsiynnau] install|remove pecyn1 [pecyn2 ...]\n" -" apt-get [opsiynnau] source pecyn1 [pecyn2 ...]\n" -"\n" -"Mae apt-get yn rhyngwyneb llinell orchymyn syml ar gyfer lawrlwytho a\n" -"sefydlu pecynnau. Y gorchmynion \"update\" a \"install\" yw'r rhai a\n" -"ddefnyddir amlaf.\n" -"\n" -"Gorchmynion:\n" -" update - Cyrchu rhestrau pecynnau newydd\n" -" update - Uwchraddio pecynnau wedi sefydlu\n" -" install - Sefydlu pecynnau newydd (defnyddiwch libc6 nid libc6.deb)\n" -" remove - Tynnu pecynnau\n" -" source - Lawrlwytho archifau ffynhonell\n" -" build-dep - Cyflunio dibyniaethau adeiladu ar gyfer pecynnau ffynhonell\n" -" dist-upgrade - Uwchraddio dosraniad, gweler apt-get(8)\n" -" dselect-upgrade - Dilyn dewisiadau dselect\n" -" clean - Dileu ffeiliau archif wedi eu lawrlwytho\n" -" autoclean - Dileu hen ffeiliau archif wedi eu lawrlwytho\n" -" check - Gwirio fod dim dibyniaethau torredig\n" -"\n" -"Opsiynnau:\n" -" -h Y testun cymorth hwn.\n" -" -q Allbwn cofnodadwy - dim dangosydd cynydd\n" -" -qq Dim allbwn ar wahan i wallau\n" -" -d Lawrlwytho yn unig - peidio a sefydlu na dadbacio archifau\n" -" -s Peidio gweithredu. Gwneir efelychiad trefn.\n" -" -y Peidio a gofyn cwestiynnau a chymryd yn ganiataol mai 'Ie' yw'r ateb\n" -" -f Ceisio mynd ymlaen os mae'r prawf integredd yn methu\n" -" -m Ceisio mynd ymlaen os methir dod o hyd i archifau\n" -" -u Dangos rhestr o archifau a uwchraddir hefyd\n" -" -b Adeiladu'r pecyn ffynhonell ar ôl ei lawrlwytho\n" -" -V Dangos rhifau fersiwn cyflawn\n" -" -c=? Darllen y ffeil cyfluniad hwn\n" -" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" -"\n" -"Gweler y tudalenau llawlyfr apt-get(8) sources.list(5) a apt.conf(5) am\n" -"fwy o wybodaeth ac opsiynnau.\n" -"\n" -" Mae gan yr APT hwn bŵerau buwch hudol.\n" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opsiynnol" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ychwanegol" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Ni chynhelir y math ffeil mynegai '%s'" + +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Gwall crynhoi patrwm - %s" + +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +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:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" +"Jiw, rhagoroch chi'r nifer o enwau pecyn mae'r APT hwn yn gallu ei drin." -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." + +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." + +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ond nid yw wedi ei sefydlu" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +#, fuzzy +msgid "Reading package lists" +msgstr "Yn Darllen Rhestrau Pecynnau" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Yn Casglu Darpariaethau Ffeil" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Ni ellir ysgrifennu i %s" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 -#, fuzzy, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Arhoswyd am %s ond nid oedd e yna" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Gwall M/A wrth gadw'r storfa ffynhonell" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Methwyd agor %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: methods/cdrom.cc:203 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Methwyd darllen y cronfa ddata CD-ROM %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "methwyd ailenwi, %s (%s -> %s)." -#: methods/cdrom.cc:212 +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "Camgyfatebiaeth swm MD5" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Camgyfatebiaeth maint" + +#: apt-pkg/acquire-item.cc:173 #, fuzzy +msgid "Invalid file format" +msgstr "Gweithred annilys %s" + +#: apt-pkg/acquire-item.cc:1573 +#, c-format msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Defnyddiwch apt-cdrom fel bo APT yn adnabod y CD hwn. Ni ellir defnyddio apt-" -"get update i ychwanegu CDau newydd." -#: methods/cdrom.cc:222 -#, fuzzy -msgid "Wrong CD-ROM" -msgstr "CD Anghywir" +# FIXME: number? +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: methods/cdrom.cc:249 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Ni ellir datglymu'r CD-ROM yn %s. Efallai ei fod e'n cael ei ddefnyddio." -#: methods/cdrom.cc:254 -#, fuzzy -msgid "Disk not found." -msgstr "Ffeil heb ei ganfod" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Ffeil heb ei ganfod" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Methwyd stat()" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Methwyd gosod amser newid" +# FIXME: case +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi " +"drwsio'r pecyn hyn a law. (Oherwydd pensaerniaeth coll.)" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI annilys: rhaid i URIs lleol beidio a cychwyn efo \"//\"" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Yn mewngofnodi" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Mae'r ffeiliau mynegai pecyn yn llygr. Dim maes Filename: gan y pecyn %s." -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Ni ellir darganfod enw'r cymar" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Nid yw'r bloc darparwr %s yn cynnwys ôl bys" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Ni ellir darganfod yr enw lleol" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format -msgid "The server refused the connection and said: %s" -msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s" +msgid "Archives directory %spartial is missing." +msgstr "Mae'r cyfeiriadur archif %spartial ar goll." -#: methods/ftp.cc:225 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Ni ellir cloi'r cyfeiriadur rhestr" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "USER failed, server said: %s" -msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/acquire.cc:904 +#, fuzzy, c-format +msgid "Retrieving file %li of %li" +msgstr "Yn Darllen Rhestr Ffeiliau" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s" +msgid "Failed to fetch %s %s\n" +msgstr "Methwyd cyrchu %s %s\n" -#: methods/ftp.cc:252 +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Penodwyd gweinydd dirprwy ond dim sgript mengofnodi. (Mae Acquire::ftp::" -"ProxyLogin yn wag.)" +"Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen " +"rai eu defnyddio yn lle." -# FIXME -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Methodd y gorchymyn sgript mewngofnodi '%s'; meddai'r gweinydd: %s" +# FIXME: ...file +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Rhaid i chi rhoi rhai URI 'source' yn eich ffeil sources.list" -#: methods/ftp.cc:306 +#: apt-pkg/policy.cc:83 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Goramser cysylltu" +# FIXME: literal +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Cofnod annilys yn y ffeil hoffterau, dim pennawd 'Package'" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Caeodd y gweinydd y cysylltiad" +# FIXME: tense +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Methwyd daeall y math pin %s" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Gwall darllen" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Gorlifodd ateb y byffer." +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Llygr protocol" +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Methwyd agor ffeil %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Gwall ysgrifennu" +# FIXME: %s may have an arbirrary length +#: apt-pkg/packagemanager.cc:583 +#, 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 "" +"Bydd y rhediad sefydlu hwn yn gorfodi tynnu'r pecyn angenrheidiol %s " +"oherwydd lŵp gwrthdaro/cynddibynu. Mae hyn yn aml yn wael, ond os ydych wir " +"eisiau ei wneud ef, gweithredwch yr opsiwn APT::Force-LoopBreak." -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Methwyd creu soced" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad" +#: apt-pkg/cdrom.cc:571 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "CD Anghywir" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Methwyd" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "" -#: methods/ftp.cc:718 +#: apt-pkg/cdrom.cc:599 #, fuzzy -msgid "Could not connect passive socket." -msgstr "Methwyd cysylltu soced goddefol" - -# FIXME -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Methodd getaddrinfo gael soced gwrando" +msgid "Waiting for disc...\n" +msgstr "Yn aros am benawdau" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Methwyd rhwymo soced" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Methwyd gwrando ar y soced" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Methwyd canfod enw'r soced" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Methwyd danfod gorchymyn PORT" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "" -#: methods/ftp.cc:802 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Teulu cyfeiriad anhysbys %u (AF_*)" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" + +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s" +msgid "Found label '%s'\n" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Goramserodd cysylltiad y soced data" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Methwyd derbyn cysylltiad" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem wrth stwnshio ffeil" +#: apt-pkg/cdrom.cc:819 +#, fuzzy +msgid "Copying package lists..." +msgstr "Yn Darllen Rhestrau Pecynnau" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'" +#: apt-pkg/cdrom.cc:863 +#, fuzzy +msgid "Writing new source list\n" +msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Goramserodd soced data" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " +"ei gyfer." + +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi " +"ei achosi gan pecynnau wedi eu dal." -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Ymholiad" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig." -# FIXME -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Methwyd gweithredu " +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +#, fuzzy +msgid "Building dependency tree" +msgstr "Yn Aideladu Coeden Dibyniaeth" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Yn cysylltu i %s (%s)" +#: apt-pkg/depcache.cc:139 +#, fuzzy +msgid "Candidate versions" +msgstr "Fersiynau Posib" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/depcache.cc:168 +#, fuzzy +msgid "Dependency generation" +msgstr "Cynhyrchaid Dibyniaeth" -#: 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)" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "Yn cyfuno manylion Ar Gael" -#: 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)." +#: apt-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "Methwyd agor %s" -#: methods/connect.cc:108 +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Methwyd ysgrifennu ffeil %s" + +# FIXME: number? +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad" +msgid "Unable to parse package file %s (1)" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: methods/connect.cc:126 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Methwyd cysylltu i %s:%s (%s)." +msgid "Unable to parse package file %s (2)" +msgstr "Ni ellir gramadegu ffeil becynnau %s (2)" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "Connecting to %s" -msgstr "Yn cysylltu i %s" +msgid "Release '%s' for '%s' was not found" +msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Could not resolve '%s'" -msgstr "Methwyd datrys '%s'" +msgid "Version '%s' for '%s' was not found" +msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' " -#: methods/connect.cc:205 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Methiant dros dro yn datrys '%s'" +msgid "Unable to locate package %s" +msgstr "Ni ellir lleoli'r pecyn %s" -#: methods/connect.cc:209 +#: apt-pkg/cacheset.cc:603 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" +msgid "Couldn't find task '%s'" +msgstr "Methwyd canfod pecyn %s" -#: methods/connect.cc:211 +#: apt-pkg/cacheset.cc:609 #, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" +msgid "Couldn't find any package by regex '%s'" +msgstr "Methwyd canfod pecyn %s" -#: methods/connect.cc:258 +#: apt-pkg/cacheset.cc:615 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Methwyd cysylltu i %s %s:" +msgid "Couldn't find any package by glob '%s'" +msgstr "Methwyd canfod pecyn %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -#, fuzzy -msgid "The following signatures were invalid:\n" -msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" +# FIXME: number? +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Gwall wrth ysgrifennu at y ffeil" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Llinell annilys yn y ffeil dargyfeirio: %s" -#: methods/http.cc:523 -#, fuzzy -msgid "Error reading from server. Remote end closed connection" -msgstr "Gwall wrth ddarllen o'r gweinydd: caeodd yr ochr pell y cysylltiad" +# FIXME: number? +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Gwall wrth ddarllen o'r gweinydd" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Gwall wrth ysgrifennu at ffeil" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Methwyd dewis" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Goramserodd y cysylltiad" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Gwall wrth ysgrifennu i ffeil allbwn" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Yn aros am benawdau" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Llinell pennawd gwael" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)" -#: methods/server.cc:134 methods/server.cc:141 -#, fuzzy -msgid "The HTTP server sent an invalid reply header" -msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" -#: methods/server.cc:171 -#, fuzzy -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" -#: methods/server.cc:194 -#, fuzzy -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys" +#: apt-pkg/sourcelist.cc:217 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad llwyr)" -#: methods/server.cc:196 -#, fuzzy -msgid "This HTTP server has broken range support" -msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Fformat dyddiad anhysbys" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Yn agor %s" -#: methods/server.cc:489 -#, fuzzy -msgid "Bad header data" -msgstr "Data pennawd gwael" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Methodd y cysylltiad" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Gwall mewnol" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" -#: apt-private/private-upgrade.cc:25 -#, fuzzy -msgid "Calculating upgrade... " -msgstr "Yn Cyfrifo'r Uwchraddiad... " +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " Wedi Sefydlu: " -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, fuzzy, c-format +msgid "Configuring %s" +msgstr "Yn cysylltu i %s" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Wedi Gorffen" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, fuzzy, c-format +msgid "Removing %s" +msgstr "Yn agor %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Methwyd dileu %s" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Yn cywiro dibyniaethau..." +msgid "Running post-installation trigger %s" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " wedi methu." +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ni ellir cywiro dibyniaethau" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Methwyd agor ffeil %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Ni ellir bychanu y set uwchraddio" +#: apt-pkg/deb/dpkgpm.cc:989 +#, fuzzy, c-format +msgid "Preparing %s" +msgstr "Yn agor %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Wedi Gorffen" +#: apt-pkg/deb/dpkgpm.cc:990 +#, fuzzy, c-format +msgid "Unpacking %s" +msgstr "Yn agor %s" -#: apt-private/private-cachefile.cc:108 -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." +#: apt-pkg/deb/dpkgpm.cc:995 +#, fuzzy, c-format +msgid "Preparing to configure %s" +msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f." +#: apt-pkg/deb/dpkgpm.cc:997 +#, fuzzy, c-format +msgid "Installed %s" +msgstr " Wedi Sefydlu: " -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" msgstr "" -#: apt-private/private-output.cc:233 +#: apt-pkg/deb/dpkgpm.cc:1004 +#, fuzzy, c-format +msgid "Removed %s" +msgstr "Argymell" + +#: apt-pkg/deb/dpkgpm.cc:1009 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Sefydliwyd]" +msgid "Preparing to completely remove %s" +msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Sefydliwyd]" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, fuzzy, c-format +msgid "Completely removed %s" +msgstr "Methwyd dileu %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Sefydliwyd]" - -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Sefydliwyd]" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Ni ellir ysgrifennu i %s" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, fuzzy, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Arhoswyd am %s ond nid oedd e yna" -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "ond mae %s wedi ei sefydlu" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-private/private-output.cc:444 -#, c-format -msgid "but %s is to be installed" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ond ni ellir ei sefydlu" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ond mae'n becyn rhithwir" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ond nid yw wedi ei sefydlu" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "ond nid yw'n mynd i gael ei sefydlu" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " neu" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Caiff y pecynnau canlynol eu TYNNU:" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-private/private-output.cc:538 -#, fuzzy -msgid "The following packages have been kept back:" -msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Ni ellir cloi'r cyfeiriadur rhestr" -#: apt-private/private-output.cc:559 -#, fuzzy -msgid "The following packages will be upgraded:" -msgstr "Caiff y pecynnau canlynol eu uwchraddio" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: apt-private/private-output.cc:580 -#, fuzzy -msgid "The following packages will be DOWNGRADED:" -msgstr "Caiff y pecynnau canlynol eu ISRADDIO" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" + +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-output.cc:655 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "%s (due to %s) " -msgstr "%s (oherwydd %s) " +msgid "%limin %lis" +msgstr "" -#: apt-private/private-output.cc:663 -#, fuzzy -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -"RHYBUDD: Caiff y pecynnau hanfodol canlynol eu tynnu\n" -"NI DDYLIR gwneud hyn os nad ydych chi'n gwybod yn union beth rydych chi'n\n" -"ei wneud!" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, " +msgid "Selection %s not found" +msgstr "Ni chanfuwyd y dewis %s" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu wedi ailsefydlu, " +msgid "Not using locking for read only lock file %s" +msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:195 #, c-format -msgid "%lu downgraded, " -msgstr "%lu wedi eu israddio, " +msgid "Could not open lock file %s" +msgstr "Methwyd agor y ffeil clo %s" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Ddim yn cloi'r ffeil clo ar NFS %s" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n" +msgid "Could not get lock %s" +msgstr "Methwyd cael y clo %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "I" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Regex compilation error - %s" -msgstr "Gwall crynhoi patrwm - %s" +msgid "Sub-process %s received a segmentation fault." +msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Dychwelodd is-broses %s gôd gwall (%u)" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Sub-process %s exited unexpectedly" +msgstr "Gorffenodd is-broses %s yn annisgwyl" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Gwall ysgrifennu" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gwall wrth gau'r ffeil" -#: apt-private/private-install.cc:90 -#, fuzzy -msgid "Packages need to be removed but remove is disabled." -msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Methwyd agor ffeil %s" -#: apt-private/private-install.cc:109 -#, fuzzy -msgid "Internal error, Ordering didn't finish" -msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Methwyd agor pibell ar gyfer %s" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Methwyd creu isbroses IPC" -#. 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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Methwyd gweithredu cywasgydd " -#. 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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Mae angen cyrchu %sB o archifau.\n" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Gwall darllen" -#. 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 -#: apt-private/private-install.cc:166 +# FIXME +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n" +msgid "read, still have %llu to read but none left" +msgstr "o hyd %lu i ddarllen ond dim ar ôl" -#. 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 -#: apt-private/private-install.cc:171 +# FIXME +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n" +msgid "write, still have %llu to write but couldn't" +msgstr "o hyd %lu i ysgrifennu ond methwyd" + +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Gwall wrth gau'r ffeil" + +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Gwall wrth gyfamseru'r ffeil" + +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Gwall wrth dadgysylltu'r ffeil" + +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Gwall wrth gyfamseru'r ffeil" + +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Gwall!" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Does dim digon o le rhydd gennych yn %s." +msgid "%c%s... Done" +msgstr "%c%s... Wedi Gorffen" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Mae problemau a defnyddwyd -y heb --force-yes" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml." +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Wedi Gorffen" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Ie, gwna fel rydw i'n dweud!" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Ni ellir defnyddio mmap() ar ffeil gwag" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:111 #, fuzzy, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Rydych ar fin gwneud rhywbeth a all fod yn niweidiol\n" -"Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n" -" ?]" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Methwyd agor pibell ar gyfer %s" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Erthylu." +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Methwyd gwneud mmap() efo %lu beit" + +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Ni ellir agor %s" + +# FIXME +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Methwyd gweithredu " + +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Methwyd gwneud mmap() efo %lu beit" + +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Methwyd ysgrifennu ffeil %s" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Ydych chi eisiau mynd ymlaen?" +#: 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 "" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Methodd rhai ffeiliau lawrlwytho" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/private-install.cc:319 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu " -"geidio defnyddio --fix-missing?" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Ni ellir cywiro pecynnau ar goll." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Methwyd gwneud stat() o'r CD-ROM" -#: apt-private/private-install.cc:329 -#, fuzzy -msgid "Aborting install." -msgstr "Yn Erthylu'r Sefydliad." +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Talgryniad math anhysbys: '%c'" -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw." -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +# FIXME +#: apt-pkg/contrib/configuration.cc:820 +#, fuzzy, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth" + +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" +"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol" -#: apt-private/private-install.cc:505 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn" -#: apt-private/private-install.cc:512 -#, fuzzy -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] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:900 #, fuzzy, 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] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ddiwedd y ffeil" -#: apt-private/private-install.cc:612 -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:" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Yn Erthylu'r Sefydliad." # FIXME -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dibyniaethau heb eu bodloni. Ceisiwch rhedeg 'apt-get -f install' efo dim " -"pecyn (neu penodwch ddatrys)" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Ni adnabyddir yr opsiwn llinell orchymyn '%c' (o %s)." -# FIXME: needs commas -#: apt-private/private-install.cc:628 -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 "" -"Methwyd sefydlu rhai pecynnau. Gall hyn olygu eich bod chi wedi gofyn\n" -"am sefyllfa amhosib neu, os ydych chi'n defnyddio'r dosraniad\n" -"ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n" -"heb gael eu symud allan o Incoming." +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Ni adnabyddir yr opsiwn llinell orchymyn %s" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Pecynnau wedi torri" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Nid yw'r opsiwn llinell orchymyn %s yn fŵleaidd" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Mae'r opsiwn %s yn mynnu ymresymiad." -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Pecynnau a awgrymmir:" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =<gwerth>." -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Pecynnau a argymhellir:" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Mae'r opsiwn %s yn mynnu ymresymiad cyfanrif, nid '%s'" -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" +msgid "Option '%s' is too long" +msgstr "Opsiwn '%s' yn rhy hir" -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" +# FIXME: 'Sense'? +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Ni ddeallir %s, ceiswich ddefnyddio 'true' neu 'false'." -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n" +msgid "Invalid operation %s" +msgstr "Gweithred annilys %s" -#: apt-private/private-install.cc:836 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "%s is already the newest version.\n" -msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Mae gan y pecyn %s fersiwn %s ddibyniaeth heb ei gwrdd:\n" -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" +#: cmdline/apt-cache.cc:277 +#, fuzzy +msgid "Total package names: " +msgstr "Cyfanswm Enwau Pecynnau : " + +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Cyfanswm Enwau Pecynnau : " + +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid " Normal packages: " +msgstr " Pecynnau Normal: " + +#: cmdline/apt-cache.cc:320 +#, fuzzy +msgid " Pure virtual packages: " +msgstr " Pecynnau Cwbl Rhithwir: " + +#: cmdline/apt-cache.cc:321 +#, fuzzy +msgid " Single virtual packages: " +msgstr " Pecynnau Rhithwir Sengl: " + +#: cmdline/apt-cache.cc:322 +#, fuzzy +msgid " Mixed virtual packages: " +msgstr " Pecynnau Rhithwir Cymysg: " + +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Ar Goll: " + +#: cmdline/apt-cache.cc:325 +#, fuzzy +msgid "Total distinct versions: " +msgstr "Cyfanswm Fersiynau Gwahanol: " + +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Cyfanswm Fersiynau Gwahanol: " -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" +#: cmdline/apt-cache.cc:329 +#, fuzzy +msgid "Total dependencies: " +msgstr "Cyfanswm Dibyniaethau: " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" +#: cmdline/apt-cache.cc:332 +#, fuzzy +msgid "Total ver/file relations: " +msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " -#: apt-private/private-main.cc:32 -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 "" +#: cmdline/apt-cache.cc:336 +#, fuzzy +msgid "Total Provides mappings: " +msgstr "Cyfanswm Mapiau Darpariath: " -#: apt-private/private-download.cc:36 +#: cmdline/apt-cache.cc:348 #, fuzzy -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" +msgid "Total globbed strings: " +msgstr "Cyfanswm Llinynau Glob: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "" +#: cmdline/apt-cache.cc:362 +#, fuzzy +msgid "Total dependency version space: " +msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +#: cmdline/apt-cache.cc:367 #, fuzzy -msgid "Some packages could not be authenticated" -msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" +msgid "Total slack space: " +msgstr "Cyfanswm gofod Slac: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "" +#: cmdline/apt-cache.cc:375 +#, fuzzy +msgid "Total space accounted for: " +msgstr "Cyfanswm Gofod Cyfrifwyd: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Methwyd cyrchu %s %s\n" +msgid "Package file %s is out of sync." +msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig." -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Methwyd ailenwi %s at %s" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Canfuwyd dim pecyn" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Rhaid i chi ddarparu un patrwm yn union" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Presennol " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Cyrchu:" +#: cmdline/apt-cache.cc:1545 +#, fuzzy +msgid "Package files:" +msgstr "Ffeiliau Pecynnau:" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Anwybyddu " +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Nid yw'r storfa yn gydamserol, ni ellir croesgyfeirio ffeil pecym" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Gwall " +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +#, fuzzy +msgid "Pinned packages:" +msgstr "Pecynnau wedi eu Pinio:" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Cyrchwyd %sB yn %s (%sB/s)\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(heb ganfod)" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Gweithio]" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Wedi Sefydlu: " -#: apt-private/acqprogress.cc:297 -#, fuzzy, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" -" '%s'\n" -"yn y gyrriant '%s' a gwasgwch Enter\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Ymgeisydd: " -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Ni ellir darllen %s" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(dim)" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Ni ellir newid i %s" +#: cmdline/apt-cache.cc:1620 +#, fuzzy +msgid " Package pin: " +msgstr " Pin Pecyn: " -#. 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 "" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +#, fuzzy +msgid " Version table:" +msgstr " Tabl Fersiynnau:" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Methwyd agor ffeil %s" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s ar gyfer %s %s wedi ei grynhow ar %s %s\n" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Methwyd agor ffeil %s" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Defnydd: apt-cache [opsiynnau] gorchymyn\n" +" apt-cache [opsiynnau] add ffeil1 [ffeil2 ...]\n" +" apt-cache [opsiynnau] showpkg pecyn1 [pecyn2 ...]\n" +" apt-cache [opsiynnau] showsrc pecyn1 [pecyn2 ...]\n" +"\n" +"Mae apt-cache yn erfyn lefel isel a ddefnyddir i ymdrin a ffeiliau storfa " +"deuol APT, ac ymholi gwybodaeth ohonynt\n" +"\n" +"Gorchmynion:\n" +" add - Ychwanegu ffeil pecyn i'r storfa ffynhonell\n" +" gencaches - Adeiladu'r storfeydd pecyn a ffynhonell\n" +" showpkg - Dangos gwybodaeth cyffredinol am becyn sengl\n" +" showsrc - Dangos cofnodion ffynhonell\n" +" stats - Dangos rhyw ystadegau sylfaenol\n" +" dump - Dangos y ffeil cyfan mewn ffurf syml\n" +" dumpavail - Dangos ffeil argaeledd\n" +" unmet - Dangos dibyniaethau heb eu darparu\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\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" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Methwyd creu pibell cyfathrebu at isbroses" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Caewyd y cysylltiad yn gynnar" +#: cmdline/apt-cdrom.cc:91 +#, fuzzy +msgid "Please insert a Disc in the drive and press enter" +msgstr "" +"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" +" '%s'\n" +"yn y gyrriant '%s' a gwasgwch Enter\n" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Rhagosodiad gwael!" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Methwyd ailenwi %s at %s" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Gwasgwch Enter er mwyn mynd ymlaen." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Nid yw ymresymiadau mewn parau" -#: dselect/install:103 +#: cmdline/apt-config.cc:89 #, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "wallau a achosir gan ddibyniaethau coll. Mae hyn yn iawn, dim ond y" - -#: dselect/install:105 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"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 "" -"gwallau uwchben y neges hwn sy'n bwysig. Trwsiwch nhw a rhedwch [S]efydlu " -"eto." - -#: dselect/update:30 -#, fuzzy -msgid "Merging available information" -msgstr "Yn cyfuno manylion Ar Gael" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Galwyd DropNode ar nôd sydd o hyd wedi ei gysylltu" +"Defnydd: apt-config [opsiynnau] gorchymyn\n" +"\n" +"Mae apt-config yn erfyn syml sy'n darllen ffeil cyfluniad APT\n" +"\n" +"Gorchmynion:\n" +" shell - Modd plisgyn\n" +" dump - Dangod y cyfluniad\n" +"\n" +"Opsiynnau:\n" +" -h Y testun cymorth hwn\n" +" -c=? Darllen y ffeil cyfluniad\n" +" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Methyd lleoli yr elfen <hash>!" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Methwyd canfod pecyn %s" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Methwyd neilltuo dargyfeiriad" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Methwyd canfod pecyn %s" -#: apt-inst/filelist.cc:464 -#, fuzzy -msgid "Internal error in AddDiversion" -msgstr "Gwall Mewnol yn AddDiversion" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Methwyd canfod pecyn %s" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Yn ceisio trosysgrifo dargyfeiriad, %s -> %s a %s/%s" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" -# FIXME: "the" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Ychwanegiad dwbl o'r dargyfeiriad %s -> %s" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Ffeil cyfluniad dyblyg %s/%s" +msgid "Couldn't find package %s" +msgstr "Methwyd canfod pecyn %s" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Mae'r llwybr %s yn rhy hir" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Yn dadbacio %s mwy nag unwaith" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +#, fuzzy +msgid "Internal error, problem resolver broke stuff" +msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Mae llwybr y dargyfeiriad yn rhy hir" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "Methodd stat() o %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Methwyd ailenwi %s at %s" +msgid "Unable to find a source package for %s" +msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:786 #, c-format -msgid "The directory %s is being replaced by a non-directory" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Mae'r cyfeiriadur %s yn cael ei amnewid efo rhywbeth nid cyfeiriadur ydyw" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Methwyd lleoli nôd yn ei fwced stwnsh" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Mae'r llwybr yn rhy hir" - -# FIXME: wtf? -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %s" - -#: apt-inst/extract.cc:438 -#, 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:498 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Unable to stat %s" -msgstr "Ni ellir gwneud stat() o %s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:843 #, fuzzy, c-format -msgid "Failed to write file %s" -msgstr "Methwyd ysgrifennu ffeil %s" - -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Methwyd cau ffeil %s" - -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 -#, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, fuzzy, c-format -msgid "Internal error, could not locate member %s" -msgstr "Gwall Mewnol, methwyd lleoli aelod %s" +msgid "Couldn't determine free space in %s" +msgstr "Does dim digon o le rhydd yn %s gennych" -#: apt-inst/deb/debfile.cc:227 -#, fuzzy -msgid "Unparsable control file" -msgstr "Ffeil rheoli ni ellir ei ramadegu" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Does dim digon o le rhydd yn %s gennych" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Llofnod archif annilys" +#. 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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Gwall wrth ddarllen pennawd aelod archif" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:902 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Pennawd aelod archif annilys" +msgid "Fetch source %s\n" +msgstr "Cyrchu Ffynhonell %s\n" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Pennawd aelod archif annilys" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Methwyd cyrchu rhai archifau." -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Mae'r archif yn rhy fyr" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Methwyd darllen pennawdau'r archif" +#: cmdline/apt-get.cc:950 +#, 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" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Methwyd creu pibau" +#: cmdline/apt-get.cc:962 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Methodd y gorchymyn dadbacio '%s'.\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Methwyd gweithredu gzip" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archif llygredig" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Methodd y gorchymyn adeiladu '%s'.\n" -#: apt-inst/contrib/extracttar.cc:203 -#, fuzzy -msgid "Tar checksum failed, archive corrupted" -msgstr "Methodd swm gwirio Tar, archif llygredig" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Methodd proses plentyn" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Math pennawd TAR anhysbys %u, aelod %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Unable to stat %s." -msgstr "Ni ellir gwneud stat() o %s." +msgid "Unable to get build-dependency information for %s" +msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Progress: [%3i%%]" +msgid "%s has no build depends.\n" +msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" + +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" +"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " +"%s" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" +"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " +"%s" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Ni chynhelir y system pecynnu '%s'" +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" -#: apt-pkg/init.cc:162 -#, fuzzy -msgid "Unable to determine a suitable packaging system type" -msgstr "Ni ellir canfod math system addas" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +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" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" +"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " +"%s" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Wrote %i records with %i mismatched files\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." + +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Methwyd prosesu dibyniaethau adeiladu" + +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Yn cysylltu i %s (%s)" + +#: cmdline/apt-get.cc:1591 +#, fuzzy +msgid "Supported modules:" +msgstr "Modylau a Gynhelir:" + +# FIXME: split +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Defnydd: apt-get [opsiynnau] gorchymyn\n" +" apt-get [opsiynnau] install|remove pecyn1 [pecyn2 ...]\n" +" apt-get [opsiynnau] source pecyn1 [pecyn2 ...]\n" +"\n" +"Mae apt-get yn rhyngwyneb llinell orchymyn syml ar gyfer lawrlwytho a\n" +"sefydlu pecynnau. Y gorchmynion \"update\" a \"install\" yw'r rhai a\n" +"ddefnyddir amlaf.\n" +"\n" +"Gorchmynion:\n" +" update - Cyrchu rhestrau pecynnau newydd\n" +" update - Uwchraddio pecynnau wedi sefydlu\n" +" install - Sefydlu pecynnau newydd (defnyddiwch libc6 nid libc6.deb)\n" +" remove - Tynnu pecynnau\n" +" source - Lawrlwytho archifau ffynhonell\n" +" build-dep - Cyflunio dibyniaethau adeiladu ar gyfer pecynnau ffynhonell\n" +" dist-upgrade - Uwchraddio dosraniad, gweler apt-get(8)\n" +" dselect-upgrade - Dilyn dewisiadau dselect\n" +" clean - Dileu ffeiliau archif wedi eu lawrlwytho\n" +" autoclean - Dileu hen ffeiliau archif wedi eu lawrlwytho\n" +" check - Gwirio fod dim dibyniaethau torredig\n" +"\n" +"Opsiynnau:\n" +" -h Y testun cymorth hwn.\n" +" -q Allbwn cofnodadwy - dim dangosydd cynydd\n" +" -qq Dim allbwn ar wahan i wallau\n" +" -d Lawrlwytho yn unig - peidio a sefydlu na dadbacio archifau\n" +" -s Peidio gweithredu. Gwneir efelychiad trefn.\n" +" -y Peidio a gofyn cwestiynnau a chymryd yn ganiataol mai 'Ie' yw'r ateb\n" +" -f Ceisio mynd ymlaen os mae'r prawf integredd yn methu\n" +" -m Ceisio mynd ymlaen os methir dod o hyd i archifau\n" +" -u Dangos rhestr o archifau a uwchraddir hefyd\n" +" -b Adeiladu'r pecyn ffynhonell ar ôl ei lawrlwytho\n" +" -V Dangos rhifau fersiwn cyflawn\n" +" -c=? Darllen y ffeil cyfluniad hwn\n" +" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" +"\n" +"Gweler y tudalenau llawlyfr apt-get(8) sources.list(5) a apt.conf(5) am\n" +"fwy o wybodaeth ac opsiynnau.\n" +"\n" +" Mae gan yr APT hwn bŵerau buwch hudol.\n" + +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Camgyfatebiaeth swm MD5" +msgid "%s can not be marked as it is not installed.\n" +msgstr "ond nid yw wedi ei sefydlu" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Methwyd canfod y gyrrydd dull %s." +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Ni gychwynodd y dull %s yn gywir" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" -" '%s'\n" -"yn y gyrriant '%s' a gwasgwch Enter\n" +msgid "%s was already not hold.\n" +msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Methwyd agor neu ramadegu'r ffeil rhestrau neu statws." +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Efallai hoffech rhedege apt-get update er mwyn cywiro'r problemau hyn." +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Methwyd agor %s" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Methwyd darllen y rhestr ffynhonellau." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Storfa pecyn gwag" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Mae'r ffeil storfa pecyn yn llygredig" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Methwyd darllen y cronfa ddata CD-ROM %s" -#: apt-pkg/pkgcache.cc:169 +#: methods/cdrom.cc:212 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Mae'r ffeil storfa pecyn yn llygredig" - -# FIXME: capitalisation? -#: apt-pkg/pkgcache.cc:174 -#, fuzzy, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Nid yw'r APT yma yn cefnogi'r system fersiwn '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol" +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 "" +"Defnyddiwch apt-cdrom fel bo APT yn adnabod y CD hwn. Ni ellir defnyddio apt-" +"get update i ychwanegu CDau newydd." -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dibynnu" +#: methods/cdrom.cc:222 +#, fuzzy +msgid "Wrong CD-ROM" +msgstr "CD Anghywir" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "CynDdibynnu" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Ni ellir datglymu'r CD-ROM yn %s. Efallai ei fod e'n cael ei ddefnyddio." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Awgrymu" +#: methods/cdrom.cc:254 +#, fuzzy +msgid "Disk not found." +msgstr "Ffeil heb ei ganfod" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Argymell" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Ffeil heb ei ganfod" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Gwrthdaro" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Methwyd stat()" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Amnewid" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Methwyd gosod amser newid" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Darfodi" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI annilys: rhaid i URIs lleol beidio a cychwyn efo \"//\"" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Yn mewngofnodi" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Ni ellir darganfod enw'r cymar" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "pwysig" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Ni ellir darganfod yr enw lleol" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "angenrheidiol" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, fuzzy, c-format +msgid "The server refused the connection and said: %s" +msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "safonnol" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opsiynnol" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ychwanegol" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Penodwyd gweinydd dirprwy ond dim sgript mengofnodi. (Mae Acquire::ftp::" +"ProxyLogin yn wag.)" -#: apt-pkg/pkgrecords.cc:38 +# FIXME +#: methods/ftp.cc:280 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Ni chynhelir y math ffeil mynegai '%s'" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Methodd y gorchymyn sgript mewngofnodi '%s'; meddai'r gweinydd: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Mae can y storfa system fersiwn anghyfaddas" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Goramser cysylltu" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Jiw, rhagoroch chi'r nifer o enwau pecyn mae'r APT hwn yn gallu ei drin." +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Caeodd y gweinydd y cysylltiad" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Gorlifodd ateb y byffer." -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Llygr protocol" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Methwyd creu soced" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Methwyd" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +#: methods/ftp.cc:718 #, fuzzy -msgid "Reading package lists" -msgstr "Yn Darllen Rhestrau Pecynnau" +msgid "Could not connect passive socket." +msgstr "Methwyd cysylltu soced goddefol" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Yn Casglu Darpariaethau Ffeil" +# FIXME +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Methodd getaddrinfo gael soced gwrando" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Ni ellir ysgrifennu i %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Methwyd rhwymo soced" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Gwall M/A wrth gadw'r storfa ffynhonell" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Methwyd gwrando ar y soced" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Methwyd canfod enw'r soced" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Methwyd danfod gorchymyn PORT" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Teulu cyfeiriad anhysbys %u (AF_*)" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Goramserodd cysylltiad y soced data" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "methwyd ailenwi, %s (%s -> %s)." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Methwyd derbyn cysylltiad" -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "Camgyfatebiaeth swm MD5" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem wrth stwnshio ffeil" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Camgyfatebiaeth maint" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Gweithred annilys %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Goramserodd soced data" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:935 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Data transfer failed, server said '%s'" +msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'" -# FIXME: number? -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Ymholiad" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" +# FIXME +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Methwyd gweithredu " -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:76 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Yn cysylltu i %s (%s)" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:87 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:94 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +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)" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:100 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Ni ellir cychwyn y cysylltiad i %s:%s (%s)." -# FIXME: case -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:108 #, 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 "" -"Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi " -"drwsio'r pecyn hyn a law. (Oherwydd pensaerniaeth coll.)" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:126 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr "Methwyd cysylltu i %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1991 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Mae'r ffeiliau mynegai pecyn yn llygr. Dim maes Filename: gan y pecyn %s." +msgid "Connecting to %s" +msgstr "Yn cysylltu i %s" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Nid yw'r bloc darparwr %s yn cynnwys ôl bys" +msgid "Could not resolve '%s'" +msgstr "Methwyd datrys '%s'" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Methiant dros dro yn datrys '%s'" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Mae'r cyfeiriadur archif %spartial ar goll." +msgid "System error resolving '%s:%s'" +msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Ni ellir cloi'r cyfeiriadur rhestr" - -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Retrieving file %li of %li" -msgstr "Yn Darllen Rhestr Ffeiliau" +msgid "Unable to connect to %s:%s:" +msgstr "Methwyd cysylltu i %s %s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen " -"rai eu defnyddio yn lle." -# FIXME: ...file -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Rhaid i chi rhoi rhai URI 'source' yn eich ffeil sources.list" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "" -#: apt-pkg/policy.cc:83 +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -# FIXME: literal -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Cofnod annilys yn y ffeil hoffterau, dim pennawd 'Package'" - -# FIXME: tense -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Methwyd daeall y math pin %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Methwyd agor ffeil %s" - -# FIXME: %s may have an arbirrary length -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"Bydd y rhediad sefydlu hwn yn gorfodi tynnu'r pecyn angenrheidiol %s " -"oherwydd lŵp gwrthdaro/cynddibynu. Mae hyn yn aml yn wael, ond os ydych wir " -"eisiau ei wneud ef, gweithredwch yr opsiwn APT::Force-LoopBreak." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Gwall wrth ysgrifennu at y ffeil" -#: apt-pkg/cdrom.cc:571 +#: methods/http.cc:523 #, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "CD Anghywir" +msgid "Error reading from server. Remote end closed connection" +msgstr "Gwall wrth ddarllen o'r gweinydd: caeodd yr ochr pell y cysylltiad" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Gwall wrth ddarllen o'r gweinydd" -#: apt-pkg/cdrom.cc:599 -#, fuzzy -msgid "Waiting for disc...\n" -msgstr "Yn aros am benawdau" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Gwall wrth ysgrifennu at ffeil" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Methwyd dewis" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Goramserodd y cysylltiad" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Gwall wrth ysgrifennu i ffeil allbwn" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Yn aros am benawdau" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Llinell pennawd gwael" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:134 methods/server.cc:141 +#, fuzzy +msgid "The HTTP server sent an invalid reply header" +msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "" +#: methods/server.cc:171 +#, fuzzy +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "" +#: methods/server.cc:194 +#, fuzzy +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" +#: methods/server.cc:196 +#, fuzzy +msgid "This HTTP server has broken range support" +msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" -#: apt-pkg/cdrom.cc:819 +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Fformat dyddiad anhysbys" + +#: methods/server.cc:489 #, fuzzy -msgid "Copying package lists..." -msgstr "Yn Darllen Rhestrau Pecynnau" +msgid "Bad header data" +msgstr "Data pennawd gwael" -#: apt-pkg/cdrom.cc:863 +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Methodd y cysylltiad" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Gwall mewnol" + +#: apt-private/private-upgrade.cc:25 #, fuzzy -msgid "Writing new source list\n" -msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." +msgid "Calculating upgrade... " +msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Wedi Gorffen" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " -"ei gyfer." -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi " -"ei achosi gan pecynnau wedi eu dal." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Yn cywiro dibyniaethau..." + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " wedi methu." + +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ni ellir cywiro dibyniaethau" + +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Ni ellir bychanu y set uwchraddio" + +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Wedi Gorffen" + +#: apt-private/private-cachefile.cc:108 +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." + +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -"Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -#, fuzzy -msgid "Building dependency tree" -msgstr "Yn Aideladu Coeden Dibyniaeth" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Sefydliwyd]" -#: apt-pkg/depcache.cc:139 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "Candidate versions" -msgstr "Fersiynau Posib" +msgid "[installed,local]" +msgstr " [Sefydliwyd]" -#: apt-pkg/depcache.cc:168 +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" + +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Dependency generation" -msgstr "Cynhyrchaid Dibyniaeth" +msgid "[installed,automatic]" +msgstr " [Sefydliwyd]" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#: apt-private/private-output.cc:245 #, fuzzy -msgid "Reading state information" -msgstr "Yn cyfuno manylion Ar Gael" +msgid "[installed]" +msgstr " [Sefydliwyd]" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Methwyd agor %s" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Methwyd ysgrifennu ffeil %s" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -# FIXME: number? -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +msgid "but %s is installed" +msgstr "ond mae %s wedi ei sefydlu" -#: apt-pkg/tagfile.cc:237 +#: apt-private/private-output.cc:437 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Ni ellir gramadegu ffeil becynnau %s (2)" +msgid "but %s is to be installed" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ond ni ellir ei sefydlu" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' " +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ond mae'n becyn rhithwir" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Methwyd canfod pecyn %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ond nid yw wedi ei sefydlu" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Methwyd canfod pecyn %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ond nid yw'n mynd i gael ei sefydlu" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Methwyd canfod pecyn %s" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " neu" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Caiff y pecynnau canlynol eu TYNNU:" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +#: apt-private/private-output.cc:551 +#, fuzzy +msgid "The following packages have been kept back:" +msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +#: apt-private/private-output.cc:572 +#, fuzzy +msgid "The following packages will be upgraded:" +msgstr "Caiff y pecynnau canlynol eu uwchraddio" -# FIXME: number? -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +#: apt-private/private-output.cc:593 +#, fuzzy +msgid "The following packages will be DOWNGRADED:" +msgstr "Caiff y pecynnau canlynol eu ISRADDIO" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:" -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:668 #, c-format -msgid "No Hash entry in Release file %s" +msgid "%s (due to %s) " +msgstr "%s (oherwydd %s) " + +#: apt-private/private-output.cc:676 +#, fuzzy +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"RHYBUDD: Caiff y pecynnau hanfodol canlynol eu tynnu\n" +"NI DDYLIR gwneud hyn os nad ydych chi'n gwybod yn union beth rydych chi'n\n" +"ei wneud!" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Llinell annilys yn y ffeil dargyfeirio: %s" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, " -# FIXME: number? -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu wedi ailsefydlu, " -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu wedi eu israddio, " -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "I" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" - -#: apt-pkg/sourcelist.cc:217 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad llwyr)" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" - -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Yn agor %s" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-show.cc:156 #, 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:375 -#, 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" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr " Wedi Sefydlu: " +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, fuzzy, c-format -msgid "Configuring %s" -msgstr "Yn cysylltu i %s" +#: apt-private/private-install.cc:91 +#, fuzzy +msgid "Packages need to be removed but remove is disabled." +msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, fuzzy, c-format -msgid "Removing %s" -msgstr "Yn agor %s" +#: apt-private/private-install.cc:110 +#, fuzzy +msgid "Internal error, Ordering didn't finish" +msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Methwyd dileu %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Noting disappearance of %s" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Running post-installation trigger %s" -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "Mae angen cyrchu %sB o archifau.\n" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:167 #, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:172 #, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Methwyd agor ffeil %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n" -#: apt-pkg/deb/dpkgpm.cc:989 -#, fuzzy, c-format -msgid "Preparing %s" -msgstr "Yn agor %s" +#: apt-private/private-install.cc:200 +#, c-format +msgid "You don't have enough free space in %s." +msgstr "Does dim digon o le rhydd gennych yn %s." -#: apt-pkg/deb/dpkgpm.cc:990 -#, fuzzy, c-format -msgid "Unpacking %s" -msgstr "Yn agor %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Mae problemau a defnyddwyd -y heb --force-yes" -#: apt-pkg/deb/dpkgpm.cc:995 -#, fuzzy, c-format -msgid "Preparing to configure %s" -msgstr "Yn agor y ffeil cyfluniad %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml." -#: apt-pkg/deb/dpkgpm.cc:997 -#, fuzzy, c-format -msgid "Installed %s" -msgstr " Wedi Sefydlu: " +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ie, gwna fel rydw i'n dweud!" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" +#: apt-private/private-install.cc:222 +#, fuzzy, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Rydych ar fin gwneud rhywbeth a all fod yn niweidiol\n" +"Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n" +" ?]" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, fuzzy, c-format -msgid "Removed %s" -msgstr "Argymell" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Erthylu." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, fuzzy, c-format -msgid "Preparing to completely remove %s" -msgstr "Yn agor y ffeil cyfluniad %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Ydych chi eisiau mynd ymlaen?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, fuzzy, c-format -msgid "Completely removed %s" -msgstr "Methwyd dileu %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Methodd rhai ffeiliau lawrlwytho" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu " +"geidio defnyddio --fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Ni ellir ysgrifennu i %s" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Ni ellir cywiro pecynnau ar goll." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:330 +#, fuzzy +msgid "Aborting install." +msgstr "Yn Erthylu'r Sefydliad." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:366 +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] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +"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] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:517 +#, fuzzy, 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] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" + +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:612 +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 +#: apt-private/private-install.cc:614 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"Dibyniaethau heb eu bodloni. Ceisiwch rhedeg 'apt-get -f install' efo dim " +"pecyn (neu penodwch ddatrys)" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +# FIXME: needs commas +#: apt-private/private-install.cc:638 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"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 "" +"Methwyd sefydlu rhai pecynnau. Gall hyn olygu eich bod chi wedi gofyn\n" +"am sefyllfa amhosib neu, os ydych chi'n defnyddio'r dosraniad\n" +"ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n" +"heb gael eu symud allan o Incoming." -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Ni ellir cloi'r cyfeiriadur rhestr" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pecynnau wedi torri" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" + +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pecynnau a awgrymmir:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pecynnau a argymhellir:" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: apt-private/private-install.cc:825 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:841 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:846 #, c-format -msgid "%lis" -msgstr "" +msgid "%s is already the newest version.\n" +msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "Ni chanfuwyd y dewis %s" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Methwyd agor y ffeil clo %s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Ddim yn cloi'r ffeil clo ar NFS %s" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Methwyd cael y clo %s" +#: apt-private/private-main.cc:32 +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 "" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" +#: apt-private/private-download.cc:36 +#, fuzzy +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" + +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +#, fuzzy +msgid "Some packages could not be authenticated" +msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" msgstr "" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Methwyd ailenwi %s at %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Derbyniodd is-broses %s wall segmentu." +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Presennol " -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Derbyniodd is-broses %s wall segmentu." +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Cyrchu:" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Dychwelodd is-broses %s gôd gwall (%u)" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Anwybyddu " -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Gorffenodd is-broses %s yn annisgwyl" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Gwall " -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gwall wrth gau'r ffeil" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Cyrchwyd %sB yn %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Could not open file %s" -msgstr "Methwyd agor ffeil %s" +msgid " [Working]" +msgstr " [Gweithio]" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/acqprogress.cc:297 #, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Methwyd agor pibell ar gyfer %s" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Methwyd creu isbroses IPC" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Methwyd gweithredu cywasgydd " +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" +" '%s'\n" +"yn y gyrriant '%s' a gwasgwch Enter\n" -# FIXME -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "o hyd %lu i ddarllen ond dim ar ôl" +#. 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 "" -# FIXME -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "o hyd %lu i ysgrifennu ond methwyd" +msgid "Can not read mirror file '%s'" +msgstr "Methwyd agor ffeil %s" -#: apt-pkg/contrib/fileutl.cc:1915 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Gwall wrth gau'r ffeil" +msgid "No entry found in mirror file '%s'" +msgstr "Methwyd agor ffeil %s" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Gwall wrth gyfamseru'r ffeil" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Gwall wrth dadgysylltu'r ffeil" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Methwyd creu pibell cyfathrebu at isbroses" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Gwall wrth gyfamseru'r ffeil" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Caewyd y cysylltiad yn gynnar" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Gwall!" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Rhagosodiad gwael!" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Wedi Gorffen" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Gwasgwch Enter er mwyn mynd ymlaen." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Wedi Gorffen" +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Ni ellir defnyddio mmap() ar ffeil gwag" +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Methwyd agor pibell ar gyfer %s" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "wallau a achosir gan ddibyniaethau coll. Mae hyn yn iawn, dim ond y" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Methwyd gwneud mmap() efo %lu beit" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "" +"gwallau uwchben y neges hwn sy'n bwysig. Trwsiwch nhw a rhedwch [S]efydlu " +"eto." -#: apt-pkg/contrib/mmap.cc:146 +#: dselect/update:30 #, fuzzy -msgid "Unable to close mmap" -msgstr "Ni ellir agor %s" +msgid "Merging available information" +msgstr "Yn cyfuno manylion Ar Gael" -# FIXME -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Methwyd gweithredu " +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Galwyd DropNode ar nôd sydd o hyd wedi ei gysylltu" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Methwyd gwneud mmap() efo %lu beit" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Methyd lleoli yr elfen <hash>!" -#: apt-pkg/contrib/mmap.cc:322 +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Methwyd neilltuo dargyfeiriad" + +#: apt-inst/filelist.cc:464 #, fuzzy -msgid "Failed to truncate file" -msgstr "Methwyd ysgrifennu ffeil %s" +msgid "Internal error in AddDiversion" +msgstr "Gwall Mewnol yn AddDiversion" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/filelist.cc:477 #, 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 "" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Yn ceisio trosysgrifo dargyfeiriad, %s -> %s a %s/%s" -#: apt-pkg/contrib/mmap.cc:446 +# FIXME: "the" +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" - -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +msgid "Double add of diversion %s -> %s" +msgstr "Ychwanegiad dwbl o'r dargyfeiriad %s -> %s" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s" +msgid "Duplicate conf file %s/%s" +msgstr "Ffeil cyfluniad dyblyg %s/%s" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Methwyd gwneud stat() o'r CD-ROM" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Mae'r llwybr %s yn rhy hir" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:132 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Talgryniad math anhysbys: '%c'" +msgid "Unpacking %s more than once" +msgstr "Yn dadbacio %s mwy nag unwaith" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:142 #, c-format -msgid "Opening configuration file %s" -msgstr "Yn agor y ffeil cyfluniad %s" +msgid "The directory %s is diverted" +msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw." +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" -# FIXME -#: apt-pkg/contrib/configuration.cc:820 -#, fuzzy, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Mae llwybr y dargyfeiriad yn rhy hir" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth" +msgid "Failed to stat %s" +msgstr "Methodd stat() o %s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "Failed to rename %s to %s" +msgstr "Methwyd ailenwi %s at %s" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" msgstr "" -"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" +"Mae'r cyfeiriadur %s yn cael ei amnewid efo rhywbeth nid cyfeiriadur ydyw" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Methwyd lleoli nôd yn ei fwced stwnsh" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Mae'r llwybr yn rhy hir" + +# FIXME: wtf? +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol" +msgid "Overwrite package match with no version for %s" +msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn" +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-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'" +msgid "Unable to stat %s" +msgstr "Ni ellir gwneud stat() o %s" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" +msgid "Failed to write file %s" +msgstr "Methwyd ysgrifennu ffeil %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ddiwedd y ffeil" +msgid "Failed to close file %s" +msgstr "Methwyd cau ffeil %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll" + +#: apt-inst/deb/debfile.cc:132 #, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Yn Erthylu'r Sefydliad." +msgid "Internal error, could not locate member %s" +msgstr "Gwall Mewnol, methwyd lleoli aelod %s" -# FIXME -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Ni adnabyddir yr opsiwn llinell orchymyn '%c' (o %s)." +#: apt-inst/deb/debfile.cc:227 +#, fuzzy +msgid "Unparsable control file" +msgstr "Ffeil rheoli ni ellir ei ramadegu" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Ni adnabyddir yr opsiwn llinell orchymyn %s" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Llofnod archif annilys" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Nid yw'r opsiwn llinell orchymyn %s yn fŵleaidd" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Gwall wrth ddarllen pennawd aelod archif" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Mae'r opsiwn %s yn mynnu ymresymiad." +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Pennawd aelod archif annilys" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =<gwerth>." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Pennawd aelod archif annilys" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Mae'r opsiwn %s yn mynnu ymresymiad cyfanrif, nid '%s'" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Mae'r archif yn rhy fyr" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opsiwn '%s' yn rhy hir" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Methwyd darllen pennawdau'r archif" -# FIXME: 'Sense'? -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Ni ddeallir %s, ceiswich ddefnyddio 'true' neu 'false'." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Methwyd creu pibau" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Methwyd gweithredu gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Archif llygredig" + +#: apt-inst/contrib/extracttar.cc:203 +#, fuzzy +msgid "Tar checksum failed, archive corrupted" +msgstr "Methodd swm gwirio Tar, archif llygredig" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Gweithred annilys %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Math pennawd TAR anhysbys %u, aelod %s" # FIXME: "debian" #: cmdline/apt-extracttemplates.cc:224 @@ -3587,7 +3591,7 @@ msgid "Problem unlinking %s" msgstr "Gwall wrth datgysylltu %s" # FIXME: "debian" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3641,6 +3645,10 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" + #~ msgid "%s not a valid DEB package." #~ msgstr "Nid yw %s yn becyn DEB dilys." diff --git a/po/da.po b/po/da.po index f7af287a8..bdbef6bbf 100644 --- a/po/da.po +++ b/po/da.po @@ -1,3240 +1,3270 @@ # Danish translation apt. -# Copyright (C) 2013 apt & nedenstående oversættere. +# Copyright (C) 2014 apt & nedenstående oversættere. # This file is distributed under the same license as the apt package. # Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2002, 2003, 2004, 2005, 2006, 2007. -# Joe Hansen <joedalton2@yahoo.dk>, 2010, 2012, 2013. +# Joe Hansen <joedalton2@yahoo.dk>, 2010, 2012, 2013, 2014. # # solver -> problemløser # msgid "" msgstr "" -"Project-Id-Version: apt\n" +"Project-Id-Version: apt 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" -"PO-Revision-Date: 2013-12-14 23:51+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"PO-Revision-Date: 2014-07-06 23:51+0200\n" "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" "Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n" -"Language: \n" +"Language: da\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" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indeksfiler af typen »%s« understøttes ikke" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakken %s version %s har en uopfyldt afhængighed:\n" +msgid "Unable to read %s" +msgstr "Kunne ikke læse %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Samlet antal pakkenavne: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Kunne ikke skifte til %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Samlet antal pakkestrukturer: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Kunne ikke finde %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normale pakker: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "Status: [%3i%%]" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Rene virtuelle pakker: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Kører dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Enkelte virtuelle pakker: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Pakkesystemet »%s« understøttes ikke" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Blandede virtuelle pakker: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Kunne ikke bestemme en passende pakkesystemtype" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Manglende: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Skrev %i poster.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Totale forskellige versioner: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Skrev %i poster med %i manglende filer.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Sammenlagt forskellige beskrivelser: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Skrev %i poster med %i ikke-trufne filer\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Sammenlagt afhængigheder: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Sammenlagt version/fil-relationer: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Kan ikke finde godkendelsesregistrering for: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Sammenlagt version/fil-relationer: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hashsum stemmer ikke: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Sammenlagt »Tilbyder«-markeringer: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Metodedriveren %s blev ikke fundet." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Totalle søgemønsterstrenge: " +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "Er pakken %s installeret?" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Total afhængighedsversions-plads: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Metoden %s startede ikke korrekt" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Total »Slack«-plads: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Indsæt disken med navnet: »%s« i drevet »%s« og tryk retur." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Total plads, der kan gøres rede for: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller åbnes." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakkefilen %s er ude af trit." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Du kan muligvis rette problemet ved at køre »apt-get update«" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Fandt ingen pakker" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Listen med kilder kunne ikke læses." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Du skal angive mindst ét søgemønster" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Tomt pakke-mellemlager" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Denne kommando er forældet. Brug venligst »apt-mark showauto« i stedet for." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Pakke-mellemlagerets fil er ødelagt" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Pakke-mellemlagerets fil er af en inkompatibel version" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakke-mellemlagerets fil er ødelagt, den er for lille" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Kunne ikke lokalisere pakken %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Denne APT understøtter ikke versionssystemet »%s«" -# Overskriften til apt-cache policy, -# forkorter "Package" væk. CH -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakkefiler:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Pakke-mellemlageret er lavet til en anden arkitektur" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Mellemlageret er ude af trit, kan ikke krydsreferere en pakkefil" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Afhængigheder" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "»Pinned« pakker:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Præ-afhængigheder" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ikke fundet)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Foreslåede" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installeret: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Anbefalede" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Konflikter" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Erstatter" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakke-pin: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Overflødiggør" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versionstabel:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ødelægger" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s kompileret på %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Forbedringer" -#: cmdline/apt-cache.cc:1749 -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 "" -"Brug: apt-cache [tilvalg] kommando\n" -" apt-cache [tilvalg] showpkg pakke1 [pakke2 ...]\n" -" apt-cache [tilvalg] showsrc pakke1 [pakke2 ...]\n" -"\n" -"apt-cache er et lavniveauværktøj, brugt til at manipulere APTs\n" -"binære mellemlagerfiler og hente oplysninger fra dem.\n" -"\n" -"Kommandoer:\n" -" gencaches - Opbyg både pakke- og kildemellemlageret\n" -" showpkg - Vis generelle oplysninger om en enkelt pakke\n" -" showsrc - Vis kildetekstposter\n" -" stats - Vis nogle grundlæggende statistikker\n" -" dump - Vis hele filen i kort form\n" -" dumpavail - Udlæs en »available«-fil til standard-ud\n" -" unmet - Vis uopfyldte afhængigheder\n" -" search - Gennemsøg pakkelisten med et regulært udtryk\n" -" show - Vis en læsbar post for pakken\n" -" depends - Vis de rå afhængighedsoplysninger for en pakke\n" -" rdepends - Vis omvendte afhængighedsoplysninger for en pakke\n" -" pkgnames - Vis navnene på alle pakker\n" -" dotty - Generér pakkegrafer til GraphViz\n" -" xvcg - Generér pakkegrafer til xvcg\n" -" policy - Vis policy-indstillinger\n" -"\n" -"Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -p=? Pakkemellemlageret.\n" -" -s=? Kildemellemlageret.\n" -" -q Deaktiver fremgangsindikatoren.\n" -" -i Vis kun vigtige afhængigheder for kommandoen »unmet«.\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" -"Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "vigtig" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Angiv venligst et navn for denne disk, som f.eks. »Debian 5.0.3 Disk 1«" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "krævet" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Indsæt en disk i drevet og tryk retur" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "frivillig" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ekstra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Kunne ikke montere %s til %s" +msgid "Index file type '%s' is not supported" +msgstr "Indeksfiler af typen »%s« understøttes ikke" -#: cmdline/apt-cdrom.cc:178 -#, fuzzy -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"Der kunne ikke detekteres et cd-rom-drev eller findes et monteringspunkt.\n" -"Du kan prøve tilvalget --cdrom for at angive cd-rom-monteringspunktet. Se " -"»man apt-cdrom« for yderligere information om automatisk detektering af cd-" -"rom og monteringspunkt." +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Fejl ved tolkning af regulært udtryk - %s" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Gentag processen for resten af cd'erne i dit sæt." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Mellemlageret benytter en inkompatibel versionsstyring" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parametre ikke angivet i par" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Der opstod en fejl under behandlingen af %s (%s%d)" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Brug: apt-config [tilvalg] kommando\n" -"\n" -"apt-config er et simpelt værktøj til at læse APTs opsætningsfil\n" -"\n" -"Kommandoer:\n" -" shell - Skal-tilstand\n" -" dump - Vis opsætningen\n" -"\n" -"Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" +"Hold da op! Du nåede over det antal pakkenavne, denne APT kan håndtere." -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Kan ikke finde en pakke for arkitektur »%s«" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere." -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Kan ikke finde en pakke »%s« med version »%s«" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere." -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Kan ikke finde en pakke »%s« med udgivelse »%s«" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Vælger »%s« som kildepakke fremfor »%s«\n" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder" -#: cmdline/apt-get.cc:423 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Kan ikke finde version »%s« for pakke »%s«" +msgid "Couldn't stat source package list %s" +msgstr "Kunne ikke finde kildepakkelisten %s" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Kunne ikke finde pakken %s" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Indlæser pakkelisterne" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s sat til manuelt installeret.\n" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Samler filudbud" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s sat til automatisk installation.\n" +msgid "Unable to write to %s" +msgstr "Kunne ikke skrive til %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Denne kommando er forældet. Brug venligst »apt-mark auto« og »apt-mark " -"manual« i stedet for." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO-fejl ved gemning af kilde-mellemlageret" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Intern fejl. Problemløseren ødelagde noget" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Send scenarie til problemløser" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Kunne ikke låse nedhentningsmappen" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Send forespørgsel til problemløser" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Du skal angive mindst én pakke at hente kildeteksten til" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Forbered for modtagelse af løsning" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Ekstern problemløser fejlede uden en korrekt fejlbesked" + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Kør ekstern problemløser" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Kunne ikke finde kildetekstpakken for %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "omdøbning mislykkedes, %s (%s -> %s)." -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hashsum stemmer ikke" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Størrelsen stemmer ikke" + +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "Ugyldigt filformat" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"BEMÆRK: Pakning af »%s« vedligeholdes i versionskontrolsystemet »%s« på:\n" -"%s\n" +"Kunne ikke finde uventet punkt »%s« i udgivelsesfil (forkert sources.list-" +"punkt eller forkert udformet fil)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Kunne ikke finde hashsum for »%s« i udgivelsesfilen" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -"Brug venligst:\n" -"bzr branch %s\n" -"for at hente de seneste (muligvis ikke udgivet) opdateringer til pakken.\n" +"Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Overspringer allerede hentet fil »%s«\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Udgivelsesfil for %s er udløbet (ugyldig siden %s). Opdateringer for dette " +"arkiv vil ikke blive anvendt." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kunne ikke bestemme ledig plads i %s" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konfliktdistribution: %s (forventede %s men fik %s)" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har ikke nok ledig plads i %s" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Der opstod en fejl under underskriftsbekræftelse. Arkivet er ikke opdateret " +"og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s\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:891 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n" +msgid "GPG error: %s: %s" +msgstr "GPG-fejl: %s: %s" -#. 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:896 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "%sB skal hentes fra kildetekst-arkiverne.\n" +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 "" +"Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " +"nødt til manuelt at reparere denne pakke. (grundet manglende arch)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Fetch source %s\n" -msgstr "Henter kildetekst %s\n" +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:920 -msgid "Failed to fetch some archives." -msgstr "Nogle arkiver kunne ikke hentes." +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Pakkeindeksfilerne er i stykker. Intet »Filename:«-felt for pakken %s." -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Nedhentning afsluttet i »hent-kun«-tilstand" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Leverandørblok %s inderholder intet fingeraftryk" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n" +msgid "List directory %spartial is missing." +msgstr "Listemappen %spartial mangler." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Udpakningskommandoen »%s« fejlede.\n" +msgid "Archives directory %spartial is missing." +msgstr "Arkivmappen %spartial mangler." -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Tjek om pakken »dpkg-dev« er installeret.\n" +msgid "Unable to lock directory %s" +msgstr "Kunne ikke låse mappen %s" -#: cmdline/apt-get.cc:991 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Opbygningskommandoen »%s« fejlede.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Henter fil %li ud af %li (%s tilbage)" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barneprocessen fejlede" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Henter fil %li ud af %li" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Kunne ikke hente %s %s\n" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Nogle indeksfiler kunne ikke hentes. De er blevet ignoreret eller de gamle " +"bruges i stedet." + +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Du skal have nogle »source«-URI'er i din sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Ingen arkitekturinformation tilgængelig for %s. Se apt.conf(5) APT::" -"Architectures for opsætning" +"Værdien »%s« er ugyldig for APT::Default-Release da sådan en udgivelse ikke " +"er tilgængelig i kilderne" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ugyldig indgang i indstillingsfilen %s, pakkehovedet mangler" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s har ingen opbygningsafhængigheder.\n" +msgid "Did not understand pin type %s" +msgstr "Kunne ikke forstå pin-type %s" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Afhængigheden %s for %s kan ikke opfyldes, da %s ikke er tilladt på »%s«" +"Kunne ikke udføre øjeblikkelig konfiguration på »%s«. Se venligst man 5 apt." +"conf under APT:Immediate-Cinfigure for detaljer. (%d)" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Kunne ikke åbne filen »%s«. " + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"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 "" -"Afhængigheden %s for %s kan ikke opfyldes, da pakken %s ikke blev fundet" +"Kørsel af denne installation kræver midlertidig afinstallation af den " +"essentielle pakke %s grundet en afhængighedsløkke. Det er ofte en dårlig " +"ide, men hvis du virkelig vil gøre det, kan du aktivere valget »APT::Force-" +"LoopBreak«." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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" +msgid "Line %u too long in source list %s." +msgstr "Linjen %u er for lang i kildelisten %s." -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Afmonterer CD-ROM ...\n" + +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Bruger CD-ROM-monteringspunktet %s\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Venter på disken ...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterer CD-ROM ...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificerer ... " + +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Gemt mærkat: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Skanner disken for indeksfiler ...\n" + +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Afhængigheden %s for %s kan ikke opfyldes, da ingen af de tilgængelige " -"kandidater for pakken %s kan tilfredsstille versionskravene" +"Fandt %zu pakkeindekser, %zu kildeindekser, %zu oversættelsesindekser og %zu " +"signaturer\n" -#: cmdline/apt-get.cc:1357 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke har en " -"kandidatversion" +"Kunne ikke finde nogen pakkefiler, det er muligvis ikke en Debiandisk eller " +"den forkerte arkitektur?" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s" +msgid "Found label '%s'\n" +msgstr "Fandt mærkatet »%s«\n" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Det er ikke et gyldigt navn, prøv igen.\n" + +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes." +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Denne disk hedder: \n" +"»%s«\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Kunne ikke behandler opbygningsafhængighederne" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierer pakkelisterne ..." -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, c-format -msgid "Changelog for %s (%s)" -msgstr "Ændringslog for %s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Understøttede moduler:" - -#: cmdline/apt-get.cc:1632 -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 "" -"Brug: apt-get [tilvalg] kommando\n" -" apt-get [tilvalg] install|remove pakke1 [pakke2 ...]\n" -" apt-get [tilvalg] source pakke1 [pakke2 ...]\n" -"\n" -"apt-get er en simpel kommandolinjegrænseflade til at hente og\n" -"installere pakker. De hyppigst brugte kommandoer er update og\n" -"install.\n" -"\n" -"Kommandoer:\n" -" update - Hent nye lister over pakker\n" -" upgrade - Udfør en opgradering\n" -" install - Installer nye pakker (pakke er libc6, ikke libc6.deb)\n" -" remove - Afinstaller pakker\n" -" autoremove - Afinstaller automatisk alle ubrugte pakker\n" -" purge - Fjern pakker og konfigurationsfiler\n" -" source - Hent kildetekstarkiver\n" -" build-dep - Sæt opbygningsafhængigheder op for kildetekstpakker\n" -" dist-upgrade - Distributionsopgradering, se apt-get(8)\n" -" dselect-upgrade - Følg valgene fra dselect\n" -" clean - Slet hentede arkivfiler\n" -" autoclean - Slet gamle hentede arkivfiler\n" -" check - Tjek at der ikke er uopfyldte afhængigheder\n" -" changelog - Hent og vis ændringsloggen for den angivne pakke\n" -" download - Hent den binære pakke til den aktuelle mappe\n" -"\n" -"Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -q Uddata, der kan logges - ingen fremgangsindikator\n" -" -qq Ingen uddata, kun fejl\n" -" -d Hent kun - installér eller udpak IKKE arkiverne\n" -" -s Gør intet. Simulér handlingen\n" -" -y Antag »ja«-svar til alle spørgsmål uden at spørge\n" -" -f Forsøg at fortsætte selvom integritetstjek fejler\n" -" -m Forsøg at fortsætte selvom arkiverne ikke kan findes\n" -" -u Vis også en liste over opgraderede pakker\n" -" -b Byg kildetekstpakken efter at have hentet den\n" -" -V Vis detaljerede versionsnumre\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et arbitrært opsætningsvalg. F.eks. -o dir::cache=/tmp\n" -"Se manualsiderne for apt-get(8), sources.list(5) og apt.conf(5)\n" -"for flere oplysninger og tilvalg.\n" -" Denne APT har »Super Cow Powers«.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Du skal angive mindst én pakke at hente kildeteksten til" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" - -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" - -#: cmdline/apt-mark.cc:68 -#, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s kan ikke markeres, da den ikke er installeret.\n" - -#: cmdline/apt-mark.cc:74 -#, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s var allerede sat til manuelt installeret.\n" - -#: cmdline/apt-mark.cc:76 -#, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s var allerede sat til automatisk installeret.\n" - -#: cmdline/apt-mark.cc:241 -#, c-format -msgid "%s was already set on hold.\n" -msgstr "%s var allerede sat i bero.\n" - -#: cmdline/apt-mark.cc:243 -#, c-format -msgid "%s was already not hold.\n" -msgstr "%s var allerede ikke i bero.\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Ventede på %s, men den var der ikke" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriver ny kildeliste\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, c-format -msgid "%s set on hold.\n" -msgstr "%s sat i bero.\n" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Denne disk har følgende kildeliste-indgange:\n" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Afbrød i bero for %s.\n" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Kørsel af dpkg fejlede. Er du root (administrator)?" - -#: cmdline/apt-mark.cc:392 -#, fuzzy 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" -"Brug: apt-mark [tilvalg] {auto|manual} pakke1 [pakke2 ...]\n" -"\n" -"apt-mark er en simpel kommandolinjegrænseflade for markering af pakker\n" -"som manuelt eller automatisk installeret. Programmet kan også vise\n" -"markeringerne.\n" -"\n" -"Kommandoer:\n" -" auto - Marker de givne pakker som automatisk installeret\n" -" manual - Marker de givne pakker som manuelt installeret\n" -"\n" -"Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -q Logbar uddata - ingen statusindikator\n" -" -qq Ingen uddata undtagen for fejl\n" -" -s Ingen handling. Viser kun hvad der ville blive udført.\n" -" -f læs/skriv auto/manuel markering i den givne fil\n" -" -c=? Læs denne konfigurationsfil\n" -" -o=? Angiv en arbitrær konfigurationsindstilling, f.eks. -o dir::cache=/" -"tmp\n" -"Se manualsiderne apt-mark(8) og apt.conf(5) for yderligere information." - -#: cmdline/apt.cc:47 -#, fuzzy -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Brug: apt [tilvalg] kommando\n" -"\n" -"CLI for apt.\n" -"Kommandoer: \n" -" list - vis pakker baseret på pakkenavn\n" -" search - søg i pakkebeskrivelser\n" -" show - vis pakkedetaljer\n" -"\n" -" update - opdater listen over tilgængelige pakker\n" -" install - installer pakker\n" -" upgrade - opgrader systemets pakker\n" -"\n" -" edit-sources - rediger source-informationsfilen (kildefilen)\n" - -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Kunne ikke læse cdrom-databasen %s" +"Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den." -#: methods/cdrom.cc:212 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Brug apt-cdrom for at apt kan lære den at kende. apt-get update kan ikke " -"bruges til at tilføje nye cd'er" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Forkert cd" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Kunne ikke afmontere cdrommen i %s, den er muligvis stadig i brug." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk blev ikke fundet." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fil blev ikke fundet" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Kunne ikke finde" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Kunne ikke angive ændringstidspunkt" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ugyldig URI, lokale URI'er må ikke starte med //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Logget på" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Kunne ikke bestemme serverens navn" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Kunne ikke bestemme det lokale navn" - -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Serveren nægtede os forbindelse og sagde: %s" - -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "angivelse af brugernavn mislykkedes, serveren sagde: %s" - -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "angivelse af adgangskode mislykkedes, serveren sagde: %s" +"Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes " +"tilbageholdte pakker." -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -"Der blev angivet en proxyserver men intet logpå-skript; Acquire::ftp::" -"ProxyLogin er tom." - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Logpå-skriptets kommando »%s« mislykkedes. Serveren sagde: %s" +"Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE mislykkedes. Serveren sagde: %s" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Opbygger afhængighedstræ" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Tidsudløb på forbindelsen" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidatversioner" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Serveren lukkede forbindelsen" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Afhængighedsgenerering" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Læsefejl" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Læser tilstandsoplysninger" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Mellemlageret blev overfyldt af et svar." +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Kunne ikke åbne StateFile %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokolfejl" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Kunne ikke skrive den midlertidige StateFile %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Skrivefejl" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Kunne ikke tolke pakkefilen %s (1)" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Kunne ikke oprette sokkel" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Kunne ikke tolke pakkefilen %s (2)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Kunne ikke forbinde datasokkel, tidsudløb på forbindelsen" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Udgaven »%s« for »%s« blev ikke fundet" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Mislykkedes" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versionen »%s« for »%s« blev ikke fundet" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Kunne ikke forbinde passiv sokkel." +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Kunne ikke lokalisere pakken %s" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo kunne ikke få en lyttesokkel" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Kunne ikke finde opgaven »%s«" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Kunne ikke tilknytte en sokkel" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Kunne ikke finde nogle pakker med regulært udtryk »%s«" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Kunne ikke lytte på soklen" +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Kunne ikke finde nogle pakker med glob »%s«" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Kunne ikke finde soklens navn" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Kan ikke vælge versioner fra pakke »%s« som er vitalt" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Kunne ikke sende PORT-kommando" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Kan ikke vælge installeret eller kandidatversion fra pakke »%s« da den ikke " +"har nogen af dem" -#: methods/ftp.cc:802 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ukendt adressefamilie %u (AF_*)" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "Kan ikke vælge nyeste version fra pakke »%s« som er vital" -#: methods/ftp.cc:811 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT mislykkedes. Serveren sagde: %s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Kan ikke vælge kandidatversion fra pakke %s da den ikke har nogen kandidat" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Tidsudløb på datasokkel-forbindelse" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Kan ikke vælge installeret version fra pakke %s da den ikke er installeret" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Kunne ikke acceptere forbindelse" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Kunne ikke fortolke udgivelsesfil %s" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem ved \"hashing\" af fil" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Ingen afsnit i udgivelsesfil %s" -#: methods/ftp.cc:890 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Kunne ikke hente fil. Serveren sagde »%s«" +msgid "No Hash entry in Release file %s" +msgstr "Intet hashpunkt i udgivelsesfil %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Tidsudløb ved datasokkel" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ugyldigt punkt »Valid-Until« i udgivelsesfil %s" -#: methods/ftp.cc:935 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataoverførsel mislykkedes, serveren sagde »%s«" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ugyldigt punkt »Date« i udgivelsesfil %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Forespørgsel" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Ugyldig stanza %u i kildelisten %s (tolkning af URI)" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Kunne ikke udføre " +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] kunne ikke fortolkes)" -#: methods/connect.cc:76 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Forbinder til %s (%s)" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] for kort)" -#: methods/connect.cc:87 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Ugyldig linje %lu i kildelisten %s ([%s] er ikke en opgave)" -#: methods/connect.cc:94 +#: apt-pkg/sourcelist.cc:190 #, 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)" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Ugyldig linje %lu i kildelisten %s ([%s] har ingen nøgle)" -#: methods/connect.cc:100 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kan ikke oprette forbindelse til %s:%s (%s)." +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Ugyldig linje %lu i kildelisten %s ([%s] nøgle %s har ingen værdi)" -#: methods/connect.cc:108 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Ugyldig linje %lu i kildelisten %s (URI)" -#: methods/connect.cc:126 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Kunne ikke forbinde til %s:%s (%s)." +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Ugyldig linje %lu i kildelisten %s (dist)" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Connecting to %s" -msgstr "Forbinder til %s" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Could not resolve '%s'" -msgstr "Kunne ikke omsætte navnet »%s«" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Ugyldig linje %lu i kildelisten %s (absolut dist)" -#: methods/connect.cc:205 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Midlertidig fejl ved omsætning af navnet »%s«" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Systemfejl under opløsning af »%s:%s«" +msgid "Opening %s" +msgstr "Åbner %s" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Der skete noget underligt under opløsning af »%s:%s« (%i - %s)" +msgid "Malformed line %u in source list %s (type)" +msgstr "Ugyldig linje %u i kildelisten %s (type)" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Kunne ikke forbinde til %s:%s:" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typen »%s« er ukendt på linje %u i kildelisten %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typen »%s« er ukendt på stanza %u i kildelisten %s" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Stødte på mindst én ugyldig signatur." +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Installerer %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Kunne ikke køre »gpgv« for at verificere signaturen (er gpgv installeret?)" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Sætter %s op" + +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Fjerner %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" -"Clearsigned-fil er ikke gyldig, fik »%s« (kræver netværket ikke " -"autentificering?)" +msgid "Completely removing %s" +msgstr "Fjerner %s helt" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Ukendt fejl ved kørsel af gpgv" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Bemærker forsvinding af %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Følgende signaturer var ugyldige:\n" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Kører førinstallationsudløser %s" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er " -"tilgængelig:\n" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Mappe »%s« mangler" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Tomme filer kan ikke være gyldige arkiver" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Kunne ikke åbne filen »%s«" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fejl ved skrivning til filen" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Klargør %s" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Pakker %s ud" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fejl ved læsning fra server" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Gør klar til at sætte %s op" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fejl ved skrivning til fil" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Installerede %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Valg mislykkedes" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Gør klar til afinstallation af %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Tidsudløb på forbindelsen" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Fjernede %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fejl ved skrivning af uddatafil" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Gør klar til at fjerne %s helt" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Afventer hoveder" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Fjernede %s helt" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ugyldig linje i hovedet" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) mislykkedes" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Http-serveren sendte et ugyldigt svarhovede" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, c-format +msgid "Can not write log (%s)" +msgstr "Kan ikke skrive log (%s)" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http-serveren sendte et ugyldigt Content-Length-hovede" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "Er /dev/pts monteret?" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http-serveren sendte et ugyldigt Content-Range-hovede" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "Er standardud en terminal?" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "" -"Denne http-servere har fejlagtig understøttelse af intervaller (»ranges«)" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Ventede på %s, men den var der ikke" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ukendt datoformat" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Handling blev afbrudt før den kunne afsluttes" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Ugyldige hoved-data" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Ingen apportrapport skrevet da MaxReports (maks rapporter) allerede er nået" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Forbindelsen mislykkedes" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "afhængighedsproblemer - efterlader ukonfigureret" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Intern fejl" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer, at det er en " +"opfølgningsfejl fra en tidligere fejl." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Beregner opgraderingen ... " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer en fuld disk-fejl" -#: apt-private/private-upgrade.cc:30 -msgid "Internal error, Upgrade broke stuff" -msgstr "Intern fejl, opgradering blev afbrudt" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer en ikke nok " +"hukommelsesfejl" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Færdig" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer en fejl på det lokale " +"system" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "Sortering" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "Ingen apportrapport skrevet da fejlbeskeden indikerer en dpkg I/O-fejl" -# måske visning, kategorisering -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "Listing" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Kunne ikke låse administrationsmappen (%s), bruger en anden proces den?" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Kunne ikke låse administrationsmappen (%s), er du rod (root)?" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Retter afhængigheder ..." +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg blev afbrudt, du skal manuelt køre »%s« for at rette problemet." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislykkedes." +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Ikke låst" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Kunne ikke rette afhængigheder" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Kunne ikke minimere opgraderingssættet" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Færdig" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Du kan muligvis rette dette ved at køre »apt-get -f install«." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Uopfyldte afhængigheder. Prøv med -f." +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Det valgte %s blev ikke fundet" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Benytter ikke låsning for skrivebeskyttet låsefil %s" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "installeret,kan opgraderes til: " +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kunne ikke åbne låsefilen %s" -#: apt-private/private-output.cc:237 -msgid "[installed,local]" -msgstr "[Installeret,lokalt]" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Benytter ikke låsning for nfs-monteret låsefil %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "[installeret,kan auto-fjernes]" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Kunne ikke opnå låsen %s" -#: apt-private/private-output.cc:242 -msgid "[installed,automatic]" -msgstr "[Installeret,automatisk]" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Liste over filer kan ikke oprettes da »%s« ikke er en mappe" -#: apt-private/private-output.cc:244 -msgid "[installed]" -msgstr "[Installeret]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignorerer »%s« i mappe »%s« da det ikke er en regulær fil" -#: apt-private/private-output.cc:248 -#, fuzzy, c-format -msgid "[upgradable from: %s]" -msgstr "[kan opgraderes fra: " +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Ignorerer fil »%s« i mappe »%s« da den ikke har en filendelse" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "[residual-konfig]" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "Ignorerer fil »%s« i mappe »%s« da den har en ugyldig filendelse" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Følgende pakker har uopfyldte afhængigheder:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprocessen %s modtog en segmenteringsfejl." -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "but %s is installed" -msgstr "men %s er installeret" +msgid "Sub-process %s received signal %u." +msgstr "Underprocessen %s modtog en signal %u." -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "but %s is to be installed" -msgstr "men %s forventes installeret" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Underprocessen %s returnerede en fejlkode (%u)" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "men den kan ikke installeres" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprocessen %s afsluttedes uventet" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "men det er en virtuel pakke" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Skrivefejl" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "men den er ikke installeret" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem under lukning af gzip-filen %s" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "men den bliver ikke installeret" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Kunne ikke åbne filen %s" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " eller" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Kunne ikke åbne filbeskrivelse %d" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Følgende NYE pakker vil blive installeret:" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Kunne ikke oprette underproces IPC" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Følgende pakker vil blive AFINSTALLERET:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Kunne ikke udføre komprimeringsprogram " -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Følgende pakker er blevet holdt tilbage:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Læsefejl" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Følgende pakker vil blive opgraderet:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "læs, mangler stadig at læse %llu men der er ikke flere" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Følgende pakker vil blive NEDGRADERET:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skriv, mangler stadig at skrive %llu men kunne ikke" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Følgende tilbageholdte pakker vil blive ændret:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem under lukning af filen %s" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "%s (due to %s) " -msgstr "%s (grundet %s) " +msgid "Problem renaming the file %s to %s" +msgstr "Problem under omdøbning af filen %s til %s" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n" -"Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Fejl ved frigivelse af filen %s" + +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem under synkronisering af fil" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu opgraderes, %lu nyinstalleres, " +msgid "%c%s... Error!" +msgstr "%c%s... Fejl!" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu geninstalleres, " +msgid "%c%s... Done" +msgstr "%c%s... Færdig" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-output.cc:700 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "%lu downgraded, " -msgstr "%lu nedgraderes, " +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" + +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan ikke udføre mmap for en tom fil" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu afinstalleres og %lu opgraderes ikke.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Kunne ikke duplikere filbeskrivelse %i" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Kunne ikke udføre mmap for %llu byte" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[J/n]" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Kunne ikke lukke mmap" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[j/N]" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Kunne ikke synkronisere mmap" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "J" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Kunne ikke udføre mmap for %lu byte" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Kunne ikke afkorte filen" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Regex compilation error - %s" -msgstr "Fejl ved tolkning af regulært udtryk - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "»update«-kommandoen benytter ingen parametre" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"Dynamisk MMap løb tør for plads. Øg venligst størrelsen på APT::Cache-Start. " +"Aktuel værdi: %lu. (man 5 apt.conf)" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Kunne ikke øge størrelsen på MMap da begrænsningen på %lu byte allerede er " +"nået." + +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Kunne ikke øge størrelsen på MMap da automatisk øgning er deaktiveret af " +"bruger." -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Unable to stat the mount point %s" +msgstr "Kunne ikke finde monteringspunktet %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "ikke en reel pakke (virtuel)" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Kunne ikke finde cdrommen" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ukendt type-forkortelse: »%c«" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakker skal afinstalleres, men Remove er deaktiveret." +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Åbner konfigurationsfilen %s" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Intern fejl. Sortering blev ikke fuldført" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksfejl %s:%u: Blokken starter uden navn." -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Mystisk... Størrelserne passede ikke, skriv til apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksfejl %s:%u: Forkert udformet mærke" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%sB/%sB skal hentes fra arkiverne.\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%sB skal hentes fra arkiverne.\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksfejl %s:%u: Inkluderet herfra" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Du har ikke nok ledig plads i %s." +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv »%s«" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Der er problemer og -y blev brugt uden --force-yes" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaksfejl %s:%u: ryd direktiv kræver et tilvalgstræ som argument" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "»Trivial Only« angivet, men dette er ikke en triviel handling." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Ja, gør som jeg siger!" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Ingen nøglering installeret i %s." -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Du er ved at gøre noget, der kan være skadeligt\n" -"For at fortsætte, skal du skrive »%s«\n" -" ?] " +msgid "Command line option '%c' [from %s] is not known." +msgstr "Kommandolinjetilvalget »%c« [fra %s] kendes ikke." -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Afbryder." +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Kommandolinjetilvalget %s blev ikke forstået" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Vil du fortsætte?" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Kommandolinjetilvalget %s er ikke boolsk" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Nedhentningen af filer mislykkedes" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Tilvalget %s kræver et parameter." -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Kunne ikke hente nogle af arkiverne. Prøv evt. at køre »apt-get update« " -"eller prøv med --fix-missing." +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>." -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing og medieskift understøttes endnu ikke" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Tilvalget %s kræver et heltalligt parameter, ikke »%s«" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Kunne ikke rette manglende pakker." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Tilvalget »%s« er for langt" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Afbryder installationen." +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "%s blev ikke forstået, prøv med »true« eller »false«." -#: apt-private/private-install.cc:365 -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] "" -"Den følgende pakke forsvandt fra dit system, da\n" -"alle filer er blevet overskrevet af andre pakker:" -msgstr[1] "" -"De følgende pakker forsvandt fra dit system, da\n" -"alle filer er blevet overskrevet af andre pakker:" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Ugyldig handling %s" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakken %s version %s har en uopfyldt afhængighed:\n" -#: apt-private/private-install.cc:390 -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-cache.cc:277 +msgid "Total package names: " +msgstr "Samlet antal pakkenavne: " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, det lader til at AutoRemover smadrede noget, der virkelig ikke\n" -"burde kunne ske. Indsend venligst en fejlrapport om apt." +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Samlet antal pakkestrukturer: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normale pakker: " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern fejl. AutoRemover ødelagde noget" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Rene virtuelle pakker: " -#: apt-private/private-install.cc:512 -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] "" -"Følgende pakke blev installeret automatisk, og behøves ikke længere:" -msgstr[1] "" -"Følgende pakker blev installeret automatisk, og behøves ikke længere:" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Enkelte virtuelle pakker: " -#: apt-private/private-install.cc:516 -#, 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] "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-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Blandede virtuelle pakker: " -#: apt-private/private-install.cc:518 -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-cache.cc:323 +msgid " Missing: " +msgstr " Manglende: " -#: apt-private/private-install.cc:612 -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-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Totale forskellige versioner: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Uopfyldte afhængigheder. Prøv »apt-get -f install« uden pakker (eller angiv " -"en løsning)." +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Sammenlagt forskellige beskrivelser: " -#: apt-private/private-install.cc:628 -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 "" -"Nogle pakker kunne ikke installeres. Det kan betyde at du har ønsket\n" -"en umulig situation eller bruger den ustabile distribution, hvor enkelte\n" -"pakker endnu ikke er lavet eller gjort tilgængelige." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Sammenlagt afhængigheder: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Ødelagte pakker" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Sammenlagt version/fil-relationer: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Følgende yderligere pakker vil blive installeret:" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Sammenlagt version/fil-relationer: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Foreslåede pakker:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Sammenlagt »Tilbyder«-markeringer: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Anbefalede pakker:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Totalle søgemønsterstrenge: " -#: apt-private/private-install.cc:815 -#, fuzzy, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Total afhængighedsversions-plads: " -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Total »Slack«-plads: " + +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Total plads, der kan gøres rede for: " -#: apt-private/private-install.cc:831 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" +msgid "Package file %s is out of sync." +msgstr "Pakkefilen %s er ude af trit." -#: apt-private/private-install.cc:836 -#, fuzzy, c-format -msgid "%s is already the newest version.\n" -msgstr "%s var allerede sat i bero.\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Fandt ingen pakker" -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Du skal angive mindst ét søgemønster" -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" +"Denne kommando er forældet. Brug venligst »apt-mark showauto« i stedet for." -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" +# Overskriften til apt-cache policy, +# forkorter "Package" væk. CH +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakkefiler:" -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Mellemlageret er ude af trit, kan ikke krydsreferere en pakkefil" -#: apt-private/private-main.cc:32 -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 "" -"BEMÆRK: Dette er kun en simulering!\n" -" apt-get kræver rootprivilegier for reel kørsel.\n" -" Husk også at låsning er deaktiveret,\n" -" så stol ikke på relevansen for den reelle aktuelle situation!" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "»Pinned« pakker:" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ikke fundet)" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentifikationsadvarsel tilsidesat.\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installeret: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nogle pakker kunne ikke autentificeres" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installér disse pakker uden verifikation?" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ingen)" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Kunne ikke hente %s %s\n" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pakke-pin: " -#: apt-private/private-sources.cc:58 -#, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Kunne ikke fortolke %s. Rediger igen? " +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versionstabel:" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "Din »%s« fil blev ændret, kør venligst »apt-get update«." +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s for %s kompileret på %s %s\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "Fuldtekst-søgning" +#: cmdline/apt-cache.cc:1749 +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 "" +"Brug: apt-cache [tilvalg] kommando\n" +" apt-cache [tilvalg] showpkg pakke1 [pakke2 ...]\n" +" apt-cache [tilvalg] showsrc pakke1 [pakke2 ...]\n" +"\n" +"apt-cache er et lavniveauværktøj, brugt til at manipulere APTs\n" +"binære mellemlagerfiler og hente oplysninger fra dem.\n" +"\n" +"Kommandoer:\n" +" gencaches - Opbyg både pakke- og kildemellemlageret\n" +" showpkg - Vis generelle oplysninger om en enkelt pakke\n" +" showsrc - Vis kildetekstposter\n" +" stats - Vis nogle grundlæggende statistikker\n" +" dump - Vis hele filen i kort form\n" +" dumpavail - Udlæs en »available«-fil til standard-ud\n" +" unmet - Vis uopfyldte afhængigheder\n" +" search - Gennemsøg pakkelisten med et regulært udtryk\n" +" show - Vis en læsbar post for pakken\n" +" depends - Vis de rå afhængighedsoplysninger for en pakke\n" +" rdepends - Vis omvendte afhængighedsoplysninger for en pakke\n" +" pkgnames - Vis navnene på alle pakker\n" +" dotty - Generér pakkegrafer til GraphViz\n" +" xvcg - Generér pakkegrafer til xvcg\n" +" policy - Vis policy-indstillinger\n" +"\n" +"Tilvalg:\n" +" -h Denne hjælpetekst.\n" +" -p=? Pakkemellemlageret.\n" +" -s=? Kildemellemlageret.\n" +" -q Deaktiver fremgangsindikatoren.\n" +" -i Vis kun vigtige afhængigheder for kommandoen »unmet«.\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" +"Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Havde " +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Angiv venligst et navn for denne disk, som f.eks. »Debian 5.0.3 Disk 1«" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Henter:" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Indsæt en disk i drevet og tryk retur" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ignorerer " +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Kunne ikke montere %s til %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fejl " +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Ingen cd-rom kunne detekteres eller findes via standardmonteringspunktet.\n" +"Du kan prøve tilvalget --cdrom for at angive cd-rom-monteringspunktet.\n" +"Se »man apt-cdrom« for yderligere information om automatisk detektering af " +"cd-rom og monteringspunkt." -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hentede %sB på %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Gentag processen for resten af cd'erne i dit sæt." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Arbejder]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parametre ikke angivet i par" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Medieskift: Indsæt disken med navnet\n" -" »%s«\n" -"i drevet »%s« og tryk retur\n" +"Brug: apt-config [tilvalg] kommando\n" +"\n" +"apt-config er et simpelt værktøj til at læse APTs opsætningsfil\n" +"\n" +"Kommandoer:\n" +" shell - Skal-tilstand\n" +" dump - Vis opsætningen\n" +"\n" +"Tilvalg:\n" +" -h Denne hjælpetekst.\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Unable to read %s" -msgstr "Kunne ikke læse %s" +msgid "Can not find a package for architecture '%s'" +msgstr "Kan ikke finde en pakke for arkitektur »%s«" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#: cmdline/apt-get.cc:327 #, c-format -msgid "Unable to change to %s" -msgstr "Kunne ikke skifte til %s" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Kan ikke finde en pakke »%s« med version »%s«" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:330 #, c-format -msgid "No mirror file '%s' found " -msgstr "Ingen spejlfil »%s« fundet " +msgid "Can not find a package '%s' with release '%s'" +msgstr "Kan ikke finde en pakke »%s« med udgivelse »%s«" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Kan ikke læse spejlfil »%s«" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Vælger »%s« som kildepakke fremfor »%s«\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:423 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Ingen post fundet i spejlfil »%s«" +msgid "Can not find version '%s' of package '%s'" +msgstr "Kan ikke finde version »%s« for pakke »%s«" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:454 #, c-format -msgid "[Mirror: %s]" -msgstr "[Spejl: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Kunne ikke oprette IPC-videreførsel til underproces" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Forbindelsen lukkedes for hurtigt" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Ugyldig standardindstilling!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Tryk retur for at fortsætte." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Ønsker du at slette nogle tidligere hentede .deb-filer?" - -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Der opstod fejl under udpakningen. Pakker som blev installeret" +msgid "Couldn't find package %s" +msgstr "Kunne ikke finde pakken %s" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "vil blive konfigureret. Det kan give gentagne fejl" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s sat til manuelt installeret.\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"eller fejl, der skyldes manglende afhængigheder. Dette er o.k. Det er kun" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s sat til automatisk installation.\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"fejlene over denne besked, der er vigtige. Ret dem og kør [I]nstallér igen" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Sammenfletter tilgængelighedsoplysninger" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode kaldt med endnu forbundet knude" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Kunne ikke finde hash-element!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Kunne ikke allokere omrokering" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Intern fejl i AddDiversion" - -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Forsøger at overskrive en omrokering, %s -> %s og %s/%s" - -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobbelt tilføjelse af omrokering %s -> %s" +"Denne kommando er forældet. Brug venligst »apt-mark auto« og »apt-mark " +"manual« i stedet for." -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dobbelt opsætningsfil %s/%s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Intern fejl. Problemløseren ødelagde noget" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Stien %s er for lang" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Kunne ikke låse nedhentningsmappen" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Pakkede %s ud flere gange" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Du skal angive mindst én pakke at hente kildeteksten til" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "The directory %s is diverted" -msgstr "Mappen %s er omrokeret" +msgid "Unable to find a source package for %s" +msgstr "Kunne ikke finde kildetekstpakken for %s" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:786 #, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Omrokeringsstien er for lang" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"BEMÆRK: Pakning af »%s« vedligeholdes i versionskontrolsystemet »%s« på:\n" +"%s\n" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Failed to stat %s" -msgstr "Kunne ikke finde %s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Brug venligst:\n" +"bzr branch %s\n" +"for at hente de seneste (muligvis ikke udgivet) opdateringer til pakken.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Kunne ikke omdøbe %s til %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Overspringer allerede hentet fil »%s«\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, 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:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Kunne ikke finde knuden i sin hash-bucket" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Stien er for lang" +msgid "Couldn't determine free space in %s" +msgstr "Kunne ikke bestemme ledig plads i %s" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Overskriv pakkematch uden version for %s" +msgid "You don't have enough free space in %s" +msgstr "Du har ikke nok ledig plads i %s" -#: apt-inst/extract.cc:438 +#. 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:891 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "File %s/%s overskriver filen i pakken %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n" -#: apt-inst/extract.cc:498 +#. 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:896 #, c-format -msgid "Unable to stat %s" -msgstr "Kunne ikke finde %s" +msgid "Need to get %sB of source archives.\n" +msgstr "%sB skal hentes fra kildetekst-arkiverne.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Failed to write file %s" -msgstr "Kunne ikke skrive filen %s" +msgid "Fetch source %s\n" +msgstr "Henter kildetekst %s\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nogle arkiver kunne ikke hentes." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Nedhentning afsluttet i »hent-kun«-tilstand" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to close file %s" -msgstr "Kunne ikke lukke filen %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:962 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dette er ikke et gyldigt DEB-arkiv, mangler »%s«-elementet" +msgid "Unpack command '%s' failed.\n" +msgstr "Udpakningskommandoen »%s« fejlede.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Intern fejl, kunne ikke finde elementet %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Tjek om pakken »dpkg-dev« er installeret.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ikke-tolkbar kontrolfil" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Opbygningskommandoen »%s« fejlede.\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ugyldig arkivsignatur" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Barneprocessen fejlede" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fejl under læsning af arkivelements hoved" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldigt arkivelementhoved %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ugyldigt arkivelementhoved" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Ingen arkitekturinformation tilgængelig for %s. Se apt.conf(5) APT::" +"Architectures for opsætning" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkivet er for kort" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Kunne ikke læse arkivhovederne" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s har ingen opbygningsafhængigheder.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Kunne ikke oprette videreførsler" +#: cmdline/apt-get.cc:1271 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Afhængigheden %s for %s kan ikke opfyldes, da %s ikke er tilladt på »%s«" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Kunne ikke udføre gzip " +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Afhængigheden %s for %s kan ikke opfyldes, da pakken %s ikke blev fundet" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Ødelagt arkiv" +#: cmdline/apt-get.cc:1312 +#, 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" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-tjeksum fejlede, arkivet er ødelagt" +#: cmdline/apt-get.cc:1351 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Afhængigheden %s for %s kan ikke opfyldes, da ingen af de tilgængelige " +"kandidater for pakken %s kan tilfredsstille versionskravene" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Ukendt TAR-hovedtype %u, element %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke har en " +"kandidatversion" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Unable to stat %s." -msgstr "Kunne ikke finde %s." +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Progress: [%3i%%]" -msgstr "Status: [%3i%%]" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes." -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Kører dpkg" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Kunne ikke behandler opbygningsafhængighederne" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakkesystemet »%s« understøttes ikke" +msgid "Changelog for %s (%s)" +msgstr "Ændringslog for %s (%s)" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Kunne ikke bestemme en passende pakkesystemtype" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Understøttede moduler:" + +#: cmdline/apt-get.cc:1632 +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 "" +"Brug: apt-get [tilvalg] kommando\n" +" apt-get [tilvalg] install|remove pakke1 [pakke2 ...]\n" +" apt-get [tilvalg] source pakke1 [pakke2 ...]\n" +"\n" +"apt-get er en simpel kommandolinjegrænseflade til at hente og\n" +"installere pakker. De hyppigst brugte kommandoer er update og\n" +"install.\n" +"\n" +"Kommandoer:\n" +" update - Hent nye lister over pakker\n" +" upgrade - Udfør en opgradering\n" +" install - Installer nye pakker (pakke er libc6, ikke libc6.deb)\n" +" remove - Afinstaller pakker\n" +" autoremove - Afinstaller automatisk alle ubrugte pakker\n" +" purge - Fjern pakker og konfigurationsfiler\n" +" source - Hent kildetekstarkiver\n" +" build-dep - Sæt opbygningsafhængigheder op for kildetekstpakker\n" +" dist-upgrade - Distributionsopgradering, se apt-get(8)\n" +" dselect-upgrade - Følg valgene fra dselect\n" +" clean - Slet hentede arkivfiler\n" +" autoclean - Slet gamle hentede arkivfiler\n" +" check - Tjek at der ikke er uopfyldte afhængigheder\n" +" changelog - Hent og vis ændringsloggen for den angivne pakke\n" +" download - Hent den binære pakke til den aktuelle mappe\n" +"\n" +"Tilvalg:\n" +" -h Denne hjælpetekst.\n" +" -q Uddata, der kan logges - ingen fremgangsindikator\n" +" -qq Ingen uddata, kun fejl\n" +" -d Hent kun - installér eller udpak IKKE arkiverne\n" +" -s Gør intet. Simulér handlingen\n" +" -y Antag »ja«-svar til alle spørgsmål uden at spørge\n" +" -f Forsøg at fortsætte selvom integritetstjek fejler\n" +" -m Forsøg at fortsætte selvom arkiverne ikke kan findes\n" +" -u Vis også en liste over opgraderede pakker\n" +" -b Byg kildetekstpakken efter at have hentet den\n" +" -V Vis detaljerede versionsnumre\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et arbitrært opsætningsvalg. F.eks. -o dir::cache=/tmp\n" +"Se manualsiderne for apt-get(8), sources.list(5) og apt.conf(5)\n" +"for flere oplysninger og tilvalg.\n" +" Denne APT har »Super Cow Powers«.\n" + +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "Du skal angive mindst et par i form af adresse/filnavn" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Skrev %i poster.\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "Kunne ikke hente pakkerne" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Skrev %i poster med %i manglende filer.\n" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" +"Brug: apt-helper [tilvalg] kommando\n" +" apt-helper [tilvalg] download-file uri target-path\n" +"\n" +"apt-helper er et internt hjælpeprogram for apt\n" +"\n" +"Kommandoer:\n" +" download-file - hent den angivne uri til mål-sti\n" +"\n" +" Dette APT-hjælpeprogram har Super Meep Powers.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Skrev %i poster med %i ikke-trufne filer\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s kan ikke markeres, da den ikke er installeret.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-mark.cc:74 #, 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" +msgid "%s was already set to manually installed.\n" +msgstr "%s var allerede sat til manuelt installeret.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Kan ikke finde godkendelsesregistrering for: %s" +msgid "%s was already set to automatically installed.\n" +msgstr "%s var allerede sat til automatisk installeret.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Hashsum stemmer ikke: %s" +msgid "%s was already set on hold.\n" +msgstr "%s var allerede sat i bero.\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "The method driver %s could not be found." -msgstr "Metodedriveren %s blev ikke fundet." - -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Tjek om pakken »dpkg-dev« er installeret.\n" +msgid "%s was already not hold.\n" +msgstr "%s var allerede ikke i bero.\n" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Method %s did not start correctly" -msgstr "Metoden %s startede ikke korrekt" +msgid "%s set on hold.\n" +msgstr "%s sat i bero.\n" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Indsæt disken med navnet: »%s« i drevet »%s« og tryk retur." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller åbnes." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Du kan muligvis rette problemet ved at køre »apt-get update«" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Listen med kilder kunne ikke læses." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Tomt pakke-mellemlager" +msgid "Canceled hold on %s.\n" +msgstr "Afbrød i bero for %s.\n" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Pakke-mellemlagerets fil er ødelagt" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Kørsel af dpkg fejlede. Er du root (administrator)?" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Pakke-mellemlagerets fil er af en inkompatibel version" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Brug: apt-mark [tilvalg] {auto|manual} pakke1 [pakke2 ...]\n" +"\n" +"apt-mark er en simpel kommandolinjegrænseflade for markering af pakker\n" +"som manuelt eller automatisk installeret. Programmet kan også vise\n" +"markeringerne.\n" +"\n" +"Kommandoer:\n" +" auto - Marker de givne pakker som automatisk installeret\n" +" manual - Marker de givne pakker som manuelt installeret\n" +" hold - Marker en pakke som tilbageholdt\n" +" unhold - Fjern tilbageholdelse på pakke\n" +" showauto - Vis listen over automatisk installerede pakker\n" +" showmanual - Vis listen over manuelt installerede pakker\n" +" showhold - Vis listen over tilbageholdte pakker\n" +"\n" +"Tilvalg:\n" +" -h Denne hjælpetekst.\n" +" -q Logbar uddata - ingen statusindikator\n" +" -qq Ingen uddata undtagen for fejl\n" +" -s Ingen handling. Viser kun hvad der ville blive udført.\n" +" -f læs/skriv auto/manuel markering i den givne fil\n" +" -c=? Læs denne konfigurationsfil\n" +" -o=? Angiv en arbitrær konfigurationsindstilling, f.eks. -o dir::cache=/" +"tmp\n" +"Se manualsiderne apt-mark(8) og apt.conf(5) for yderligere information." -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Pakke-mellemlagerets fil er ødelagt, den er for lille" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" +"Brug: apt [tilvalg] kommando\n" +"\n" +"CLI for apt.\n" +"Kommandoer: \n" +" list - vis pakker baseret på pakkenavn\n" +" search - søg i pakkebeskrivelser\n" +" show - vis pakkedetaljer\n" +"\n" +" update - opdater listen over tilgængelige pakker\n" +"\n" +" install - installer pakker\n" +" remove - fjern pakker\n" +"\n" +" upgrade - opgradere systemet ved at installere/opgradere pakker\n" +" full-upgrade - opgradere systemet ved at fjerne/installere/opgradere " +"pakker\n" +"\n" +" edit-sources - rediger source-informationsfilen (kildefilen)\n" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Denne APT understøtter ikke versionssystemet »%s«" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Pakke-mellemlageret er lavet til en anden arkitektur" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Afhængigheder" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Præ-afhængigheder" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Foreslåede" +msgid "Unable to read the cdrom database %s" +msgstr "Kunne ikke læse cdrom-databasen %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Anbefalede" +#: 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 "" +"Brug apt-cdrom for at apt kan lære den at kende. apt-get update kan ikke " +"bruges til at tilføje nye cd'er" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Konflikter" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Forkert cd" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Erstatter" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Kunne ikke afmontere cdrommen i %s, den er muligvis stadig i brug." -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Overflødiggør" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk blev ikke fundet." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ødelægger" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fil blev ikke fundet" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Forbedringer" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Kunne ikke finde" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "vigtig" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Kunne ikke angive ændringstidspunkt" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "krævet" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ugyldig URI, lokale URI'er må ikke starte med //" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Logget på" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "frivillig" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Kunne ikke bestemme serverens navn" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ekstra" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Kunne ikke bestemme det lokale navn" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indeksfiler af typen »%s« understøttes ikke" +msgid "The server refused the connection and said: %s" +msgstr "Serveren nægtede os forbindelse og sagde: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Mellemlageret benytter en inkompatibel versionsstyring" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "angivelse af brugernavn mislykkedes, serveren sagde: %s" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:232 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Der opstod en fejl under behandlingen af %s (%s%d)" +msgid "PASS failed, server said: %s" +msgstr "angivelse af adgangskode mislykkedes, serveren sagde: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Hold da op! Du nåede over det antal pakkenavne, denne APT kan håndtere." +"Der blev angivet en proxyserver men intet logpå-skript; Acquire::ftp::" +"ProxyLogin er tom." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere." +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Logpå-skriptets kommando »%s« mislykkedes. Serveren sagde: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE mislykkedes. Serveren sagde: %s" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Tidsudløb på forbindelsen" -#: apt-pkg/pkgcachegen.cc:576 -#, 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" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Serveren lukkede forbindelsen" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kunne ikke finde kildepakkelisten %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Mellemlageret blev overfyldt af et svar." -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Indlæser pakkelisterne" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokolfejl" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samler filudbud" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Kunne ikke oprette sokkel" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Kunne ikke skrive til %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Kunne ikke forbinde datasokkel, tidsudløb på forbindelsen" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO-fejl ved gemning af kilde-mellemlageret" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislykkedes" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Send scenarie til problemløser" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Kunne ikke forbinde passiv sokkel." -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Send forespørgsel til problemløser" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo kunne ikke få en lyttesokkel" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Forbered for modtagelse af løsning" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Kunne ikke tilknytte en sokkel" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "Ekstern problemløser fejlede uden en korrekt fejlbesked" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Kunne ikke lytte på soklen" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Kør ekstern problemløser" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Kunne ikke finde soklens navn" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Kunne ikke sende PORT-kommando" + +#: methods/ftp.cc:802 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "omdøbning mislykkedes, %s (%s -> %s)." +msgid "Unknown address family %u (AF_*)" +msgstr "Ukendt adressefamilie %u (AF_*)" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hashsum stemmer ikke" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT mislykkedes. Serveren sagde: %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Størrelsen stemmer ikke" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Tidsudløb på datasokkel-forbindelse" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "Ugyldigt filformat" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Kunne ikke acceptere forbindelse" -#: apt-pkg/acquire-item.cc:1581 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Kunne ikke finde uventet punkt »%s« i udgivelsesfil (forkert sources.list-" -"punkt eller forkert udformet fil)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem ved \"hashing\" af fil" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:890 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Kunne ikke finde hashsum for »%s« i udgivelsesfilen" +msgid "Unable to fetch file, server said '%s'" +msgstr "Kunne ikke hente fil. Serveren sagde »%s«" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Tidsudløb ved datasokkel" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:935 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Udgivelsesfil for %s er udløbet (ugyldig siden %s). Opdateringer for dette " -"arkiv vil ikke blive anvendt." +msgid "Data transfer failed, server said '%s'" +msgstr "Dataoverførsel mislykkedes, serveren sagde »%s«" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Forespørgsel" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Kunne ikke udføre " -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konfliktdistribution: %s (forventede %s men fik %s)" +msgid "Connecting to %s (%s)" +msgstr "Forbinder til %s (%s)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:87 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Der opstod en fejl under underskriftsbekræftelse. Arkivet er ikke opdateret " -"og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s\n" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:94 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-fejl: %s: %s" +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)" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:100 #, 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 "" -"Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " -"nødt til manuelt at reparere denne pakke. (grundet manglende arch)" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kan ikke oprette forbindelse til %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:108 #, 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«" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:126 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Pakkeindeksfilerne er i stykker. Intet »Filename:«-felt for pakken %s." +msgid "Could not connect to %s:%s (%s)." +msgstr "Kunne ikke forbinde til %s:%s (%s)." -#: apt-pkg/vendorlist.cc:85 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Leverandørblok %s inderholder intet fingeraftryk" +msgid "Connecting to %s" +msgstr "Forbinder til %s" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "List directory %spartial is missing." -msgstr "Listemappen %spartial mangler." +msgid "Could not resolve '%s'" +msgstr "Kunne ikke omsætte navnet »%s«" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkivmappen %spartial mangler." +msgid "Temporary failure resolving '%s'" +msgstr "Midlertidig fejl ved omsætning af navnet »%s«" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:209 #, c-format -msgid "Unable to lock directory %s" -msgstr "Kunne ikke låse mappen %s" +msgid "System error resolving '%s:%s'" +msgstr "Systemfejl under opløsning af »%s:%s«" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Henter fil %li ud af %li (%s tilbage)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Der skete noget underligt under opløsning af »%s:%s« (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Henter fil %li ud af %li" +msgid "Unable to connect to %s:%s:" +msgstr "Kunne ikke forbinde til %s:%s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Nogle indeksfiler kunne ikke hentes. De er blevet ignoreret eller de gamle " -"bruges i stedet." +"Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Du skal have nogle »source«-URI'er i din sources.list" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Stødte på mindst én ugyldig signatur." -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Værdien »%s« er ugyldig for APT::Default-Release da sådan en udgivelse ikke " -"er tilgængelig i kilderne" +"Kunne ikke køre »gpgv« for at verificere signaturen (er gpgv installeret?)" -#: apt-pkg/policy.cc:422 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ugyldig indgang i indstillingsfilen %s, pakkehovedet mangler" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" +"Clearsigned-fil er ikke gyldig, fik »%s« (kræver netværket ikke " +"autentificering?)" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Kunne ikke forstå pin-type %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Ukendt fejl ved kørsel af gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Følgende signaturer var ugyldige:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Kunne ikke udføre øjeblikkelig konfiguration på »%s«. Se venligst man 5 apt." -"conf under APT:Immediate-Cinfigure for detaljer. (%d)" +"Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er " +"tilgængelig:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Kunne ikke åbne filen »%s«. " +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Tomme filer kan ikke være gyldige arkiver" -#: apt-pkg/packagemanager.cc:583 -#, 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 "" -"Kørsel af denne installation kræver midlertidig afinstallation af den " -"essentielle pakke %s grundet en afhængighedsløkke. Det er ofte en dårlig " -"ide, men hvis du virkelig vil gøre det, kan du aktivere valget »APT::Force-" -"LoopBreak«." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fejl ved skrivning til filen" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Linjen %u er for lang i kildelisten %s." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Afmonterer CD-ROM ...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fejl ved læsning fra server" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Bruger CD-ROM-monteringspunktet %s\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fejl ved skrivning til fil" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Venter på disken ...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Valg mislykkedes" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterer CD-ROM ...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Tidsudløb på forbindelsen" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificerer ... " +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fejl ved skrivning af uddatafil" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Gemt mærkat: %s \n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Afventer hoveder" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Skanner disken for indeksfiler ...\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Ugyldig linje i hovedet" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Fandt %zu pakkeindekser, %zu kildeindekser, %zu oversættelsesindekser og %zu " -"signaturer\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Http-serveren sendte et ugyldigt svarhovede" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Http-serveren sendte et ugyldigt Content-Length-hovede" + +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Http-serveren sendte et ugyldigt Content-Range-hovede" + +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" msgstr "" -"Kunne ikke finde nogen pakkefiler, det er muligvis ikke en Debiandisk eller " -"den forkerte arkitektur?" +"Denne http-servere har fejlagtig understøttelse af intervaller (»ranges«)" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Fandt mærkatet »%s«\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ukendt datoformat" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Det er ikke et gyldigt navn, prøv igen.\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Ugyldige hoved-data" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Denne disk hedder: \n" -"»%s«\n" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Forbindelsen mislykkedes" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopierer pakkelisterne ..." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Intern fejl" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriver ny kildeliste\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Beregner opgraderingen ... " -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Denne disk har følgende kildeliste-indgange:\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Færdig" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Sortering" + +# måske visning, kategorisering +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "Listing" + +#: apt-private/private-list.cc:164 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den." +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +"Der er %i yderlig version. Brug venligst kontakten »-a« til at se den." +msgstr[1] "" +"Der er %i yderligere versioner. Brug venligst kontakten »-a« til at se dem." -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes " -"tilbageholdte pakker." +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Retter afhængigheder ..." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" -"Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " mislykkedes." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Opbygger afhængighedstræ" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Kunne ikke rette afhængigheder" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidatversioner" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Kunne ikke minimere opgraderingssættet" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Afhængighedsgenerering" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Færdig" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Læser tilstandsoplysninger" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Du kan muligvis rette dette ved at køre »apt-get -f install«." -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Kunne ikke åbne StateFile %s" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Uopfyldte afhængigheder. Prøv med -f." -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Kunne ikke skrive den midlertidige StateFile %s" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "ukendt" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:234 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Kunne ikke tolke pakkefilen %s (1)" +msgid "[installed,upgradable to: %s]" +msgstr "[installeret,kan opgraderes til: %s]" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Kunne ikke tolke pakkefilen %s (2)" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[Installeret,lokalt]" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Udgaven »%s« for »%s« blev ikke fundet" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[installeret,kan auto-fjernes]" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versionen »%s« for »%s« blev ikke fundet" +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[Installeret,automatisk]" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Kunne ikke finde opgaven »%s«" +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[Installeret]" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:249 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Kunne ikke finde nogle pakker med regulært udtryk »%s«" +msgid "[upgradable from: %s]" +msgstr "[kan opgraderes fra: %s]" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Kunne ikke finde nogle pakker med regulært udtryk »%s«" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[residual-konfig]" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Kan ikke vælge versioner fra pakke »%s« som er vitalt" +msgid "but %s is installed" +msgstr "men %s er installeret" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:437 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Kan ikke vælge installeret eller kandidatversion fra pakke »%s« da den ikke " -"har nogen af dem" +msgid "but %s is to be installed" +msgstr "men %s forventes installeret" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "Kan ikke vælge nyeste version fra pakke »%s« som er vital" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "men den kan ikke installeres" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" -"Kan ikke vælge kandidatversion fra pakke %s da den ikke har nogen kandidat" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "men det er en virtuel pakke" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Kan ikke vælge installeret version fra pakke %s da den ikke er installeret" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "men den er ikke installeret" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Kunne ikke fortolke udgivelsesfil %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "men den bliver ikke installeret" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Ingen afsnit i udgivelsesfil %s" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " eller" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Intet hashpunkt i udgivelsesfil %s" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Følgende pakker har uopfyldte afhængigheder:" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ugyldigt punkt »Valid-Until« i udgivelsesfil %s" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Følgende NYE pakker vil blive installeret:" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ugyldigt punkt »Date« i udgivelsesfil %s" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Følgende pakker vil blive AFINSTALLERET:" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Følgende pakker er blevet holdt tilbage:" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] kunne ikke fortolkes)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Følgende pakker vil blive opgraderet:" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] for kort)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Følgende pakker vil blive NEDGRADERET:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Ugyldig linje %lu i kildelisten %s ([%s] er ikke en opgave)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Følgende tilbageholdte pakker vil blive ændret:" -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Ugyldig linje %lu i kildelisten %s ([%s] har ingen nøgle)" +msgid "%s (due to %s) " +msgstr "%s (grundet %s) " -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Ugyldig linje %lu i kildelisten %s ([%s] nøgle %s har ingen værdi)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n" +"Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Ugyldig linje %lu i kildelisten %s (URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu opgraderes, %lu nyinstalleres, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Ugyldig linje %lu i kildelisten %s (dist)" +msgid "%lu reinstalled, " +msgstr "%lu geninstalleres, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)" +msgid "%lu downgraded, " +msgstr "%lu nedgraderes, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Ugyldig linje %lu i kildelisten %s (absolut dist)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu afinstalleres og %lu opgraderes ikke.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Åbner %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Ugyldig linje %u i kildelisten %s (type)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: apt-pkg/sourcelist.cc:375 -#, 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" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typen »%s« er ukendt på linje %u i kildelisten %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Installerer %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "»update«-kommandoen benytter ingen parametre" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-update.cc:90 #, c-format -msgid "Configuring %s" -msgstr "Sætter %s op" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +"%i pakke kan opgraderes. Kør »apt list --upgradable« for at se den.\n" +msgstr[1] "" +"%i pakker kan opgraderes. Kør »apt list --upgradable« for at se dem.\n" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Fjerner %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "Alle pakker er opdateret." -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-show.cc:156 #, c-format -msgid "Completely removing %s" -msgstr "Fjerner %s helt" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +"Der er %i yderligere post. Brug venligst kontakten »-a« for at se den." +msgstr[1] "" +"Der er %i yderligere poster. Brug venligst kontakten »-a« for at se dem." -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Bemærker forsvinding af %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "ikke en reel pakke (virtuel)" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Kører førinstallationsudløser %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Mappe »%s« mangler" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakker skal afinstalleres, men Remove er deaktiveret." -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Kunne ikke åbne filen »%s«" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Intern fejl. Sortering blev ikke fuldført" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Klargør %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Mystisk... Størrelserne passede ikke, skriv til apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Unpacking %s" -msgstr "Pakker %s ud" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%sB/%sB skal hentes fra arkiverne.\n" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing to configure %s" -msgstr "Gør klar til at sætte %s op" +msgid "Need to get %sB of archives.\n" +msgstr "%sB skal hentes fra arkiverne.\n" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Installed %s" -msgstr "Installerede %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing for removal of %s" -msgstr "Gør klar til afinstallation af %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: apt-private/private-install.cc:200 #, c-format -msgid "Removed %s" -msgstr "Fjernede %s" +msgid "You don't have enough free space in %s." +msgstr "Du har ikke nok ledig plads i %s." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Gør klar til at fjerne %s helt" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Der er problemer og -y blev brugt uden --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Fjernede %s helt" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "»Trivial Only« angivet, men dette er ikke en triviel handling." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, gør som jeg siger!" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: apt-private/private-install.cc:222 #, c-format -msgid "Can not write log (%s)" -msgstr "Kan ikke skrive log (%s)" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Du er ved at gøre noget, der kan være skadeligt\n" +"For at fortsætte, skal du skrive »%s«\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "Er /dev/pts monteret?" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Afbryder." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "Er standardud en terminal?" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vil du fortsætte?" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Handling blev afbrudt før den kunne afsluttes" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Nedhentningen af filer mislykkedes" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Ingen apportrapport skrevet da MaxReports (maks rapporter) allerede er nået" +"Kunne ikke hente nogle af arkiverne. Prøv evt. at køre »apt-get update« " +"eller prøv med --fix-missing." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "afhængighedsproblemer - efterlader ukonfigureret" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing og medieskift understøttes endnu ikke" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Ingen apportrapport skrevet da fejlbeskeden indikerer, at det er en " -"opfølgningsfejl fra en tidligere fejl." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Kunne ikke rette manglende pakker." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Ingen apportrapport skrevet da fejlbeskeden indikerer en fuld disk-fejl" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Afbryder installationen." -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"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] "" +"Den følgende pakke forsvandt fra dit system, da\n" +"alle filer er blevet overskrevet af andre pakker:" +msgstr[1] "" +"De følgende pakker forsvandt fra dit system, da\n" +"alle filer er blevet overskrevet af andre pakker:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Ingen apportrapport skrevet da fejlbeskeden indikerer en ikke nok " -"hukommelsesfejl" +"Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte " +"AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Ingen apportrapport skrevet da fejlbeskeden indikerer en fejl på det lokale " -"system" +"Hmm, det lader til at AutoRemover smadrede noget, der virkelig ikke\n" +"burde kunne ske. Indsend venligst en fejlrapport om apt." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "Ingen apportrapport skrevet da fejlbeskeden indikerer en dpkg I/O-fejl" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Intern fejl. AutoRemover ødelagde noget" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Kunne ikke låse administrationsmappen (%s), bruger en anden proces den?" +"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] "" +"Følgende pakke blev installeret automatisk, og behøves ikke længere:" +msgstr[1] "" +"Følgende pakker blev installeret automatisk, og behøves ikke længere:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Kunne ikke låse administrationsmappen (%s), er du rod (root)?" +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] "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" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +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." + +#: apt-private/private-install.cc:612 +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«:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg blev afbrudt, du skal manuelt køre »%s« for at rette problemet." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Uopfyldte afhængigheder. Prøv »apt-get -f install« uden pakker (eller angiv " +"en løsning)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Ikke låst" +#: apt-private/private-install.cc:638 +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 "" +"Nogle pakker kunne ikke installeres. Det kan betyde at du har ønsket\n" +"en umulig situation eller bruger den ustabile distribution, hvor enkelte\n" +"pakker endnu ikke er lavet eller gjort tilgængelige." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Ødelagte pakker" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Følgende yderligere pakker vil blive installeret:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Foreslåede pakker:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Anbefalede pakker:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Det valgte %s blev ikke fundet" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Springer over %s, den er allerede installeret og opgradering er ikke " +"angivet.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Benytter ikke låsning for skrivebeskyttet låsefil %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Springer over %s, den er ikke installeret og der blev kun anmodt om " +"opgraderinger.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Kunne ikke åbne låsefilen %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Geninstallation af %s er ikke muligt, pakken kan ikke hentes.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Benytter ikke låsning for nfs-monteret låsefil %s" +msgid "%s is already the newest version.\n" +msgstr "%s er allerede den nyeste version.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Kunne ikke opnå låsen %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Valgt version »%s« (%s) for »%s«\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Liste over filer kan ikke oprettes da »%s« ikke er en mappe" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Valgt version »%s« (%s) for »%s« på grund af »%s«\n" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignorerer »%s« i mappe »%s« da det ikke er en regulær fil" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakke »%s« er ikke installeret, så blev ikke fjernet. Mente du »%s«?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Ignorerer fil »%s« i mappe »%s« da den ikke har en filendelse" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakke »%s« er ikke installeret, så blev ikke fjernet\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "Ignorerer fil »%s« i mappe »%s« da den har en ugyldig filendelse" +"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 "" +"BEMÆRK: Dette er kun en simulering!\n" +" apt-get kræver rootprivilegier for reel kørsel.\n" +" Husk også at låsning er deaktiveret,\n" +" så stol ikke på relevansen for den reelle aktuelle situation!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Underprocessen %s modtog en segmenteringsfejl." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Underprocessen %s modtog en signal %u." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentifikationsadvarsel tilsidesat.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Underprocessen %s returnerede en fejlkode (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nogle pakker kunne ikke autentificeres" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Underprocessen %s afsluttedes uventet" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installér disse pakker uden verifikation?" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem under lukning af gzip-filen %s" +msgid "Failed to parse %s. Edit again? " +msgstr "Kunne ikke fortolke %s. Rediger igen? " -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Kunne ikke åbne filen %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "Din »%s« fil blev ændret, kør venligst »apt-get update«." -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Kunne ikke åbne filbeskrivelse %d" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "Fuldtekst-søgning" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Kunne ikke oprette underproces IPC" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Havde " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Kunne ikke udføre komprimeringsprogram " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Henter:" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "læs, mangler stadig at læse %llu men der er ikke flere" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ignorerer " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "skriv, mangler stadig at skrive %llu men kunne ikke" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Fejl " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the file %s" -msgstr "Problem under lukning af filen %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Hentede %sB på %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem under omdøbning af filen %s til %s" +msgid " [Working]" +msgstr " [Arbejder]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Fejl ved frigivelse af filen %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem under synkronisering af fil" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Medieskift: Indsæt disken med navnet\n" +" »%s«\n" +"i drevet »%s« og tryk retur\n" -#: apt-pkg/contrib/progress.cc:148 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fejl!" +msgid "No mirror file '%s' found " +msgstr "Ingen spejlfil »%s« fundet " -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Færdig" +msgid "Can not read mirror file '%s'" +msgstr "Kan ikke læse spejlfil »%s«" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#: methods/mirror.cc:315 +#, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Ingen post fundet i spejlfil »%s«" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +msgid "[Mirror: %s]" +msgstr "[Spejl: %s]" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan ikke udføre mmap for en tom fil" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Kunne ikke oprette IPC-videreførsel til underproces" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Kunne ikke duplikere filbeskrivelse %i" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Forbindelsen lukkedes for hurtigt" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Kunne ikke udføre mmap for %llu byte" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Ugyldig standardindstilling!" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Kunne ikke lukke mmap" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Tryk retur for at fortsætte." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Kunne ikke synkronisere mmap" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Ønsker du at slette nogle tidligere hentede .deb-filer?" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Kunne ikke udføre mmap for %lu byte" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Der opstod fejl under udpakningen. Pakker som blev installeret" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Kunne ikke afkorte filen" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "vil blive konfigureret. Det kan give gentagne fejl" -#: 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)" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Dynamisk MMap løb tør for plads. Øg venligst størrelsen på APT::Cache-Start. " -"Aktuel værdi: %lu. (man 5 apt.conf)" +"eller fejl, der skyldes manglende afhængigheder. Dette er o.k. Det er kun" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: dselect/install:105 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Kunne ikke øge størrelsen på MMap da begrænsningen på %lu byte allerede er " -"nået." +"fejlene over denne besked, der er vigtige. Ret dem og kør [I]nstallér igen" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Kunne ikke øge størrelsen på MMap da automatisk øgning er deaktiveret af " -"bruger." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sammenfletter tilgængelighedsoplysninger" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Kunne ikke finde monteringspunktet %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode kaldt med endnu forbundet knude" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Kunne ikke finde cdrommen" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Kunne ikke finde hash-element!" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ukendt type-forkortelse: »%c«" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Kunne ikke allokere omrokering" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Åbner konfigurationsfilen %s" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Intern fejl i AddDiversion" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaksfejl %s:%u: Blokken starter uden navn." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Forsøger at overskrive en omrokering, %s -> %s og %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksfejl %s:%u: Forkert udformet mærke" +msgid "Double add of diversion %s -> %s" +msgstr "Dobbelt tilføjelse af omrokering %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien" +msgid "Duplicate conf file %s/%s" +msgstr "Dobbelt opsætningsfil %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet" +msgid "The path %s is too long" +msgstr "Stien %s er for lang" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger" +msgid "Unpacking %s more than once" +msgstr "Pakkede %s ud flere gange" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaksfejl %s:%u: Inkluderet herfra" +msgid "The directory %s is diverted" +msgstr "Mappen %s er omrokeret" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv »%s«" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Omrokeringsstien er for lang" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksfejl %s:%u: ryd direktiv kræver et tilvalgstræ som argument" +msgid "Failed to stat %s" +msgstr "Kunne ikke finde %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen" +msgid "Failed to rename %s to %s" +msgstr "Kunne ikke omdøbe %s til %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "Ingen nøglering installeret i %s." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Mappen %s bliver erstattet af en ikke-mappe" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Kunne ikke finde knuden i sin hash-bucket" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Stien er for lang" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Kommandolinjetilvalget »%c« [fra %s] kendes ikke." +msgid "Overwrite package match with no version for %s" +msgstr "Overskriv pakkematch uden version for %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Kommandolinjetilvalget %s blev ikke forstået" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "File %s/%s overskriver filen i pakken %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Kommandolinjetilvalget %s er ikke boolsk" +msgid "Unable to stat %s" +msgstr "Kunne ikke finde %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Tilvalget %s kræver et parameter." +msgid "Failed to write file %s" +msgstr "Kunne ikke skrive filen %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>." +msgid "Failed to close file %s" +msgstr "Kunne ikke lukke filen %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Tilvalget %s kræver et heltalligt parameter, ikke »%s«" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dette er ikke et gyldigt DEB-arkiv, mangler »%s«-elementet" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Tilvalget »%s« er for langt" +msgid "Internal error, could not locate member %s" +msgstr "Intern fejl, kunne ikke finde elementet %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ikke-tolkbar kontrolfil" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ugyldig arkivsignatur" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fejl under læsning af arkivelements hoved" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s blev ikke forstået, prøv med »true« eller »false«." +msgid "Invalid archive member header %s" +msgstr "Ugyldigt arkivelementhoved %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ugyldigt arkivelementhoved" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkivet er for kort" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Kunne ikke læse arkivhovederne" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Kunne ikke oprette videreførsler" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Kunne ikke udføre gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Ødelagt arkiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-tjeksum fejlede, arkivet er ødelagt" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Ugyldig handling %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Ukendt TAR-hovedtype %u, element %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3261,9 +3291,9 @@ msgstr "" " -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" #: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format +#, c-format msgid "Unable to mkstemp %s" -msgstr "Kunne ikke finde %s" +msgstr "Kunne ikke mkstemp %s" #: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" @@ -3406,9 +3436,8 @@ msgid "Unable to open DB file %s: %s" msgstr "Kunne ikke åbne DB-filen %s: %s" #: ftparchive/cachedb.cc:332 -#, fuzzy msgid "Failed to read .dsc" -msgstr "Kunne ikke »readlink« %s" +msgstr "Kunne ikke læse .dsc" #: ftparchive/cachedb.cc:365 msgid "Archive has no control record" @@ -3516,9 +3545,9 @@ msgstr "Kunne ikke åbne %s" #. skip spaces #. find end of word #: ftparchive/override.cc:68 -#, fuzzy, c-format +#, c-format msgid "Malformed override %s line %llu (%s)" -msgstr "Ugyldig gennemtvangs %s-linje %llu #1" +msgstr "Ugyldig overskrivning af %s-linjen %llu (%s)" #: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format @@ -3580,7 +3609,7 @@ msgstr "Kunne ikke læse under beregning af MD5" msgid "Problem unlinking %s" msgstr "Problem under aflænkning af %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3633,6 +3662,9 @@ msgstr "" " -c=? Læs denne opsætningsfil\n" " -o=? Angiv en opsætningsindstilling. F.eks. -o dir::cache=/tmp\n" +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Intern fejl, opgradering blev afbrudt" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s er ikke en gyldig DEB-pakke." diff --git a/po/de.po b/po/de.po index 855eab400..5a2ff9f29 100644 --- a/po/de.po +++ b/po/de.po @@ -10,3324 +10,3328 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.2\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-06-27 10:55+0200\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" -"Language: \n" +"Language: de\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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indexdateityp »%s« wird nicht unterstützt." + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paket %s Version %s hat eine unerfüllte Abhängigkeit:\n" +msgid "Unable to read %s" +msgstr "%s kann nicht gelesen werden." -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Gesamtzahl an Paketnamen: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Es konnte nicht nach %s gewechselt werden." -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Gesamtzahl an Paketstrukturen: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s mit stat abfragen nicht möglich" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " davon gewöhnliche Pakete: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " davon rein virtuelle Pakete: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Ausführen von dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " davon einzelne virtuelle Pakete: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Paketierungssystem »%s« wird nicht unterstützt." -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " davon gemischte virtuelle Pakete: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Bestimmung eines passenden Paketierungssystemtyps nicht möglich" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " davon fehlend: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Es wurden %i Datensätze geschrieben.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Gesamtzahl an unterschiedlichen Versionen: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Gesamtzahl an unterschiedlichen Beschreibungen: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Gesamtzahl an Abhängigkeiten: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Es wurden %i Datensätze mit %i fehlenden und %i nicht passenden Dateien " +"geschrieben.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Gesamtzahl an Version/Datei-Beziehungen: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Authentifizierungs-Datensatz konnte nicht gefunden werden für: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Gesamtzahl an Beschreibung/Datei-Beziehungen: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash-Summe stimmt nicht überein für: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Gesamtzahl an Bereitstellungen: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Der Treiber für Methode %s konnte nicht gefunden werden." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Gesamtzahl an Mustern: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Gesamtmenge des Abhängigkeits-/Versionsspeichers: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Methode %s ist nicht korrekt gestartet." -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Gesamtmenge an Slack: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und " +"drücken Sie die Eingabetaste (Enter)." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Gesamtmenge an Speicher: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Die Paketliste oder die Statusdatei konnte nicht eingelesen oder geöffnet " +"werden." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Paketdatei %s ist nicht synchronisiert." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Probieren Sie »apt-get update«, um diese Probleme zu korrigieren." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Keine Pakete gefunden" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Die Liste der Quellen konnte nicht gelesen werden." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Sie müssen mindestens ein Suchmuster angeben" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Leerer Paketzwischenspeicher" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Die Paketzwischenspeicher-Datei ist beschädigt." + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" msgstr "" -"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark " -"showauto«." +"Die Paketzwischenspeicher-Datei liegt in einer inkompatiblen Version vor." + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Die Paketzwischenspeicher-Datei ist beschädigt, sie ist zu klein." -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Paket %s kann nicht gefunden werden." +msgid "This APT does not support the versioning system '%s'" +msgstr "Das Versionssystem »%s« wird durch dieses APT nicht unterstützt." -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Paketdateien:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Der Paketzwischenspeicher wurde für eine andere Architektur aufgebaut." -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Zwischenspeicher ist nicht synchron, Querverweisen einer Paketdatei nicht " -"möglich" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Hängt ab von" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Mit Pinning verwaltete Pakete:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Hängt ab von (vorher)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nicht gefunden)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Schlägt vor" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installiert: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Empfiehlt" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Installationskandidat: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Kollidiert mit" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(keine)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Ersetzt" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paket-Pinning: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Löst ab" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versionstabelle:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Beschädigt" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s für %s, kompiliert am %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Wertet auf" -#: cmdline/apt-cache.cc:1749 -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 "" -"Aufruf: apt-cache [Optionen] befehl\n" -" apt-cache [Optionen] showpkg paket1 [paket2 ...]\n" -" apt-cache [Optionen] showsrc paket1 [paket2 ...]\n" -"\n" -"apt-cache ist ein untergeordnetes Werkzeug, um Informationen aus den\n" -"binären Zwischenspeicher-Dateien von APT abzufragen.\n" -"\n" -"Befehle:\n" -" gencaches – Paket- und Quell-Zwischenspeicher erzeugen\n" -" showpkg – grundsätzliche Informationen eines einzelnen Pakets ausgeben\n" -" showsrc – Aufzeichnungen zu Quellen ausgeben\n" -" stats – einige grundlegenden Statistiken ausgeben\n" -" dump – gesamte Datei in Kurzform ausgeben\n" -" dumpavail – Datei verfügbarer Pakete nach stdout ausgeben\n" -" unmet – unerfüllte Abhängigkeiten ausgeben\n" -" search – die Paketliste mittels regulärem Ausdruck durchsuchen\n" -" show – einen lesbaren Datensatz für das Paket ausgeben\n" -" depends – rohe Abhängigkeitsinformationen eines Pakets ausgeben\n" -" rdepends – umgekehrte Abhängigkeitsinformationen eines Pakets ausgeben\n" -" pkgnames – die Namen aller Pakete im System auflisten\n" -" dotty – Paketgraph zur Verwendung mit GraphViz erzeugen\n" -" xvcg – Paketgraph zur Verwendung mit xvcg erzeugen\n" -" policy – Policy-Einstellungen ausgeben\n" -"\n" -"Optionen:\n" -" -h dieser Hilfe-Text\n" -" -p=? der Paket-Zwischenspeicher\n" -" -s=? der Quell-Zwischenspeicher\n" -" -q Fortschrittsanzeige abschalten\n" -" -i nur wichtige Abhängigkeiten für den »unmet«-Befehl ausgeben\n" -" -c=? diese Konfigurationsdatei lesen\n" -" -o=? eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -"Weitere Informationen finden Sie in den Handbuchseiten von apt-cache(8)\n" -"und apt.conf(5).\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Bitte geben Sie einen Namen für dieses Medium an, wie zum Beispiel »Debian " -"5.0.3 Disk 1«" - -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "" -"Bitte legen Sie ein Medium in das Laufwerk ein und drücken Sie die " -"Eingabetaste (Enter)." - -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "»%s« konnte nicht in »%s« eingebunden werden." - -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" -"Wiederholen Sie dieses Prozedere für die restlichen Disks Ihres Satzes." - -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumente nicht paarweise" - -#: cmdline/apt-config.cc:89 -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 "" -"Aufruf: apt-config [optionen] befehl\n" -"\n" -"apt-config ist ein einfaches Werkzeug, um die APT-Konfigurationsdatei zu " -"lesen.\n" -"\n" -"Befehle:\n" -" shell – Shell-Modus\n" -" dump – Die Konfiguration ausgeben\n" -"\n" -"Optionen:\n" -" -h Dieser Hilfetext\n" -" -c=? Diese Konfigurationsdatei lesen\n" -" -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." - -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Als Quellpaket wird »%s« statt »%s« gewählt.\n" - -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert." - -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Paket %s konnte nicht gefunden werden" - -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s wurde als manuell installiert festgelegt.\n" - -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s wurde als automatisch installiert festgelegt.\n" - -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark auto« " -"und »apt-mark manual«." - -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Interner Fehler, der Problemlöser hat etwas beschädigt." - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Das Downloadverzeichnis konnte nicht gesperrt werden." - -#: cmdline/apt-get.cc:726 -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:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Quellpaket für %s kann nicht gefunden werden." - -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"HINWEIS: »%s«-Paketierung wird betreut im »%s«-Versionsverwaltungssystem " -"auf:\n" -"%s\n" - -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Bitte verwenden Sie:\n" -"bzr branch %s\n" -"um die neuesten (möglicherweise noch unveröffentlichten) Aktualisierungen\n" -"für das Paket abzurufen.\n" - -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n" - -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Freier Platz in %s konnte nicht bestimmt werden." - -#: cmdline/apt-get.cc:882 -#, 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:891 -#, 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:896 -#, 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:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Quelle %s wird heruntergeladen.\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Einige Archive konnten nicht heruntergeladen werden." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" - -#: cmdline/apt-get.cc:950 -#, 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:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Entpackbefehl »%s« fehlgeschlagen.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "wichtig" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "erforderlich" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Build-Befehl »%s« fehlgeschlagen.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Kindprozess fehlgeschlagen" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "optional" -#: cmdline/apt-get.cc:1029 -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." +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"Keine Architekturinformation für %s verfügbar. Weiteres zur Einrichtung " -"finden Sie unter apt.conf(5) APT::Architectures." +msgid "Index file type '%s' is not supported" +msgstr "Indexdateityp »%s« wird nicht unterstützt." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "" -"Informationen zu Bauabhängigkeiten für %s konnten nicht gefunden werden." +msgid "Regex compilation error - %s" +msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s hat keine Bauabhängigkeiten.\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Zwischenspeicher hat ein inkompatibles Versionssystem." -#: cmdline/apt-get.cc:1271 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (%s%d)" + +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da %s bei »%s«-Paketen " -"nicht erlaubt ist." +"Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen diese " +"APT-Version umgehen kann." -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht " -"gefunden werden kann." +"Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen diese " +"APT-Version umgehen kann." -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden: Installiertes Paket %s " -"ist zu neu." +"Na so was, Sie haben die Anzahl an Beschreibungen überschritten, mit denen " +"diese APT-Version umgehen kann." -#: cmdline/apt-get.cc:1351 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da die Version des " -"Installationskandidaten für das Paket %s die Versionsanforderungen nicht " -"erfüllen kann." +"Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen " +"diese APT-Version umgehen kann." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da für Paket %s kein " -"Installationskandidat existiert." +"Paket %s %s wurde beim Verarbeiten der Dateiabhängigkeiten nicht gefunden." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "»%s«-Abhängigkeit für %s konnte nicht erfüllt werden: %s" +msgid "Couldn't stat source package list %s" +msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Paketlisten werden gelesen" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Bauabhängigkeiten für %s konnten nicht erfüllt werden." +msgid "Unable to write to %s" +msgstr "Schreiben nach %s nicht möglich" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Szenario an Problemlöser senden" + +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Anfrage an Problemlöser senden" + +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Vorbereiten, eine Lösung zu erhalten" + +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" +"Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Externen Problemlöser ausführen" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Änderungsprotokoll (Changelog) für %s (%s)" +msgid "rename failed, %s (%s -> %s)." +msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Unterstützte Module:" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash-Summe stimmt nicht überein" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Größe stimmt nicht überein" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Ungültige Operation %s" + +#: apt-pkg/acquire-item.cc:1573 +#, c-format 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" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Aufruf: apt-get [Optionen] befehl\n" -" apt-get [Optionen] install|remove paket1 [paket2 ...]\n" -" apt-get [Optionen] source paket1 [paket2 ...]\n" -"\n" -"apt-get ist ein einfaches Befehlszeilenwerkzeug zum Herunterladen\n" -"und Installieren von Paketen. Die am häufigsten benutzten Befehle\n" -"sind update und install.\n" -"\n" -"Befehle:\n" -" update – neue Paketinformationen holen\n" -" upgrade – Upgrade (Paketaktualisierung) durchführen\n" -" install – neue Pakete installieren (paket ist libc6, nicht libc6." -"deb)\n" -" remove – Pakete entfernen\n" -" autoremove – alle nicht mehr verwendeten Pakete automatisch " -"entfernen\n" -" purge – Pakete vollständig entfernen (inkl. " -"Konfigurationsdateien)\n" -" source – Quellarchive herunterladen\n" -" build-dep – Bauabhängigkeiten für Quellpakete konfigurieren\n" -" dist-upgrade – Upgrade (Paketaktualisierung) für die komplette\n" -" Distribution durchführen, siehe apt-get(8)\n" -" dselect-upgrade – der Auswahl von »dselect« folgen\n" -" clean – heruntergeladene Archive löschen\n" -" autoclean – veraltete heruntergeladene Archive löschen\n" -" check – überprüfen, ob es unerfüllte Abhängigkeiten gibt\n" -" changelog – Änderungsprotokoll für das angegebene Paket " -"herunterladen\n" -" und anzeigen\n" -" download – das Binärpaket in das aktuelle Verzeichnis " -"herunterladen\n" -"\n" -"Optionen:\n" -" -h dieser Hilfetext\n" -" -q protokollierbare Ausgabe – keine Fortschrittsanzeige\n" -" -qq keine Ausgabe, außer bei Fehlern\n" -" -d nur herunterladen – Archive NICHT installieren oder entpacken\n" -" -s nichts tun, nur eine Simulation der Aktionen durchführen\n" -" -y für alle Antworten »Ja« annehmen und nicht nachfragen\n" -" -f versuchen, ein System mit defekten Abhängigkeiten zu korrigieren\n" -" -m versuchen fortzufahren, wenn Archive nicht auffindbar sind\n" -" -u ebenfalls eine Liste der aktualisierten Pakete ausgeben\n" -" -b ein Quellpaket nach dem Herunterladen bauen\n" -" -V ausführliche Versionsnummern ausgeben\n" -" -c=? Diese Konfigurationsdatei benutzen\n" -" -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -"Siehe auch die Handbuchseiten apt-get(8), sources.list(5) und apt.conf(5)\n" -"bezüglich weitergehender Informationen und Optionen.\n" -" Dieses APT hat Super-Kuh-Kräfte.\n" +"Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " +"(falscher Eintrag in sources.list oder missgebildete Datei)." + +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Hash-Summe für »%s« kann in Release-Datei nicht gefunden werden." + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Es gibt keine öffentlichen Schlüssel für die folgenden Schlüssel-IDs:\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " -"sollen." +"Release-Datei für %s ist abgelaufen (ungültig seit %s). Aktualisierungen für " +"dieses Depot werden nicht angewendet." -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" + +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" +"Während der Überprüfung der Signatur trat ein Fehler auf. Das Repository " +"wurde nicht aktualisiert und die vorherigen Indexdateien werden verwendet. " +"GPG-Fehler: %s: %s\n" -#: cmdline/apt-helper.cc:66 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG-Fehler: %s: %s" + +#: apt-pkg/acquire-item.cc:1859 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"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 "" +"Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass " +"Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender " +"Architektur)." -#: cmdline/apt-mark.cc:68 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "%s can not be marked as it is not installed.\n" +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"Markierung für %s kann nicht gesetzt werden, da es nicht installiert ist.\n" +"Es konnte keine Quelle gefunden werden, um Version »%s« von »%s« " +"herunterzuladen." -#: cmdline/apt-mark.cc:74 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s wurde bereits auf manuell installiert gesetzt.\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Die Paketindexdateien sind beschädigt: Kein Filename:-Feld für Paket %s." -#: cmdline/apt-mark.cc:76 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s wurde bereits auf automatisch installiert gesetzt.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Herstellerblock %s enthält keinen Fingerabdruck." -#: cmdline/apt-mark.cc:241 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s wurde bereits auf Halten gesetzt.\n" +msgid "List directory %spartial is missing." +msgstr "Listenverzeichnis %spartial fehlt." -#: cmdline/apt-mark.cc:243 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "%s was already not hold.\n" -msgstr "Die Halten-Markierung für %s wurde bereits entfernt.\n" +msgid "Archives directory %spartial is missing." +msgstr "Archivverzeichnis %spartial fehlt." -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Es wurde auf %s gewartet, war jedoch nicht vorhanden" +msgid "Unable to lock directory %s" +msgstr "Das Verzeichnis %s kann nicht gesperrt werden." -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "%s set on hold.\n" -msgstr "%s auf Halten gesetzt.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Holen der Datei %li von %li (noch %s)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Halten-Markierung für %s entfernt.\n" +msgid "Retrieving file %li of %li" +msgstr "Holen der Datei %li von %li" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Ausführen von dpkg fehlgeschlagen. Sind Sie root?" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Fehlschlag beim Holen von %s %s\n" -#: cmdline/apt-mark.cc:392 -#, fuzzy +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Aufruf: apt-mark [Optionen] {auto|manual} paket1 [paket2 ...]\n" -"\n" -"apt-mark ist ein einfaches Befehlszeilenprogramm, um Pakete als manuell\n" -"oder automatisch installiert zu markieren. Diese Markierungen können auch\n" -"aufgelistet werden.\n" -"\n" -"Befehle:\n" -" auto – das angegebene Paket als »Automatisch installiert« markieren\n" -" manual – das angegebene Paket als »Manuell installiert« markieren\n" -"\n" -"Optionen:\n" -" -h dieser Hilfetext\n" -" -q protokollierbare Ausgabe – keine Fortschrittsanzeige\n" -" -qq keine Ausgabe, außer bei Fehlern\n" -" -s nichts tun, nur eine Simulation der Aktionen durchführen\n" -" -f Autom./Manuell-Markierung in der angegebenen Datei lesen/schreiben\n" -" -c=? Diese Konfigurationsdatei benutzen\n" -" -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -"Siehe auch die Handbuchseiten apt-mark(8) und apt.conf(5) bezüglich\n" -"weitergehender Informationen und Optionen." +"Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden " +"ignoriert oder alte an ihrer Stelle benutzt." -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" +"Sie müssen einige »source«-URIs für Quellpakete in die sources.list-Datei " +"eintragen." -#: methods/cdrom.cc:203 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "CD-ROM-Datenbank %s kann nicht gelesen werden." - -#: 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" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Bitte verwenden Sie apt-cdrom, um APT diese CD-ROM bekannt zu machen. apt-" -"get update kann nicht dazu verwendet werden, neue CD-ROMs hinzuzufügen." - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Falsche CD-ROM" +"Der Wert »%s« ist für APT::Default-Release ungültig, da solch eine " +"Veröffentlichung in den Paketquellen nicht verfügbar ist." -#: methods/cdrom.cc:249 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"Einbindung von CD-ROM in %s kann nicht gelöst werden, möglicherweise wird " -"sie noch verwendet." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Medium nicht gefunden" - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Datei nicht gefunden" - -# looks like someone hardcoded English grammar -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Abfrage mit »stat« fehlgeschlagen" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Änderungszeitpunkt kann nicht gesetzt werden." - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ungültige URI, lokale URIs dürfen nicht mit // beginnen." - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Anmeldung läuft" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Name des Kommunikationspartners kann nicht bestimmt werden." - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Lokaler Name kann nicht bestimmt werden." +"Ungültiger Eintrag in Einstellungsdatei %s, keine »Package«-Kopfzeile(n)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/policy.cc:444 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Verbindung durch Server abgelehnt; Server meldet: %s" +msgid "Did not understand pin type %s" +msgstr "Pinning-Typ %s kann nicht interpretiert werden." -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "Befehl USER fehlgeschlagen, Server meldet: %s" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Keine Priorität (oder Null) für Pin angegeben" -#: methods/ftp.cc:232 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Befehl PASS fehlgeschlagen, Server meldet: %s" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Es war ein Proxy-Server angegeben, aber kein Login-Skript, Acquire::ftp::" -"ProxyLogin ist leer." +"»%s« konnte nicht unmittelbar konfiguriert werden. Lesen Sie »man 5 apt." +"conf« unter APT::Immediate-Configure bezüglich weiterer Details. (%d)" -#: methods/ftp.cc:280 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Befehl »%s« des Login-Skriptes fehlgeschlagen, Server meldet: %s" +msgid "Could not configure '%s'. " +msgstr "»%s« konnte nicht konfiguriert werden. " -#: methods/ftp.cc:306 +#: apt-pkg/packagemanager.cc:583 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Befehl TYPE fehlgeschlagen: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Zeitüberschreitung der Verbindung" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Verbindung durch Server geschlossen" +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 "" +"Dieser Installationslauf erfordert, dass vorübergehend das essentielle Paket " +"%s aufgrund einer Konflikt-/Vor-Abhängigkeits-Schleife entfernt wird. Das " +"ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte " +"die Option APT::Force-LoopBreak." -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Lesefehler" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Zeile %u in Quellliste %s zu lang." -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Durch eine Antwort wurde der Puffer zum Überlaufen gebracht." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Einbindung der CD-ROM wird gelöst ...\n" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokoll beschädigt" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Verwendeter CD-ROM-Einbindungspunkt: %s\n" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Schreibfehler" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Warten auf Medium ...\n" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Socket konnte nicht erzeugt werden." +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM wird eingebunden ...\n" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Daten-Socket konnte wegen Zeitüberschreitung nicht verbunden werden." +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifizieren ... " -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Fehlgeschlagen" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Gespeicherte Kennzeichnung: %s\n" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Passiver Socket konnte nicht verbunden werden." +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Durchsuchen des Mediums nach Index-Dateien ...\n" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Von der Funktion getaddrinfo wurde kein auf Verbindungen wartender Socket " -"gefunden." - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Verbindung des Sockets nicht möglich" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Warten auf Verbindungen auf dem Socket nicht möglich" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Name des Sockets konnte nicht bestimmt werden." - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT-Befehl konnte nicht gesendet werden." +"%zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu " +"Signaturen gefunden\n" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Unbekannte Adressfamilie %u (AF_*)" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Es konnten keine Paketdateien gefunden werden; möglicherweise ist dies keine " +"Debian-Disk oder eine für die falsche Architektur?" -#: methods/ftp.cc:811 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Befehl EPRT fehlgeschlagen: %s" +msgid "Found label '%s'\n" +msgstr "Kennzeichnung »%s« gefunden\n" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Zeitüberschreitung bei Datenverbindungsaufbau" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut.\n" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Verbindung konnte nicht angenommen werden." +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Dieses Medium heißt: \n" +"»%s«\n" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem bei Bestimmung des Hashwertes einer Datei" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopieren der Paketlisten ..." -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Datei konnte nicht heruntergeladen werden; Server meldet: »%s«" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Schreiben der neuen Quellliste\n" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Zeitüberschreitung bei Datenverbindung" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Quelllisteneinträge für dieses Medium sind:\n" -#: methods/ftp.cc:935 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Datenübertragung fehlgeschlagen; Server meldet: »%s«" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " +"gefunden werden." -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Abfrage" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Fehler: Unterbrechungen durch pkgProblemResolver::Resolve hervorgerufen; " +"dies könnte durch zurückgehaltene Pakete verursacht worden sein." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Aufruf nicht möglich: " +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte " +"Pakete." -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Verbindung mit %s (%s)" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Abhängigkeitsbaum wird aufgebaut." -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Installationskandidat-Versionen" -#: 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)." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Abhängigkeitsgenerierung" -#: 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)." +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Statusinformationen werden eingelesen." -#: methods/connect.cc:108 +#: apt-pkg/depcache.cc:250 #, 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." +msgid "Failed to open StateFile %s" +msgstr "StateFile %s konnte nicht geöffnet werden." -#: methods/connect.cc:126 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Verbindung mit %s:%s nicht möglich (%s)" +msgid "Failed to write temporary StateFile %s" +msgstr "Temporäres StateFile %s konnte nicht geschrieben werden." -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "Connecting to %s" -msgstr "Verbindung mit %s" +msgid "Unable to parse package file %s (1)" +msgstr "Paketdatei %s konnte nicht verarbeitet werden (1)." -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "Could not resolve '%s'" -msgstr "»%s« konnte nicht aufgelöst werden." +msgid "Unable to parse package file %s (2)" +msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)." -#: methods/connect.cc:205 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Temporärer Fehlschlag beim Auflösen von »%s«" +msgid "Release '%s' for '%s' was not found" +msgstr "Veröffentlichung »%s« für »%s« konnte nicht gefunden werden." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Version »%s« für »%s« konnte nicht gefunden werden." -#: methods/connect.cc:211 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." +msgid "Unable to locate package %s" +msgstr "Paket %s kann nicht gefunden werden." -#: methods/connect.cc:258 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Verbindung mit %s:%s nicht möglich:" +msgid "Couldn't find task '%s'" +msgstr "Task »%s« konnte nicht gefunden werden." -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Interner Fehler: Gültige Signatur, Fingerabdruck des Schlüssels konnte " -"jedoch nicht ermittelt werden?!" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Mindestens eine ungültige Signatur wurde entdeckt." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -"»gpgv« konnte zur Überprüfung der Signatur nicht ausgeführt werden (ist gpgv " -"installiert?)" +"Es können keine Versionen von Paket »%s« ausgewählt werden, da es rein " +"virtuell ist." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" +"Es kann weder eine installierte Version noch ein Installationskandidat von " +"Paket »%s« ausgewählt werden, da beide nicht existieren." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Unbekannter Fehler beim Ausführen von gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Die folgenden Signaturen waren ungültig:\n" - -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Die folgenden Signaturen konnten nicht überprüft werden, weil ihr " -"öffentlicher\n" -"Schlüssel nicht verfügbar ist:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Leere Dateien können kein gültiges Archiv sein." +"Die neueste Version von Paket »%s« kann nicht ausgewählt werden, da es rein " +"virtuell ist." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fehler beim Schreiben der Datei" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Es kann kein Installationskandidat von Paket »%s« ausgewählt werden, da kein " +"solcher existiert." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der " -"anderen Seite geschlossen." +"Die installierte Version von Paket »%s« kann nicht ausgewählt werden, da es " +"nicht installiert ist." -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fehler beim Lesen vom Server" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Release-Datei %s kann nicht verarbeitet werden." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fehler beim Schreiben in Datei" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Keine Bereiche (Sections) in Release-Datei %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Auswahl fehlgeschlagen" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Kein Hash-Eintrag in Release-Datei %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Zeitüberschreitung bei Verbindung" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fehler beim Schreiben der Ausgabedatei" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ungültiger »Date«-Eintrag in Release-Datei %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Warten auf Kopfzeilen" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ungültige Kopfzeile" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] nicht auswertbar)" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Vom HTTP-Server wurde eine ungültige Antwort-Kopfzeile gesandt." +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] zu kurz)" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "" -"Vom HTTP-Server wurde eine ungültige »Content-Length«-Kopfzeile gesandt." +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] ist keine Zuweisung)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "" -"Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] hat keinen Schlüssel)" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Teilweise Dateiübertragung wird vom HTTP-Server nur fehlerhaft unterstützt." - -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Unbekanntes Datumsformat" - -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Fehlerhafte Kopfzeilendaten" - -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Verbindung fehlgeschlagen" - -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Interner Fehler" - -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Paketaktualisierung (Upgrade) wird berechnet... " - -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Interner Fehler, AllUpgrade hat etwas beschädigt." +"Missgestaltete Zeile %lu in Quellliste %s ([%s] Schlüssel %s hat keinen Wert)" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Fertig" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" -#: apt-private/private-list.cc:164 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Abhängigkeiten werden korrigiert ..." +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " fehlgeschlagen." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s wird geöffnet." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Abhängigkeiten konnten nicht korrigiert werden." +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden." +#: apt-pkg/sourcelist.cc:375 +#, 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." -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fertig" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren." +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "%s wird installiert." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s wird konfiguriert." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s wird entfernt." -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installiert]" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s wird vollständig entfernt." -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installiert]" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Verschwinden von %s festgestellt" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Aufruf des Nach-Installations-Triggers %s" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installiert]" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Verzeichnis »%s« fehlt" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installiert]" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Datei »%s« konnte nicht geöffnet werden." -#: apt-private/private-output.cc:248 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Preparing %s" +msgstr "%s wird vorbereitet." -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "%s wird entpackt." -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Konfiguration von %s wird vorbereitet." -#: apt-private/private-output.cc:442 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "but %s is installed" -msgstr "aber %s ist installiert" +msgid "Installed %s" +msgstr "%s installiert" -#: apt-private/private-output.cc:444 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "but %s is to be installed" -msgstr "aber %s soll installiert werden" +msgid "Preparing for removal of %s" +msgstr "Entfernen von %s wird vorbereitet." -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ist aber nicht installierbar" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s entfernt" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ist aber ein virtuelles Paket" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Vollständiges Entfernen von %s wird vorbereitet." -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ist aber nicht installiert" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s vollständig entfernt" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "soll aber nicht installiert werden" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " oder" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Schreiben nach %s nicht möglich" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Die folgenden NEUEN Pakete werden installiert:" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Die folgenden Pakete werden ENTFERNT:" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Die folgenden Pakete sind zurückgehalten worden:" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Es wurde auf %s gewartet, war jedoch nicht vorhanden" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Operation wurde unterbrochen, bevor sie beendet werden konnte." -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -"Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):" +"Es wurde kein Apport-Bericht verfasst, da das Limit MaxReports bereits " +"erreicht ist." -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "Abhängigkeitsprobleme - verbleibt unkonfiguriert" -#: apt-private/private-output.cc:655 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (wegen %s) " +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung darauf " +"hindeutet, dass dies lediglich ein Folgefehler eines vorherigen Problems ist." -#: apt-private/private-output.cc:663 +#: apt-pkg/deb/dpkgpm.cc:1644 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -"WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n" -"Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen voller Festplatte hindeutet." -#: apt-private/private-output.cc:694 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualisiert, %lu neu installiert, " +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen erschöpftem Arbeitsspeicher hindeutet." -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu erneut installiert, " +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen voller Festplatte hindeutet." + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Ein-/" +"Ausgabe-Fehler von Dpkg hindeutet." -#: apt-private/private-output.cc:700 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "%lu downgraded, " -msgstr "%lu durch eine ältere Version ersetzt, " +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Sperren des Administrationsverzeichnisses (%s) nicht möglich, wird es von " +"einem anderen Prozess verwendet?" -#: apt-private/private-output.cc:702 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Sperren des Administrationsverzeichnisses (%s) nicht möglich, sind Sie root?" -#: apt-private/private-output.cc:706 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nicht vollständig installiert oder entfernt.\n" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"Der dpkg-Prozess wurde unterbrochen; Sie müssen manuell »%s« ausführen, um " +"das Problem zu beheben." -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[J/n]" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Nicht gesperrt" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[j/N]" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li d %li h %li min %li s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "J" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li h %li min %li s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li min %li s" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Regex compilation error - %s" -msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" +msgid "%lis" +msgstr "%li s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Der Befehl »update« akzeptiert keine Argumente." +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Auswahl %s nicht gefunden" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Not using locking for read only lock file %s" +msgstr "Es wird keine Sperre für schreibgeschützte Sperrdatei %s verwendet." -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:195 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Could not open lock file %s" +msgstr "Sperrdatei %s konnte nicht geöffnet werden." -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Es wird keine Sperre für per NFS eingebundene Sperrdatei %s verwendet." -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Konnte Sperre %s nicht bekommen" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Dateiliste kann nicht erstellt werden, da »%s« kein Verzeichnis ist." -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Interner Fehler, Anordnung beendete nicht" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" +"»%s« in Verzeichnis »%s« wird ignoriert, da es keine reguläre Datei ist." -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie " -"eine E-Mail an apt@packages.debian.org (auf Englisch bitte)." +"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie keine Dateinamen-" +"Erweiterung hat." -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie eine ungültige " +"Dateinamen-Erweiterung hat." -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "Unterprozess %s hat einen Speicherzugriffsfehler empfangen." -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" +msgid "Sub-process %s received signal %u." +msgstr "Unterprozess %s hat das Signal %u empfangen." -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Unterprozess %s hat Fehlercode zurückgegeben (%u)" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Sie haben nicht genug Platz in %s." +msgid "Sub-process %s exited unexpectedly" +msgstr "Unterprozess %s unerwartet beendet" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet." +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Schreibfehler" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation." +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem beim Schließen der gzip-Datei %s" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Ja, tue was ich sage!" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Datei %s konnte nicht geöffnet werden." -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Could not open file descriptor %d" +msgstr "Datei-Deskriptor %d konnte nicht geöffnet werden." + +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" msgstr "" -"Sie sind im Begriff, etwas potentiell Schädliches zu tun.\n" -"Zum Fortfahren geben Sie bitte »%s« ein.\n" -" ?] " +"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Abbruch." +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Fehler beim Ausführen von Komprimierer " -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Möchten Sie fortfahren?" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Lesefehler" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Einige Dateien konnten nicht heruntergeladen werden." +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "" +"Lesevorgang: es verbleiben noch %llu zu lesen, jedoch ist nichts mehr übrig." -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" msgstr "" -"Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " -"update« ausführen oder mit »--fix-missing« probieren?" +"Schreibvorgang: es verbleiben noch %llu zu schreiben, Schreiben ist jedoch " +"nicht möglich." -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt." +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem beim Schließen der Datei %s" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Fehlende Pakete konnten nicht korrigiert werden." +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem beim Umbenennen der Datei %s nach %s" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Installation abgebrochen." +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem beim Entfernen (unlink) der Datei %s" -#: apt-private/private-install.cc:365 -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] "" -"Das folgende Paket verschwand von Ihrem System, da alle\n" -"Dateien von anderen Paketen überschrieben wurden:" -msgstr[1] "" -"Die folgenden Pakete verschwanden von Ihrem System, da alle\n" -"Dateien von anderen Paketen überschrieben wurden:" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem beim Synchronisieren der Datei" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Fehler!" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden." +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Fertig" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"Hmm, es sieht so aus, als ob der AutoRemover etwas beschädigt hat, was\n" -"wirklich nicht geschehen sollte. Bitte erstellen Sie einen Fehlerbericht\n" -"über apt." -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "" -"Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fertig" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Interner Fehler, AutoRemover hat etwas beschädigt." +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Eine leere Datei kann nicht mit mmap abgebildet werden." -#: apt-private/private-install.cc:512 -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] "" -"Das folgende Paket wurde automatisch installiert und wird nicht mehr " -"benötigt:" -msgstr[1] "" -"Die folgenden Pakete wurden automatisch installiert und werden nicht mehr " -"benötigt:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Datei-Deskriptor %i konnte nicht dupliziert werden." + +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "mmap mit %llu Byte Größe konnte nicht erzeugt werden." + +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap konnte nicht geschlossen werden." + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap konnte nicht synchronisiert werden." -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/mmap.cc:290 #, 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 wurde automatisch installiert und wird nicht mehr benötigt.\n" -msgstr[1] "" -"%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "mmap mit %lu Byte Größe konnte nicht erzeugt werden." -#: apt-private/private-install.cc:518 -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." +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Datei konnte nicht eingekürzt werden." -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren:" +#: 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 "" +"Nicht genügend Platz für »Dynamic MMap«. Bitte erhöhen Sie den Wert von APT::" +"Cache-Start. Aktueller Wert: %lu. (Siehe auch man 5 apt.conf.)" -#: apt-private/private-install.cc:614 +#: apt-pkg/contrib/mmap.cc:446 +#, c-format msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe " -"eines Pakets (oder geben Sie eine Lösung an)." +"Unmöglich, die Größe der MMap zu erhöhen, da das Limit von %lu Byte bereits " +"erreicht ist." -#: apt-private/private-install.cc:628 +#: apt-pkg/contrib/mmap.cc:449 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." +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n" -"Sie eine unmögliche Situation angefordert haben oder, wenn Sie die\n" -"Unstable-Distribution verwenden, dass einige erforderliche Pakete noch\n" -"nicht erstellt wurden oder Incoming noch nicht verlassen haben." +"Unmöglich, die Größe der MMap zu erhöhen, da das automatische Anwachsen der " +"MMap vom Benutzer deaktiviert ist." -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Beschädigte Pakete" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Einbindungspunkt %s mit »stat« abfragen nicht möglich." -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Die folgenden zusätzlichen Pakete werden installiert:" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "CD-ROM mit »stat« abfragen fehlgeschlagen" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Vorgeschlagene Pakete:" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nicht erkannte Typabkürzung: »%c«" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Empfohlene Pakete:" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Konfigurationsdatei %s wird geöffnet" -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"%s wird übersprungen; es ist schon installiert und ein Upgrade ist nicht " -"angefordert.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaxfehler %s:%u: Block beginnt ohne Namen." -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"%s wird übersprungen; es ist nicht installiert und lediglich Upgrades sind " -"angefordert.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaxfehler %s:%u: Missgestaltete Markierung" -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn nach Wert" + +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Erneute Installation von %s ist nicht möglich,\n" -"es kann nicht heruntergeladen werden.\n" +"Syntaxfehler %s:%u: Direktiven können nur auf oberster Ebene benutzt werden" -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ist schon die neueste Version.\n" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (includes)" -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Version »%s« (%s) für »%s« gewählt.\n" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaxfehler %s:%u: Eingefügt von hier" -#: apt-private/private-install.cc:889 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Version »%s« (%s) für »%s« gewählt aufgrund von »%s«.\n" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: apt-pkg/contrib/configuration.cc:900 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Paket »%s« ist nicht installiert, wird also auch nicht entfernt. Meinten Sie " -"»%s«?\n" +"Syntaxfehler %s:%u: Löschdirektiven benötigen einen Optionsbaum als Argument" + +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn am Dateiende" -#: apt-private/private-install.cc:937 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paket »%s« ist nicht installiert, wird also auch nicht entfernt.\n" +msgid "No keyring installed in %s." +msgstr "Kein Schlüsselring in %s installiert" -#: apt-private/private-main.cc:32 -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 "" -"HINWEIS: Dies ist nur eine Simulation!\n" -" apt-get benötigt root-Privilegien für die reale Ausführung.\n" -" Behalten Sie ebenfalls in Hinterkopf, dass die Sperren deaktiviert\n" -" sind, verlassen Sie sich also bezüglich des reellen aktuellen\n" -" Status der Sperre nicht darauf!" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Befehlszeilenoption »%c« [aus %s] ist nicht bekannt." -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Befehlszeilenoption %s konnte nicht ausgewertet werden." -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Authentifizierungswarnung überstimmt.\n" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Befehlszeilenoption %s ist nicht Bool'sch." -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Einige Pakete konnten nicht authentifiziert werden." +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Option %s erfordert ein Argument." -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Diese Pakete ohne Überprüfung installieren?" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Option %s: Konfigurationswertspezifikation benötigt ein »=<Wert>«." -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Fehlschlag beim Holen von %s %s\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht »%s«." -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s konnte nicht in %s umbenannt werden." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Option »%s« ist zu lang." + +# Check for boolean; -1 is unspecified, 0 is yes 1 is no +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Der Sinn von »%s« ist nicht klar, versuchen Sie »true« oder »false«." + +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Ungültige Operation %s" + +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paket %s Version %s hat eine unerfüllte Abhängigkeit:\n" + +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Gesamtzahl an Paketnamen: " + +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Gesamtzahl an Paketstrukturen: " + +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " davon gewöhnliche Pakete: " + +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " davon rein virtuelle Pakete: " + +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " davon einzelne virtuelle Pakete: " + +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " davon gemischte virtuelle Pakete: " + +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " davon fehlend: " + +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Gesamtzahl an unterschiedlichen Versionen: " + +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Gesamtzahl an unterschiedlichen Beschreibungen: " + +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Gesamtzahl an Abhängigkeiten: " + +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Gesamtzahl an Version/Datei-Beziehungen: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Gesamtzahl an Beschreibung/Datei-Beziehungen: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Gesamtzahl an Bereitstellungen: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "OK " +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Gesamtzahl an Mustern: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Holen: " +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Gesamtmenge des Abhängigkeits-/Versionsspeichers: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Gesamtmenge an Slack: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fehl " +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Gesamtmenge an Speicher: " -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Es wurden %sB in %s geholt (%sB/s).\n" +msgid "Package file %s is out of sync." +msgstr "Paketdatei %s ist nicht synchronisiert." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Wird verarbeitet]" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Keine Pakete gefunden" -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Sie müssen mindestens ein Suchmuster angeben" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Medienwechsel: Bitte legen Sie das Medium mit dem Namen\n" -" »%s«\n" -"in Laufwerk »%s« ein und drücken Sie die Eingabetaste (Enter).\n" +"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark " +"showauto«." -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "%s kann nicht gelesen werden." +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Paketdateien:" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Es konnte nicht nach %s gewechselt werden." +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Zwischenspeicher ist nicht synchron, Querverweisen einer Paketdatei nicht " +"möglich" -#. 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 "Keine Datei von Spiegelserver »%s« gefunden" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Mit Pinning verwaltete Pakete:" -#. 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 "Datei »%s« von Spiegelserver kann nicht gelesen werden." +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nicht gefunden)" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installiert: " -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Spiegelserver: %s]" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Installationskandidat: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "" -"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(keine)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Verbindung vorzeitig beendet" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paket-Pinning: " -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Fehlerhafte Voreinstellung!" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versionstabelle:" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Zum Fortfahren die Eingabetaste (Enter) drücken." +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s für %s, kompiliert am %s %s\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Möchten Sie alle bisher heruntergeladenen .deb-Dateien löschen?" +#: cmdline/apt-cache.cc:1749 +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 "" +"Aufruf: apt-cache [Optionen] befehl\n" +" apt-cache [Optionen] showpkg paket1 [paket2 ...]\n" +" apt-cache [Optionen] showsrc paket1 [paket2 ...]\n" +"\n" +"apt-cache ist ein untergeordnetes Werkzeug, um Informationen aus den\n" +"binären Zwischenspeicher-Dateien von APT abzufragen.\n" +"\n" +"Befehle:\n" +" gencaches – Paket- und Quell-Zwischenspeicher erzeugen\n" +" showpkg – grundsätzliche Informationen eines einzelnen Pakets ausgeben\n" +" showsrc – Aufzeichnungen zu Quellen ausgeben\n" +" stats – einige grundlegenden Statistiken ausgeben\n" +" dump – gesamte Datei in Kurzform ausgeben\n" +" dumpavail – Datei verfügbarer Pakete nach stdout ausgeben\n" +" unmet – unerfüllte Abhängigkeiten ausgeben\n" +" search – die Paketliste mittels regulärem Ausdruck durchsuchen\n" +" show – einen lesbaren Datensatz für das Paket ausgeben\n" +" depends – rohe Abhängigkeitsinformationen eines Pakets ausgeben\n" +" rdepends – umgekehrte Abhängigkeitsinformationen eines Pakets ausgeben\n" +" pkgnames – die Namen aller Pakete im System auflisten\n" +" dotty – Paketgraph zur Verwendung mit GraphViz erzeugen\n" +" xvcg – Paketgraph zur Verwendung mit xvcg erzeugen\n" +" policy – Policy-Einstellungen ausgeben\n" +"\n" +"Optionen:\n" +" -h dieser Hilfe-Text\n" +" -p=? der Paket-Zwischenspeicher\n" +" -s=? der Quell-Zwischenspeicher\n" +" -q Fortschrittsanzeige abschalten\n" +" -i nur wichtige Abhängigkeiten für den »unmet«-Befehl ausgeben\n" +" -c=? diese Konfigurationsdatei lesen\n" +" -o=? eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" +"Weitere Informationen finden Sie in den Handbuchseiten von apt-cache(8)\n" +"und apt.conf(5).\n" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Einige Fehler traten während des Entpackens auf. Installierte Pakete" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Bitte geben Sie einen Namen für dieses Medium an, wie zum Beispiel »Debian " +"5.0.3 Disk 1«" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" msgstr "" -"werden konfiguriert. Dies kann zu doppelten Fehlermeldungen oder Fehlern " -"durch" +"Bitte legen Sie ein Medium in das Laufwerk ein und drücken Sie die " +"Eingabetaste (Enter)." -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "»%s« konnte nicht in »%s« eingebunden werden." -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -"oberhalb dieser Meldung sind wichtig. Bitte beseitigen Sie sie und " -"[I]nstallieren Sie erneut." +"Wiederholen Sie dieses Prozedere für die restlichen Disks Ihres Satzes." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Verfügbare Informationen werden zusammengeführt." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumente nicht paarweise" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "»DropNode« auf noch verknüpften Knoten aufgerufen" +#: cmdline/apt-config.cc:89 +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 "" +"Aufruf: apt-config [optionen] befehl\n" +"\n" +"apt-config ist ein einfaches Werkzeug, um die APT-Konfigurationsdatei zu " +"lesen.\n" +"\n" +"Befehle:\n" +" shell – Shell-Modus\n" +" dump – Die Konfiguration ausgeben\n" +"\n" +"Optionen:\n" +" -h Dieser Hilfetext\n" +" -c=? Diese Konfigurationsdatei lesen\n" +" -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Hash-Element konnte nicht gefunden werden!" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Umleitung konnte nicht reserviert werden." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Interner Fehler in »AddDiversion«" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Es wird versucht, eine Umleitung zu überschreiben: %s -> %s und %s/%s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Als Quellpaket wird »%s« statt »%s« gewählt.\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doppelte Hinzufügung der Umleitung %s -> %s" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert." -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Doppelte Konfigurationsdatei %s/%s" +msgid "Couldn't find package %s" +msgstr "Paket %s konnte nicht gefunden werden" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "The path %s is too long" -msgstr "Der Pfad %s ist zu lang." +msgid "%s set to manually installed.\n" +msgstr "%s wurde als manuell installiert festgelegt.\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s mehr als einmal entpackt" +msgid "%s set to automatically installed.\n" +msgstr "%s wurde als automatisch installiert festgelegt.\n" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Das Verzeichnis %s ist umgeleitet." +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark auto« " +"und »apt-mark manual«." -#: apt-inst/extract.cc:152 -#, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Schreibversuch vom Paket auf das Umleitungsziel %s/%s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Interner Fehler, der Problemlöser hat etwas beschädigt." -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Der Umleitungspfad ist zu lang." +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Das Downloadverzeichnis konnte nicht gesperrt werden." -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "%s mit »stat« abfragen fehlgeschlagen" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " +"sollen." -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s konnte nicht in %s umbenannt werden." +msgid "Unable to find a source package for %s" +msgstr "Quellpaket für %s kann nicht gefunden werden." -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:786 #, 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:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Knoten konnte nicht in seinem Hash gefunden werden." - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Der Pfad ist zu lang." +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"HINWEIS: »%s«-Paketierung wird betreut im »%s«-Versionsverwaltungssystem " +"auf:\n" +"%s\n" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Pakettreffer ohne Version für %s wird überschrieben." +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Bitte verwenden Sie:\n" +"bzr branch %s\n" +"um die neuesten (möglicherweise noch unveröffentlichten) Aktualisierungen\n" +"für das Paket abzurufen.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:843 #, 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." +msgid "Skipping already downloaded file '%s'\n" +msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Unable to stat %s" -msgstr "%s mit »stat« abfragen nicht möglich" +msgid "Couldn't determine free space in %s" +msgstr "Freier Platz in %s konnte nicht bestimmt werden." -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Failed to write file %s" -msgstr "Datei %s konnte nicht geschrieben werden." +msgid "You don't have enough free space in %s" +msgstr "Sie haben nicht genügend freien Speicherplatz in %s." -#: apt-inst/dirstream.cc:105 +#. 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:891 #, c-format -msgid "Failed to close file %s" -msgstr "Datei %s konnte nicht geschlossen werden." +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#. 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:896 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dies ist kein gültiges DEB-Archiv, da es »%s« nicht enthält." +msgid "Need to get %sB of source archives.\n" +msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Interner Fehler, Bestandteil %s konnte nicht gefunden werden" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Auswerten der »control«-Datei nicht möglich" +msgid "Fetch source %s\n" +msgstr "Quelle %s wird heruntergeladen.\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ungültige Archiv-Signatur" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Einige Archive konnten nicht heruntergeladen werden." -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Invalid archive member header %s" -msgstr "Ungültige Archivbestandteil-Kopfzeile %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ungültige Archivdatei-Kopfzeilen" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archiv ist zu kurz." - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Archiv-Kopfzeilen konnten nicht gelesen werden." - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Pipes (Weiterleitungen) konnten nicht erzeugt werden." - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip konnte nicht ausgeführt werden." - -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Beschädigtes Archiv" - -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv beschädigt" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Das Entpacken der bereits entpackten Quelle in %s wird übersprungen.\n" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Unbekannter Tar-Kopfzeilen-Typ %u, Bestandteil %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Entpackbefehl »%s« fehlgeschlagen.\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to stat %s." -msgstr "%s mit stat abfragen nicht möglich" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Progress: [%3i%%]" +msgid "Build command '%s' failed.\n" +msgstr "Build-Befehl »%s« fehlgeschlagen.\n" + +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Kindprozess fehlgeschlagen" + +#: cmdline/apt-get.cc:1029 +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." -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Ausführen von dpkg" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Keine Architekturinformation für %s verfügbar. Weiteres zur Einrichtung " +"finden Sie unter apt.conf(5) APT::Architectures." -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketierungssystem »%s« wird nicht unterstützt." +msgid "Unable to get build-dependency information for %s" +msgstr "" +"Informationen zu Bauabhängigkeiten für %s konnten nicht gefunden werden." -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Bestimmung eines passenden Paketierungssystemtyps nicht möglich" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s hat keine Bauabhängigkeiten.\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Wrote %i records.\n" -msgstr "Es wurden %i Datensätze geschrieben.\n" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da %s bei »%s«-Paketen " +"nicht erlaubt ist." -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht " +"gefunden werden kann." -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n" +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." -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Es wurden %i Datensätze mit %i fehlenden und %i nicht passenden Dateien " -"geschrieben.\n" +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da die Version des " +"Installationskandidaten für das Paket %s die Versionsanforderungen nicht " +"erfüllen kann." -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Authentifizierungs-Datensatz konnte nicht gefunden werden für: %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da für Paket %s kein " +"Installationskandidat existiert." -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash-Summe stimmt nicht überein für: %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "»%s«-Abhängigkeit für %s konnte nicht erfüllt werden: %s" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "The method driver %s could not be found." -msgstr "Der Treiber für Methode %s konnte nicht gefunden werden." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Bauabhängigkeiten für %s konnten nicht erfüllt werden." -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Method %s did not start correctly" -msgstr "Methode %s ist nicht korrekt gestartet." +msgid "Changelog for %s (%s)" +msgstr "Änderungsprotokoll (Changelog) für %s (%s)" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Unterstützte Module:" + +#: cmdline/apt-get.cc:1632 +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 "" -"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und " -"drücken Sie die Eingabetaste (Enter)." +"Aufruf: apt-get [Optionen] befehl\n" +" apt-get [Optionen] install|remove paket1 [paket2 ...]\n" +" apt-get [Optionen] source paket1 [paket2 ...]\n" +"\n" +"apt-get ist ein einfaches Befehlszeilenwerkzeug zum Herunterladen\n" +"und Installieren von Paketen. Die am häufigsten benutzten Befehle\n" +"sind update und install.\n" +"\n" +"Befehle:\n" +" update – neue Paketinformationen holen\n" +" upgrade – Upgrade (Paketaktualisierung) durchführen\n" +" install – neue Pakete installieren (paket ist libc6, nicht libc6." +"deb)\n" +" remove – Pakete entfernen\n" +" autoremove – alle nicht mehr verwendeten Pakete automatisch " +"entfernen\n" +" purge – Pakete vollständig entfernen (inkl. " +"Konfigurationsdateien)\n" +" source – Quellarchive herunterladen\n" +" build-dep – Bauabhängigkeiten für Quellpakete konfigurieren\n" +" dist-upgrade – Upgrade (Paketaktualisierung) für die komplette\n" +" Distribution durchführen, siehe apt-get(8)\n" +" dselect-upgrade – der Auswahl von »dselect« folgen\n" +" clean – heruntergeladene Archive löschen\n" +" autoclean – veraltete heruntergeladene Archive löschen\n" +" check – überprüfen, ob es unerfüllte Abhängigkeiten gibt\n" +" changelog – Änderungsprotokoll für das angegebene Paket " +"herunterladen\n" +" und anzeigen\n" +" download – das Binärpaket in das aktuelle Verzeichnis " +"herunterladen\n" +"\n" +"Optionen:\n" +" -h dieser Hilfetext\n" +" -q protokollierbare Ausgabe – keine Fortschrittsanzeige\n" +" -qq keine Ausgabe, außer bei Fehlern\n" +" -d nur herunterladen – Archive NICHT installieren oder entpacken\n" +" -s nichts tun, nur eine Simulation der Aktionen durchführen\n" +" -y für alle Antworten »Ja« annehmen und nicht nachfragen\n" +" -f versuchen, ein System mit defekten Abhängigkeiten zu korrigieren\n" +" -m versuchen fortzufahren, wenn Archive nicht auffindbar sind\n" +" -u ebenfalls eine Liste der aktualisierten Pakete ausgeben\n" +" -b ein Quellpaket nach dem Herunterladen bauen\n" +" -V ausführliche Versionsnummern ausgeben\n" +" -c=? Diese Konfigurationsdatei benutzen\n" +" -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" +"Siehe auch die Handbuchseiten apt-get(8), sources.list(5) und apt.conf(5)\n" +"bezüglich weitergehender Informationen und Optionen.\n" +" Dieses APT hat Super-Kuh-Kräfte.\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " +"sollen." + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" + +#: cmdline/apt-mark.cc:68 +#, c-format +msgid "%s can not be marked as it is not installed.\n" msgstr "" -"Die Paketliste oder die Statusdatei konnte nicht eingelesen oder geöffnet " -"werden." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Probieren Sie »apt-get update«, um diese Probleme zu korrigieren." +"Markierung für %s kann nicht gesetzt werden, da es nicht installiert ist.\n" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Die Liste der Quellen konnte nicht gelesen werden." +#: cmdline/apt-mark.cc:74 +#, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s wurde bereits auf manuell installiert gesetzt.\n" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Leerer Paketzwischenspeicher" +#: cmdline/apt-mark.cc:76 +#, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s wurde bereits auf automatisch installiert gesetzt.\n" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Die Paketzwischenspeicher-Datei ist beschädigt." +#: cmdline/apt-mark.cc:241 +#, c-format +msgid "%s was already set on hold.\n" +msgstr "%s wurde bereits auf Halten gesetzt.\n" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "" -"Die Paketzwischenspeicher-Datei liegt in einer inkompatiblen Version vor." +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" +msgstr "Die Halten-Markierung für %s wurde bereits entfernt.\n" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Die Paketzwischenspeicher-Datei ist beschädigt, sie ist zu klein." +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, c-format +msgid "%s set on hold.\n" +msgstr "%s auf Halten gesetzt.\n" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Das Versionssystem »%s« wird durch dieses APT nicht unterstützt." +msgid "Canceled hold on %s.\n" +msgstr "Halten-Markierung für %s entfernt.\n" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Der Paketzwischenspeicher wurde für eine andere Architektur aufgebaut." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Ausführen von dpkg fehlgeschlagen. Sind Sie root?" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Hängt ab von" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Aufruf: apt-mark [Optionen] {auto|manual} paket1 [paket2 ...]\n" +"\n" +"apt-mark ist ein einfaches Befehlszeilenprogramm, um Pakete als manuell\n" +"oder automatisch installiert zu markieren. Diese Markierungen können auch\n" +"aufgelistet werden.\n" +"\n" +"Befehle:\n" +" auto – das angegebene Paket als »Automatisch installiert« markieren\n" +" manual – das angegebene Paket als »Manuell installiert« markieren\n" +"\n" +"Optionen:\n" +" -h dieser Hilfetext\n" +" -q protokollierbare Ausgabe – keine Fortschrittsanzeige\n" +" -qq keine Ausgabe, außer bei Fehlern\n" +" -s nichts tun, nur eine Simulation der Aktionen durchführen\n" +" -f Autom./Manuell-Markierung in der angegebenen Datei lesen/schreiben\n" +" -c=? Diese Konfigurationsdatei benutzen\n" +" -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" +"Siehe auch die Handbuchseiten apt-mark(8) und apt.conf(5) bezüglich\n" +"weitergehender Informationen und Optionen." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Hängt ab von (vorher)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Schlägt vor" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "CD-ROM-Datenbank %s kann nicht gelesen werden." -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Empfiehlt" +#: 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 "" +"Bitte verwenden Sie apt-cdrom, um APT diese CD-ROM bekannt zu machen. apt-" +"get update kann nicht dazu verwendet werden, neue CD-ROMs hinzuzufügen." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Kollidiert mit" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Falsche CD-ROM" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Ersetzt" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Einbindung von CD-ROM in %s kann nicht gelöst werden, möglicherweise wird " +"sie noch verwendet." -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Löst ab" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Medium nicht gefunden" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Beschädigt" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Datei nicht gefunden" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Wertet auf" +# looks like someone hardcoded English grammar +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Abfrage mit »stat« fehlgeschlagen" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "wichtig" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Änderungszeitpunkt kann nicht gesetzt werden." -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "erforderlich" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ungültige URI, lokale URIs dürfen nicht mit // beginnen." -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Anmeldung läuft" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optional" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Name des Kommunikationspartners kann nicht bestimmt werden." -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Lokaler Name kann nicht bestimmt werden." -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexdateityp »%s« wird nicht unterstützt." - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Zwischenspeicher hat ein inkompatibles Versionssystem." +msgid "The server refused the connection and said: %s" +msgstr "Verbindung durch Server abgelehnt; Server meldet: %s" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:225 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Fehler aufgetreten beim Verarbeiten von %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen diese " -"APT-Version umgehen kann." - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen diese " -"APT-Version umgehen kann." - -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Na so was, Sie haben die Anzahl an Beschreibungen überschritten, mit denen " -"diese APT-Version umgehen kann." +msgid "USER failed, server said: %s" +msgstr "Befehl USER fehlgeschlagen, Server meldet: %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Befehl PASS fehlgeschlagen, Server meldet: %s" + +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen " -"diese APT-Version umgehen kann." +"Es war ein Proxy-Server angegeben, aber kein Login-Skript, Acquire::ftp::" +"ProxyLogin ist leer." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, 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." +msgid "Login script command '%s' failed, server said: %s" +msgstr "Befehl »%s« des Login-Skriptes fehlgeschlagen, Server meldet: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" +msgid "TYPE failed, server said: %s" +msgstr "Befehl TYPE fehlgeschlagen: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Paketlisten werden gelesen" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Zeitüberschreitung der Verbindung" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Verbindung durch Server geschlossen" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Schreiben nach %s nicht möglich" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Durch eine Antwort wurde der Puffer zum Überlaufen gebracht." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokoll beschädigt" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Szenario an Problemlöser senden" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Socket konnte nicht erzeugt werden." -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Anfrage an Problemlöser senden" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Daten-Socket konnte wegen Zeitüberschreitung nicht verbunden werden." -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Vorbereiten, eine Lösung zu erhalten" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Fehlgeschlagen" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" -"Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Passiver Socket konnte nicht verbunden werden." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Externen Problemlöser ausführen" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "" +"Von der Funktion getaddrinfo wurde kein auf Verbindungen wartender Socket " +"gefunden." -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Verbindung des Sockets nicht möglich" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash-Summe stimmt nicht überein" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Warten auf Verbindungen auf dem Socket nicht möglich" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Größe stimmt nicht überein" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Name des Sockets konnte nicht bestimmt werden." -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ungültige Operation %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "PORT-Befehl konnte nicht gesendet werden." -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " -"(falscher Eintrag in sources.list oder missgebildete Datei)." +msgid "Unknown address family %u (AF_*)" +msgstr "Unbekannte Adressfamilie %u (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Hash-Summe für »%s« kann in Release-Datei nicht gefunden werden." +msgid "EPRT failed, server said: %s" +msgstr "Befehl EPRT fehlgeschlagen: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Es gibt keine öffentlichen Schlüssel für die folgenden Schlüssel-IDs:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Zeitüberschreitung bei Datenverbindungsaufbau" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Verbindung konnte nicht angenommen werden." + +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem bei Bestimmung des Hashwertes einer Datei" + +#: methods/ftp.cc:890 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Release-Datei für %s ist abgelaufen (ungültig seit %s). Aktualisierungen für " -"dieses Depot werden nicht angewendet." +msgid "Unable to fetch file, server said '%s'" +msgstr "Datei konnte nicht heruntergeladen werden; Server meldet: »%s«" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Zeitüberschreitung bei Datenverbindung" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:935 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" +msgid "Data transfer failed, server said '%s'" +msgstr "Datenübertragung fehlgeschlagen; Server meldet: »%s«" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Abfrage" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Aufruf nicht möglich: " -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:76 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Während der Überprüfung der Signatur trat ein Fehler auf. Das Repository " -"wurde nicht aktualisiert und die vorherigen Indexdateien werden verwendet. " -"GPG-Fehler: %s: %s\n" +msgid "Connecting to %s (%s)" +msgstr "Verbindung mit %s (%s)" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:87 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-Fehler: %s: %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:94 #, 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 "" -"Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass " -"Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender " -"Architektur)." +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)." -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:100 #, 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." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Verbindung mit %s:%s kann nicht aufgebaut werden (%s)." -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:108 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." +msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -"Die Paketindexdateien sind beschädigt: Kein Filename:-Feld für Paket %s." +"Verbindung mit %s:%s konnte nicht aufgebaut werden (%s), eine " +"Zeitüberschreitung trat auf." -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Herstellerblock %s enthält keinen Fingerabdruck." +msgid "Could not connect to %s:%s (%s)." +msgstr "Verbindung mit %s:%s nicht möglich (%s)" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "List directory %spartial is missing." -msgstr "Listenverzeichnis %spartial fehlt." +msgid "Connecting to %s" +msgstr "Verbindung mit %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archivverzeichnis %spartial fehlt." +msgid "Could not resolve '%s'" +msgstr "»%s« konnte nicht aufgelöst werden." -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "Das Verzeichnis %s kann nicht gesperrt werden." +msgid "Temporary failure resolving '%s'" +msgstr "Temporärer Fehlschlag beim Auflösen von »%s«" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Holen der Datei %li von %li (noch %s)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Holen der Datei %li von %li" +msgid "Unable to connect to %s:%s:" +msgstr "Verbindung mit %s:%s nicht möglich:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden " -"ignoriert oder alte an ihrer Stelle benutzt." +"Interner Fehler: Gültige Signatur, Fingerabdruck des Schlüssels konnte " +"jedoch nicht ermittelt werden?!" + +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Mindestens eine ungültige Signatur wurde entdeckt." -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Sie müssen einige »source«-URIs für Quellpakete in die sources.list-Datei " -"eintragen." +"»gpgv« konnte zur Überprüfung der Signatur nicht ausgeführt werden (ist gpgv " +"installiert?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" -"Der Wert »%s« ist für APT::Default-Release ungültig, da solch eine " -"Veröffentlichung in den Paketquellen nicht verfügbar ist." - -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Ungültiger Eintrag in Einstellungsdatei %s, keine »Package«-Kopfzeile(n)" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Pinning-Typ %s kann nicht interpretiert werden." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Unbekannter Fehler beim Ausführen von gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Keine Priorität (oder Null) für Pin angegeben" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Die folgenden Signaturen waren ungültig:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"»%s« konnte nicht unmittelbar konfiguriert werden. Lesen Sie »man 5 apt." -"conf« unter APT::Immediate-Configure bezüglich weiterer Details. (%d)" +"Die folgenden Signaturen konnten nicht überprüft werden, weil ihr " +"öffentlicher\n" +"Schlüssel nicht verfügbar ist:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "»%s« konnte nicht konfiguriert werden. " +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Leere Dateien können kein gültiges Archiv sein." -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fehler beim Schreiben der Datei" + +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" msgstr "" -"Dieser Installationslauf erfordert, dass vorübergehend das essentielle Paket " -"%s aufgrund einer Konflikt-/Vor-Abhängigkeits-Schleife entfernt wird. Das " -"ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte " -"die Option APT::Force-LoopBreak." +"Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der " +"anderen Seite geschlossen." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Zeile %u in Quellliste %s zu lang." +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fehler beim Lesen vom Server" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Einbindung der CD-ROM wird gelöst ...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fehler beim Schreiben in Datei" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Verwendeter CD-ROM-Einbindungspunkt: %s\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Auswahl fehlgeschlagen" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Warten auf Medium ...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Zeitüberschreitung bei Verbindung" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM wird eingebunden ...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fehler beim Schreiben der Ausgabedatei" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifizieren ... " +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Warten auf Kopfzeilen" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Gespeicherte Kennzeichnung: %s\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Ungültige Kopfzeile" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Durchsuchen des Mediums nach Index-Dateien ...\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Vom HTTP-Server wurde eine ungültige Antwort-Kopfzeile gesandt." -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -"%zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu " -"Signaturen gefunden\n" +"Vom HTTP-Server wurde eine ungültige »Content-Length«-Kopfzeile gesandt." -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -"Es konnten keine Paketdateien gefunden werden; möglicherweise ist dies keine " -"Debian-Disk oder eine für die falsche Architektur?" +"Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt." -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Kennzeichnung »%s« gefunden\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "" +"Teilweise Dateiübertragung wird vom HTTP-Server nur fehlerhaft unterstützt." -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut.\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Unbekanntes Datumsformat" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Dieses Medium heißt: \n" -"»%s«\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Fehlerhafte Kopfzeilendaten" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopieren der Paketlisten ..." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Verbindung fehlgeschlagen" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Schreiben der neuen Quellliste\n" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Interner Fehler" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Quelllisteneinträge für dieses Medium sind:\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Paketaktualisierung (Upgrade) wird berechnet... " -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " -"gefunden werden." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fertig" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Fehler: Unterbrechungen durch pkgProblemResolver::Resolve hervorgerufen; " -"dies könnte durch zurückgehaltene Pakete verursacht worden sein." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte " -"Pakete." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Abhängigkeitsbaum wird aufgebaut." - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Installationskandidat-Versionen" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Abhängigkeitsgenerierung" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Statusinformationen werden eingelesen." - -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "StateFile %s konnte nicht geöffnet werden." +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Temporäres StateFile %s konnte nicht geschrieben werden." +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Abhängigkeiten werden korrigiert ..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Paketdatei %s konnte nicht verarbeitet werden (1)." +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " fehlgeschlagen." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Abhängigkeiten konnten nicht korrigiert werden." -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Veröffentlichung »%s« für »%s« konnte nicht gefunden werden." +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden." -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Version »%s« für »%s« konnte nicht gefunden werden." +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fertig" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Task »%s« konnte nicht gefunden werden." +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +msgid "[installed,upgradable to: %s]" +msgstr " [Installiert]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Es können keine Versionen von Paket »%s« ausgewählt werden, da es rein " -"virtuell ist." +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installiert]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Es kann weder eine installierte Version noch ein Installationskandidat von " -"Paket »%s« ausgewählt werden, da beide nicht existieren." -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Die neueste Version von Paket »%s« kann nicht ausgewählt werden, da es rein " -"virtuell ist." +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installiert]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installiert]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Es kann kein Installationskandidat von Paket »%s« ausgewählt werden, da kein " -"solcher existiert." -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Die installierte Version von Paket »%s« kann nicht ausgewählt werden, da es " -"nicht installiert ist." -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Release-Datei %s kann nicht verarbeitet werden." +msgid "but %s is installed" +msgstr "aber %s ist installiert" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Keine Bereiche (Sections) in Release-Datei %s" +msgid "but %s is to be installed" +msgstr "aber %s soll installiert werden" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Kein Hash-Eintrag in Release-Datei %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ist aber nicht installierbar" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ist aber ein virtuelles Paket" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ungültiger »Date«-Eintrag in Release-Datei %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ist aber nicht installiert" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "soll aber nicht installiert werden" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] nicht auswertbar)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " oder" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] zu kurz)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] ist keine Zuweisung)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Die folgenden NEUEN Pakete werden installiert:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] hat keinen Schlüssel)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Die folgenden Pakete werden ENTFERNT:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Die folgenden Pakete sind zurückgehalten worden:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" msgstr "" -"Missgestaltete Zeile %lu in Quellliste %s ([%s] Schlüssel %s hat keinen Wert)" +"Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" +msgid "%s (due to %s) " +msgstr "%s (wegen %s) " -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n" +"Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualisiert, %lu neu installiert, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" +msgid "%lu reinstalled, " +msgstr "%lu erneut installiert, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "%s wird geöffnet." +msgid "%lu downgraded, " +msgstr "%lu durch eine ältere Version ersetzt, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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." +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nicht vollständig installiert oder entfernt.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "%s wird installiert." +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s wird konfiguriert." +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Der Befehl »update« akzeptiert keine Argumente." + +#: apt-private/private-update.cc:90 #, c-format -msgid "Removing %s" -msgstr "%s wird entfernt." +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 #, c-format -msgid "Completely removing %s" -msgstr "%s wird vollständig entfernt." +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Verschwinden von %s festgestellt" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Aufruf des Nach-Installations-Triggers %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Verzeichnis »%s« fehlt" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Interner Fehler, Anordnung beendete nicht" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Datei »%s« konnte nicht geöffnet werden." +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie " +"eine E-Mail an apt@packages.debian.org (auf Englisch bitte)." -#: apt-pkg/deb/dpkgpm.cc:989 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Preparing %s" -msgstr "%s wird vorbereitet." +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Unpacking %s" -msgstr "%s wird entpackt." +msgid "Need to get %sB of archives.\n" +msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Preparing to configure %s" -msgstr "Konfiguration von %s wird vorbereitet." +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Installed %s" -msgstr "%s installiert" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing for removal of %s" -msgstr "Entfernen von %s wird vorbereitet." +msgid "You don't have enough free space in %s." +msgstr "Sie haben nicht genug Platz in %s." -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s entfernt" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Vollständiges Entfernen von %s wird vorbereitet." +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation." -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s vollständig entfernt" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, tue was ich sage!" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Sie sind im Begriff, etwas potentiell Schädliches zu tun.\n" +"Zum Fortfahren geben Sie bitte »%s« ein.\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Schreiben nach %s nicht möglich" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abbruch." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Möchten Sie fortfahren?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Einige Dateien konnten nicht heruntergeladen werden." + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " +"update« ausführen oder mit »--fix-missing« probieren?" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Operation wurde unterbrochen, bevor sie beendet werden konnte." +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Es wurde kein Apport-Bericht verfasst, da das Limit MaxReports bereits " -"erreicht ist." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Fehlende Pakete konnten nicht korrigiert werden." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "Abhängigkeitsprobleme - verbleibt unkonfiguriert" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Installation abgebrochen." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung darauf " -"hindeutet, dass dies lediglich ein Folgefehler eines vorherigen Problems ist." +"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] "" +"Das folgende Paket verschwand von Ihrem System, da alle\n" +"Dateien von anderen Paketen überschrieben wurden:" +msgstr[1] "" +"Die folgenden Pakete verschwanden von Ihrem System, da alle\n" +"Dateien von anderen Paketen überschrieben wurden:" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " -"wegen voller Festplatte hindeutet." +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " -"wegen erschöpftem Arbeitsspeicher hindeutet." +"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " -"wegen voller Festplatte hindeutet." +"Hmm, es sieht so aus, als ob der AutoRemover etwas beschädigt hat, was\n" +"wirklich nicht geschehen sollte. Bitte erstellen Sie einen Fehlerbericht\n" +"über apt." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Ein-/" -"Ausgabe-Fehler von Dpkg hindeutet." +"Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Interner Fehler, AutoRemover hat etwas beschädigt." + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Sperren des Administrationsverzeichnisses (%s) nicht möglich, wird es von " -"einem anderen Prozess verwendet?" +"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] "" +"Das folgende Paket wurde automatisch installiert und wird nicht mehr " +"benötigt:" +msgstr[1] "" +"Die folgenden Pakete wurden automatisch installiert und werden nicht mehr " +"benötigt:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Sperren des Administrationsverzeichnisses (%s) nicht möglich, sind Sie root?" +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 wurde automatisch installiert und wird nicht mehr benötigt.\n" +msgstr[1] "" +"%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Der dpkg-Prozess wurde unterbrochen; Sie müssen manuell »%s« ausführen, um " -"das Problem zu beheben." +"Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe " +"eines Pakets (oder geben Sie eine Lösung an)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Nicht gesperrt" +#: apt-private/private-install.cc:638 +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 "" +"Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n" +"Sie eine unmögliche Situation angefordert haben oder, wenn Sie die\n" +"Unstable-Distribution verwenden, dass einige erforderliche Pakete noch\n" +"nicht erstellt wurden oder Incoming noch nicht verlassen haben." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li d %li h %li min %li s" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Beschädigte Pakete" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%li h %li min %li s" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Die folgenden zusätzlichen Pakete werden installiert:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%li min %li s" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Vorgeschlagene Pakete:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%li s" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Empfohlene Pakete:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Auswahl %s nicht gefunden" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"%s wird übersprungen; es ist schon installiert und ein Upgrade ist nicht " +"angefordert.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Es wird keine Sperre für schreibgeschützte Sperrdatei %s verwendet." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"%s wird übersprungen; es ist nicht installiert und lediglich Upgrades sind " +"angefordert.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Sperrdatei %s konnte nicht geöffnet werden." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" +"Erneute Installation von %s ist nicht möglich,\n" +"es kann nicht heruntergeladen werden.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Es wird keine Sperre für per NFS eingebundene Sperrdatei %s verwendet." +msgid "%s is already the newest version.\n" +msgstr "%s ist schon die neueste Version.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Konnte Sperre %s nicht bekommen" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Version »%s« (%s) für »%s« gewählt.\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Dateiliste kann nicht erstellt werden, da »%s« kein Verzeichnis ist." +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Version »%s« (%s) für »%s« gewählt aufgrund von »%s«.\n" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"»%s« in Verzeichnis »%s« wird ignoriert, da es keine reguläre Datei ist." +"Paket »%s« ist nicht installiert, wird also auch nicht entfernt. Meinten Sie " +"»%s«?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie keine Dateinamen-" -"Erweiterung hat." +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Paket »%s« ist nicht installiert, wird also auch nicht entfernt.\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie eine ungültige " -"Dateinamen-Erweiterung hat." - -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Unterprozess %s hat einen Speicherzugriffsfehler empfangen." +"HINWEIS: Dies ist nur eine Simulation!\n" +" apt-get benötigt root-Privilegien für die reale Ausführung.\n" +" Behalten Sie ebenfalls in Hinterkopf, dass die Sperren deaktiviert\n" +" sind, verlassen Sie sich also bezüglich des reellen aktuellen\n" +" Status der Sperre nicht darauf!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Unterprozess %s hat das Signal %u empfangen." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Unterprozess %s hat Fehlercode zurückgegeben (%u)" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Authentifizierungswarnung überstimmt.\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Unterprozess %s unerwartet beendet" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Einige Pakete konnten nicht authentifiziert werden." -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem beim Schließen der gzip-Datei %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Diese Pakete ohne Überprüfung installieren?" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Datei %s konnte nicht geöffnet werden." +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "%s konnte nicht in %s umbenannt werden." -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Datei-Deskriptor %d konnte nicht geöffnet werden." +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Fehler beim Ausführen von Komprimierer " +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "OK " -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "" -"Lesevorgang: es verbleiben noch %llu zu lesen, jedoch ist nichts mehr übrig." +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Holen: " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "" -"Schreibvorgang: es verbleiben noch %llu zu schreiben, Schreiben ist jedoch " -"nicht möglich." +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problem beim Schließen der Datei %s" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Fehl " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem beim Umbenennen der Datei %s nach %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Es wurden %sB in %s geholt (%sB/s).\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem beim Entfernen (unlink) der Datei %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem beim Synchronisieren der Datei" +msgid " [Working]" +msgstr " [Wird verarbeitet]" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fehler!" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Medienwechsel: Bitte legen Sie das Medium mit dem Namen\n" +" »%s«\n" +"in Laufwerk »%s« ein und drücken Sie die Eingabetaste (Enter).\n" -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fertig" +msgid "No mirror file '%s' found " +msgstr "Keine Datei von Spiegelserver »%s« gefunden" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#. 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 "Datei »%s« von Spiegelserver kann nicht gelesen werden." -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Fertig" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Eine leere Datei kann nicht mit mmap abgebildet werden." +msgid "No entry found in mirror file '%s'" +msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Datei-Deskriptor %i konnte nicht dupliziert werden." +msgid "[Mirror: %s]" +msgstr "[Spiegelserver: %s]" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "mmap mit %llu Byte Größe konnte nicht erzeugt werden." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "" +"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "mmap konnte nicht geschlossen werden." +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Verbindung vorzeitig beendet" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Fehlerhafte Voreinstellung!" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "mmap konnte nicht synchronisiert werden." +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Zum Fortfahren die Eingabetaste (Enter) drücken." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "mmap mit %lu Byte Größe konnte nicht erzeugt werden." +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Möchten Sie alle bisher heruntergeladenen .deb-Dateien löschen?" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Datei konnte nicht eingekürzt werden." +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Einige Fehler traten während des Entpackens auf. Installierte Pakete" -#: 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)" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -"Nicht genügend Platz für »Dynamic MMap«. Bitte erhöhen Sie den Wert von APT::" -"Cache-Start. Aktueller Wert: %lu. (Siehe auch man 5 apt.conf.)" +"werden konfiguriert. Dies kann zu doppelten Fehlermeldungen oder Fehlern " +"durch" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Unmöglich, die Größe der MMap zu erhöhen, da das Limit von %lu Byte bereits " -"erreicht ist." +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler" -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Unmöglich, die Größe der MMap zu erhöhen, da das automatische Anwachsen der " -"MMap vom Benutzer deaktiviert ist." +"oberhalb dieser Meldung sind wichtig. Bitte beseitigen Sie sie und " +"[I]nstallieren Sie erneut." -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Einbindungspunkt %s mit »stat« abfragen nicht möglich." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Verfügbare Informationen werden zusammengeführt." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "CD-ROM mit »stat« abfragen fehlgeschlagen" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "»DropNode« auf noch verknüpften Knoten aufgerufen" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nicht erkannte Typabkürzung: »%c«" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Hash-Element konnte nicht gefunden werden!" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Konfigurationsdatei %s wird geöffnet" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Umleitung konnte nicht reserviert werden." -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Interner Fehler in »AddDiversion«" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaxfehler %s:%u: Block beginnt ohne Namen." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Es wird versucht, eine Umleitung zu überschreiben: %s -> %s und %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaxfehler %s:%u: Missgestaltete Markierung" +msgid "Double add of diversion %s -> %s" +msgstr "Doppelte Hinzufügung der Umleitung %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn nach Wert" +msgid "Duplicate conf file %s/%s" +msgstr "Doppelte Konfigurationsdatei %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Syntaxfehler %s:%u: Direktiven können nur auf oberster Ebene benutzt werden" +msgid "The path %s is too long" +msgstr "Der Pfad %s ist zu lang." -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (includes)" +msgid "Unpacking %s more than once" +msgstr "%s mehr als einmal entpackt" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaxfehler %s:%u: Eingefügt von hier" +msgid "The directory %s is diverted" +msgstr "Das Verzeichnis %s ist umgeleitet." -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Schreibversuch vom Paket auf das Umleitungsziel %s/%s" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Der Umleitungspfad ist zu lang." + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Syntaxfehler %s:%u: Löschdirektiven benötigen einen Optionsbaum als Argument" +msgid "Failed to stat %s" +msgstr "%s mit »stat« abfragen fehlgeschlagen" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn am Dateiende" +msgid "Failed to rename %s to %s" +msgstr "%s konnte nicht in %s umbenannt werden." -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "Kein Schlüsselring in %s installiert" +msgid "The directory %s is being replaced by a non-directory" +msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt." -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Knoten konnte nicht in seinem Hash gefunden werden." + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Der Pfad ist zu lang." + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Befehlszeilenoption »%c« [aus %s] ist nicht bekannt." +msgid "Overwrite package match with no version for %s" +msgstr "Pakettreffer ohne Version für %s wird überschrieben." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Befehlszeilenoption %s konnte nicht ausgewertet werden." +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-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Befehlszeilenoption %s ist nicht Bool'sch." +msgid "Unable to stat %s" +msgstr "%s mit »stat« abfragen nicht möglich" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Option %s erfordert ein Argument." +msgid "Failed to write file %s" +msgstr "Datei %s konnte nicht geschrieben werden." -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Option %s: Konfigurationswertspezifikation benötigt ein »=<Wert>«." +msgid "Failed to close file %s" +msgstr "Datei %s konnte nicht geschlossen werden." -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht »%s«." +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dies ist kein gültiges DEB-Archiv, da es »%s« nicht enthält." -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Option »%s« ist zu lang." +msgid "Internal error, could not locate member %s" +msgstr "Interner Fehler, Bestandteil %s konnte nicht gefunden werden" -# Check for boolean; -1 is unspecified, 0 is yes 1 is no -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Auswerten der »control«-Datei nicht möglich" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ungültige Archiv-Signatur" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Der Sinn von »%s« ist nicht klar, versuchen Sie »true« oder »false«." +msgid "Invalid archive member header %s" +msgstr "Ungültige Archivbestandteil-Kopfzeile %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ungültige Archivdatei-Kopfzeilen" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archiv ist zu kurz." + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Archiv-Kopfzeilen konnten nicht gelesen werden." + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Pipes (Weiterleitungen) konnten nicht erzeugt werden." + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "gzip konnte nicht ausgeführt werden." + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Beschädigtes Archiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv beschädigt" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Ungültige Operation %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Unbekannter Tar-Kopfzeilen-Typ %u, Bestandteil %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3681,7 +3685,7 @@ msgstr "Lesevorgang während der MD5-Berechnung fehlgeschlagen" msgid "Problem unlinking %s" msgstr "Problem beim Entfernen (unlink) von %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3735,6 +3739,10 @@ msgstr "" " -c=? Diese Konfigurationsdatei lesen\n" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Interner Fehler, AllUpgrade hat etwas beschädigt." + #~ msgid "%s not a valid DEB package." #~ msgstr "%s ist kein gültiges DEB-Paket." diff --git a/po/dz.po b/po/dz.po index a9df474fa..c2d0f393a 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering <gasepkuenden2k3@hotmail.com>\n" "Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n" @@ -19,3154 +19,3158 @@ msgstr "" "X-Poedit-Country: Bhutan\n" "X-Poedit-SourceCharset: utf-8\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "ཐུམ་སྒྲིལ་ %s ཐོན་རིམ་ %s ལུ་ ཌེཔ་མ་ཚང་ཅིག་འདུག:\n" +msgid "Unable to read %s" +msgstr "%s་འདི་ལུ་ལྷག་མ་ཚུགས།" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགས།" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s་ ངོ་བཤུས་འབད་མ་ཚུགས།" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr "སྤྱིར་བཏང་ཐུམ་སྒྲིལ་ཚུ།" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་གཙང་མ་ཚུ:" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་རྐྱང་པ་ཚུ:" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སྐྱོར་མ་འབད་བས།" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་སླ་བསྲེ་ཡོད་མི་ཚུ:" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གཏན་འབེབས་བཟོ་མི་ཚུགས་པས།" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr "བརླག་སྟོར་ཞུགས་པ:" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་ཡོད།\n" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i་མཐུན་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i་དྲན་ཐོ་ཚུ་བྲིས་བཞག་ཡོདཔ་ཨིན།\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "རྟེན་འབྲེལ་བསྡོམས:" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་ %iམཐུན་སྒྲིག་མེད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་" +"ཡོདཔ་ཨིན།\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "ཡོངས་བསྡོམས་ཀྱིས་ས་ཁྲ་བཟོ་བ་ཚུ་བྱིནམ་ཨིན:" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "ཐབས་ལམ་འདྲེན་བྱེད་%s་འདི་མ་འཐོབ།" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "སྤུངས་ཡོད་པའི་ཡིག་རྒྱུན་གྱི་བསྡོམས:" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "རྟེན་འབྲེལ་ཐོན་རིམ་བར་སྟོང་གྱི་བསྡོམས:" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "ཐབས་ལམ་ %s འདི་ངེས་བདེན་སྦེ་འགོ་མ་བཙུགས་འབད།" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "བར་སྟོང་ལྷུག་ལྷུག་གི་བསྡོམས:" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "ཁ་ཡིག་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་། '%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབ།་" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "གི་དོན་ལུ་རྩིས་ཐོ་བཏོན་ཡོད་པའི་བར་སྟོང:" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་ཡང་ན་གནས་ཚད་ཡིག་སྣོད་ཚུ་ མིང་དཔྱད་ཡང་ན་ཁ་ཕྱེ་མ་ཚུགས།" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "ཐུམ་སྒྲིལ་ཡིག་སྣོད་ %sའདི་མཉམ་འབྱུང་གི་ཕྱི་ཁར་ཨིན་པས།" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "འ་ནི་དཀའ་ངལ་འདི་ཚུ་སེལ་ནིའི་ལུ་ ཁྱོད་ཀྱི་ apt-get update་དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "ཐུམ་སྒྲིལ་ཚུ་མ་ཐོབ།" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "འབྱུང་ཁུངས་ཚུ་ཀྱི་ཐོ་ཡིག་དེ་ལྷག་མི་ཚུགས་པས།" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "ཁྱོད་ཀྱིས་ཏག་ཏག་སྦེ་དཔེ་གཞི་གཅིག་བྱིན་དགོ" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་སྟོངམ།" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "ཐུམ་སྒྲིས་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ མི་མཐུན་པའི་འཐོན་རིམ་ཅིག་ཨིན་པས།" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "%sཐུམ་སྒྲིལ་འདི་ག་ཡོད་ཟཚོལ་མ་ཐོབ།" +msgid "This APT does not support the versioning system '%s'" +msgstr "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s'འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་དེ་ལུ་རྒྱབ་སྐྱོར་མི་འབད་བས།" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "ཐུམ་སྒྲིལ་གྱི་ཡིག་སྣོད:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདཝ་ཨིནཔས།" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་ཁར་ཨིན་པས་ ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པས།" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "རྟེནམ་ཨིན།" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "ཁབ་གཟེར་བཏབ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིན།" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(མ་ཐོབ།)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "བསམ་འཆར་བཀོདཔ་ཨིན།" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr "གཞི་བཙུགས་འབད་ཡོདཔ།" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "འོས་སྦྱོར་འབདཝ་ཨིན།" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr "མི་ངོ:" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "མི་མཐུནམ་ཨིན།" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ཅི་མེད།)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "ཚབ་བཙུགསཔ་ཨིན།" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr "ཐུམ་སྒྲིལ་གྱི་ཁབ་གཟེར:" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "ཕན་མེདཔ་བཟོཝ་ཨིན།" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s་གི་དོན་ལུ་%s %sགུར་ཕྱོགས་སྒྲིག་འབད་ཡོད་པའི་%s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"ལག་ལེན།: apt-cache [options] command\n" -" apt-cache [options] add file1 [file2 ...]\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -" apt-cacheའདི་གནས་རིམ་དམའ་དྲག་གི་ལག་ཆས་ APT's binary\n" -"་ འདྲ་མཛོད་ཡིག་སྣོད་གཡོག་བཀོལ་དོན་ལུ་ལག་ལེན་འཐབ་ནི་དང་་དེ་ཚུ་ནང་ལས་བརྡ་དོན་འདྲི་དཔྱད་འབད་ནིའི་དོན་" -"ལུ་ཨིན།\n" -"cache files, and query information from them\n" -"\n" -"བརྡ་བཀོད:\n" -" add -འདི་གིས་ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་འབྱུང་ཁུངས་འདྲ་མཛོད་ལུ་ཁ་སྐོང་རྐྱབས་ཨིན།\n" -" gencaches -འདི་གིས་ཐུམ་སྒྲིལ་དང་འབྱུང་ཁུངས་འདྲ་མཛོད་གཉིས་ཆ་རང་བཟོ་བརྩིགས་འབདཝ་ཨིན།\n" -" showpkg -འད་གིས་་ཐུམ་སྒྲིལ་རྐྱང་པ་ཅིག་གི་དོན་ལུ་སྤྱིར་བཏང་བརྡ་དོན་དུམ་གྲ་ཅིག་སྟོནམ་ཨིན།\n" -" showsrc - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་དྲན་ཐོ་ཚུ་སྟོནམ་ཨིན།\n" -" stats -འདི་གིས་ གཞི་རིམ་ཚད་རྩིས་དུམ་གྲ་རེ་སྟོནམ་ཨིན།\n" -" dump -འདི་གི་ཡིག་སྣོད་ཧྲིལ་བུ་མདོར་བསྡུས་རྣམཔ་་ཅིག་ནང་སྟོནམ་ཨིན།\n" -" dumpavail -འདི་གིས་ཨེསི་ཊི་ཌི་ཕྱི་ཁར་ལུ་ འཐོབ་ཚུགས་པའི་ཡིག་སྣོད་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན།\n" -" unmet - འདི་གིས་མ་ཚང་བའི་ རྟེན་འབྲེལ་ཚུ་སྟོནམ་ཨིན།\n" -" search -འདི་གིས་ རི་ཇེགསི་དཔེ་གཞི་ཅིག་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཐོ་ཡིག་དེ་འཚོལ་ཞིབ་འབདཝ་ཨིན།\n" -" show - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ ལྷག་བཏུབ་པའི་དྲན་ཐོ་ཅིག་སྟོནམ་ཨིན།\n" -" depends - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ རགས་པ་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་ཅིག་ སྟོནམ་ཨིན།\n" -" rdepends - འདི་གིས་ ཐུམ་སྒྲིལ་ཅིག་གི་དོན་ལུ་ རིམ་ལོག་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་དེ་སྟོནམ་ཨིན།\n" -" pkgnames - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་ཆ་མཉམ་གི་མིང་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན།\n" -" dotty - འདི་གིས་ཚད་ཁྲམ་ཝིསི་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་ བཟོ་བཏོན་འབདཝ་ཨིན།\n" -" xvcg - འདི་གིས་ ཨེགསི་ཝི་སི་ཇི་ གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་བཟོ་བཏོད་འབདཝ་ཨིན།\n" -" policy - འདི་གིས་ སྲིད་བྱུས་སྒྲིག་སྟངས་ཚུ་སྟོནམ་ཨིན།\n" -"\n" -"གདམ་ཁ་ཚུ་:\n" -" -h འདི་གིས་ཚིག་ཡིག་ལུ་ཆ་རོགས་འབདཝ་ཨིན།.\n" -" -p=? འདི་འབྱུང་ཁུངས་འའདྲ་མཛོད་ཨིན།.\n" -" -s=? འདི་འབྱུང་ཁུངས་འདྲ་མཛོད་ཨིན།.\n" -" -q འདི་གིས་ ཡར་འཕེལ་བརྡ་སྟོན་པ་འདི་ལྕོགས་མིན་བཟོཝ་ཨིན།.\n" -" -i འདི་གིས་ མ་ཚང་པའི་བརྡ་བཀོད་ཚུ་གི་དོན་ལུ་ གལ་ཅན་གྱི་ཌེཔསི་རྐྱངམ་ཅིག་སྟོན།.\n" -" -c=? འདི་གིས་ འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།.\n" -" -o=? འདི་གིས་ མཐུན་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་ཁ་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་ eg -o dir::" -"cache=/tmp\n" -" ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་ཐོག་ཤོག་ལེབ་ཚུ་བལྟ།.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "གལ་ཅན།" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "ཌིསིཀ་འདི་གི་དོན་ལུ་མིང་ཅིག་བླིན་གནང་ དཔེར་ན་ 'Debian 2.1r1 Disk 1'བཟུམ།" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "དགོས་མཁོ་ཡོདཔ།" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "ཚད་ལྡན།" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "གདམ་ཁ་ཅན།" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ཐེབས།" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "ཁྱོད་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌི་ལྷག་ལུས་ཡོད་མི་གི་དོན་ལུ་འ་ནི་ལས་སྦྱོར་དེ་ཡང་བསྐྱར་འབད།" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "སྒྲུབས་རྟགས་ཚུ་ཟུང་ནང་མིན་འདུག" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s" -#: cmdline/apt-config.cc:89 -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 "" -"ལག་ལེན:apt-config [གདམ་ཁ་ཚུ་] བརྡ་བཀོད།\n" -"\n" -"apt-config་འདི་APT config་ཡིག་སྣོད་ལྷག་ནིའི་དོན་ལུ་འཇམ་སམ་ལག་ཆས་ཅིག་ཨིན།\n" -"\n" -"བརྡ་བཀོད་ཚུ:\n" -" shell - ཤལ་གྱི་ཐབས་ལམ།\n" -" dump - འདི་གིས་རིམ་སྒྲིག་གི་ཐབས་ལམ་འདི་སྟོནམ་ཨིན།\n" -"\n" -"གདམ་ཁ་ཚུ:\n" -" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n" -" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n" -" -o=? མཐུན་སྒྲིག་གི་རིམ་སྒྲིག་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་བཟུམ།\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "འདྲ་མཛོད་ལུ་མཐུན་འགྱུར་མེན་པའི་འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་ཅིག་འདུག" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐུམ་སྒྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: cmdline/apt-get.cc:423 +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག" + +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't find package %s" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +msgid "Couldn't stat source package list %s" +msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr " %sལུ་འབྲི་མ་ཚུགས།" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "%s (%s -> %s)བསྐྱར་མིང་བཏགས་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s་ནང་བར་སྟོང་" - -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "%s་འབྱུང་ཁུངས་ལེན།\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འཐོབ་མི་ཚུགས་པས:\n" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འཐུས་ཤོར་བྱུང་ནུག" +#: apt-pkg/acquire-item.cc:1859 +#, 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་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ " +"འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེན།)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"ཐུམ་སྒྲིལ་ ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་ཐུམ་སྒྲིལ་གྱི་དོན་ལུ་ས་སྒོ།" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།" +msgid "Vendor block %s contains no fingerprint" +msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" +msgid "Archives directory %spartial is missing." +msgstr "ཡིག་མཛོད་སྣོད་ཐོ་ %s་ ཆ་ཤས་འདི་བརླག་སྟོར་ཞུགས་ཏེ་འདུག" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོ།)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"ཟུར་ཐོ་ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་" +"རྙིངམ་འདི་ཚུ་ལག་ལེན་འཐབ་ནུག" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"ཁྱོད་རའི་sources.listགི་ཐོ་ཡིག་ནང་ལུ་ཁྱོད་ཀྱི་ 'འབྱུང་ཁུངས་' ཡུ་ཨར་ཨའི་ཚུ་་ལ་ལུ་ཅིག་བཙུགས་དགོ" + +#: apt-pkg/policy.cc:83 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་" -"སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པས།" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་ཐོ་ ཐུམ་སྒྲིལ་མགོ་ཡིག་མིན་འདུག" + +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགས།" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བས།" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སྐོང་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་ཐུམ་སྒརིལ་%s་གི་འཐོན་རིམ་" -"ཚུ་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་འཐོན་རིམ་དགོས་མཁོ་ཚུ་གི་རེ་བ་དོ་སྐོང་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" +"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 "" +"མི་མཐུན་/སྔོན་རྟེན་འཕྲལ་བཀོལ་ལས་བརྟེན་ འ་ནི་གཞི་བཙུགས་གཡོག་བཀོལ་འདི་ལུ་ མེད་དུ་མི་རུང་བའི་%sཐུམ་" +"སྒྲིལ་ གནས་སྐབས་ཀྱི་རྩ་བསྐྲད་གཏང་ནི་འདི་དགོས་མཁོ་ཡོདཔ་ཨིན། འདི་འཕྲལ་འཕྲལ་རང་བྱང་ཉེས་ཅིག་ཨིན་པས་ " +"འདི་འབདཝ་ད་ཁྱོད་ཀྱི་ཐད་རི་འབའ་རི་འབད་དགོཔ་ཨིན་པ་ཅིན་ APT::Force-LoopBreak གདམ་ཁ་འདི་ཤུགས་" +"ལྡན་བཟོ།" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འཐུས་ཤོར་བྱུང་ནུག" +msgid "Line %u too long in source list %s." +msgstr "གྲལ་ཐིག་%u་འདི་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..." + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པས།" +msgid "Using CD-ROM mount point %s\n" +msgstr " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "ཌིསིཀ་གི་དོན་ལུ་བསྒུག་དོ...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s)་ལུ་མཐུད་དོ།" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "རྒྱབ་སྐྱོར་འབད་ཡོད་པའི་ཚད་གཞི་ཚུ:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "ངོས་འཛིན་འབད་དོ..." -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་གི་དོན་ལུ་ ཌིསིཀ་ཞིབ་ལྟ་འབད་དོ...\n" + +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format 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 "" -"ལག་ལེན་:apt-get [options] command\n" -"apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get འདི་ཐུམ་སྒྲིལ་ཚུ་ཕབ་ལེན་འབད་ནི་དང་\n" -"གཞི་བཙུགས་འབད་ནིའི་དོན་ལུ་ འཇམ་སམ་བརྡ་བཀོད་གྲལ་ཐིག་གི་ངོས་འདྲ་བ་ཅིག་ཨིན། མང་ཤོས་རང་་སྦེ་རང་" -"ལག་ལེན་འཐབ་ཡོད་པའི་བརྡ་བཀོད་ཚུ་\n" -" དུས་མཐུན་དང་གཞི་བཙུགས་འབད་ནི་དེ་ཨིན།\n" -"\n" -"བརྡ་བཀོད་ཚུ་:\n" -" update - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་གི་ཐོ་ཡིག་གསརཔ་ཚུ་སླར་འདྲེན་འབདཝ་ཨིན།\n" -" upgrade - འདི་གིས་ ཡར་བསྐྱེད་ཀྱི་ལཱ་འགན་ཅིག་འགྲུབ་ཨིན།\n" -" install - འདི་གིས་ ཐུམ་སྒྲིལ་(pkg is libc6 not libc6.deb)གསརཔ་་ཚུ་གཞི་བཙུགས་འབདཝ་" -"ཨིན།\n" -" remove -འདི་གིས་ ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏངམ་ཨིན།\n" -" source - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་ཡིག་མཛོད་ཚུ་ཕབ་ལེན་འབདཝ་ཨིན།\n" -" build-dep - འདི་གིས་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཚུ་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་ཚུ་རིམ་སྒྲིག་འབདཝ་" -"ཨིན།\n" -" dist-upgrade - འདི་གིས་ བགོ་བཀྲམ་འདི་ཡར་བསྐྱེད་འབདཝ་ཨིན། apt-get(8)ལུ་བལྟ།\n" -" dselect-upgrade - འདི་གིས་ སེལ་འཐུ་བཤོལ་གྱི་ སེལ་འཐུ་ཚུ་འབདཝ་ཨིན།\n" -" clean - འདི་གིས་ ཕབ་ལེན་འབད་ཡོད་པའི་ཡིག་མཛོད་ཀྱི་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n" -" autoclean -འདི་གིས་ ཕབ་ལེན་འབད་འབདཝ་རྙིངམ་གྱི་ཡིག་མཛོད་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n" -" check - ཆད་པ་འགྱོ་འགྱོ་བའི་རྟེན་འབྲེལ་ཚུ་མེདཔ་སྦེ་བདེན་སྦྱོར་འབདཝ་ཨིན།\n" -"\n" -"གདམ་ཁ་ཚུ་:\n" -" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n" -" -q དྲན་དེབ་འབད་བཏུབ་པའི་ཨའུཊི་པུཊི་ -ཡར་འཕེལ་གྱི་བརྡ་སྟོན་མིན་འདུག\n" -" -qq འཛོལ་བ་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་མ་གཏོགས་ཨའུཊི་པུཊི་མིན་འདུག\n" -" -d ཕབ་ལེན་རྐྱངམ་ཅིག་ཨིན་- གཞི་བཙུགས་ཡང་ན་ཡིག་མཛོད་ཚུ་སྦུང་ཚན་བཟོ་བཤོལ་མ་འབད།\n" -" -s བྱ་བ་མིན་འདུག གོ་རིམ་མཚུངས་བཟོ་གི་ལས་འགན་འགྲུབ།\n" -" -y འདྲི་དཔྱད་གེ་རང་ལུ་ཨིནམ་སྦེ་ཚོད་དཔག་བཞིནམ་ལས་ནུས་སྤེལ་མ་འབད།\n" -" -f ཆིག་སྒྲིལ་ཞིབ་དཔྱད་འདི་འཐུས་ཤོར་བྱུང་པ་ཅིན་ འཕྲོ་མཐུད་འབད་ནི་ལུ་དཔའ་བཅམ།\n" -" -m ཡིག་མཛོད་འདི་ཚུ་ག་ཡོད་འཚོལ་མ་ཐོབ་པ་ཅིན་འཕྲོ་མཐུད་ནི་ལུ་དཔའ་བཅམ།\n" -" -u ཡར་བསྐྱེད་བཟོ་ཡོད་པའི་ཐུམ་སྒྲིལ་འདི་ཡང་་སྟོན།\n" -" -b འདི་ལེན་ཚར་བའི་ཤུལ་ལས འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་འདི་བཟོ་བརྩིགས་འབད།\n" -" -V བརྡ་དོན་ལེ་ཤཱ་གི་འཐོན་རིམ་ཨང་གྲངས་ཚུ་སྟོན།\n" -" -c=? འ་ནི་རིམ་སྒྲིག་གི་ཡིག་སྣོད་འདི་ལྷག\n" -" -o=? མཐུན་སྒྲིག་གདམ་ཁ་གི་རིམ་སྒྲིག་ཅིག་གཞི་བཙུགས་འབད་ དཔེན་ན་-o dir::cache=/tmp\n" -"བརྡ་དོན་དང་གདམ་ཁ་ཚུ་ཧེང་བཀལ་གི་དོན་ལུ་ apt-get(8)་ sources.list(5) དང་apt." -"conf(5)ལག་ཐོག་\n" -"ཤོག་ལེབ་ཚུ་ལུ་བལྟ།\n" -" འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོད།\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "%i་ཐུམ་སྒྲིལ་གྱི་ཟུར་ཐོ་ཚུ་ཐོབ་ཅི་ %i་འབྱུང་ཁུངས་ཟུར་ཐོ་ཚུ་དང་ %iམིང་རྟགས་ཚུ།\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" - -#: cmdline/apt-mark.cc:241 +#: apt-pkg/cdrom.cc:771 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" +msgid "Found label '%s'\n" +msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད།\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདཝ་ད་ཕར་མིན་འདུག" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིན།\n" +"'%s'\n" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "ཐུམ་སྒྲིལ་གྱིཐོ་ཡིག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ..." -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གསརཔ་ཅིག་འབྲི་དོ།\n" -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" +"མ་ཐོབ།" -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "སི་ཌི་རོམ་གནད་སྡུད་གཞི་རྟེན་%s་འདི་ལྷག་མ་ཚུགས།" - -#: methods/cdrom.cc:212 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"འ་ནི་སི་ཌི་-རོམ་འདི་ཨེ་པི་ཊི་་གིས་ ངོས་འཛིན་འབད་ཚུགསཔ་སྦེ་བཟོ་ནིའི་་དོན་ལུ་ ཨེ་པི་ཊི་-སི་ཌི་རོམ་ལག་ལེན་" -"འཐབ་གནང། apt-get་དུས་མཐུན་བཟོ་ནི་དེ་ སི་ཌི་-རོམས་གསརཔ་ཁ་སྐོང་རྐྱབ་ནི་ལུ་ལག་ལེན་འཐབ་མི་བཏུབ།" +"འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མཐུན་བཟོཝ་ཨིན འ་ནི་ཐུམ་" +"སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "སི་དི་-རོམ་ཕྱི་འགྱུར།" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"%s་ནང་་སི་ཌི་-རོམ་འདི་བརྩེགས་བཤོལ་འབད་མ་ཚུགས་ འདི་ད་ལྟོ་ཡང་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་འོང་ནི་མས།" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "རྟེན་འབྲེལ་གྱི་རྩ་འབྲེལ་བཟོ་བརྩིགས་འབད་དོ།" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "ཌིཀསི་དེ་འཚོལ་མ་ཐོབ།" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "མི་ངོ་འཐོན་རིམཚུ།" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "ཡིག་སྣོད་འཚོལ་མ་ཐོབ།" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "བརྟེན་པའི་བཟོ་བཏོན།" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "ཆུ་ཚོད་ལེགས་བཅོས་གཞི་སྒྲིག་འབཐ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "ཡུ་ཨར་ཨེལ་ ནུས་མེད་ ཉེ་གནས་ ཡུ་ཨར་ཨེལ་ཨེསི་འདི་གིས་//་དང་གཅིག་ཁར་འགོ་བཙུགས་ནི་མི་འོང་།" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "ནང་བསྐྱོད་འབད་དོ།" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "དོ་བཉམ་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "%s (༢་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "ཉེ་གནས་མིང་འདི་གཏན་འབེེབས་བཟོ་མ་ཚུགས།" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "སར་བར་འདི་གིས་ མཐུད་ལམ་འདི་ངོས་ལེན་འབད་མ་བཏུབ་པར་སླབ་མས: %s" +msgid "Version '%s' for '%s' was not found" +msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "USER failed, server said: %s" -msgstr "ལག་ལེན་པ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" +msgid "Unable to locate package %s" +msgstr "%sཐུམ་སྒྲིལ་འདི་ག་ཡོད་ཟཚོལ་མ་ཐོབ།" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" + +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" + +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "PASS failed, server said: %s" -msgstr "རྩི་སྤྲོད་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:252 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"པོརོ་སི་སར་བར་ཅིག་གསལ་བཀོད་འབད་ཡོད་འདི་འབདཝ་ད་ ནང་བསྐྱོད་ཡིག་ཚུགས་མིན་འདུག་ Acquire::ftp::" -"ProxyLoginའདི་སྟོངམ་ཨིན་པས།" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "ནང་བསྐྱོད་ཡིག་ཚུགས་ བརྡ་བཀོད་'%s'་འདི་འཐོས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས:%s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "ཡིག་དཔར་རྐྱབ་མ་བཏུབ་སར་བར་གྱིས་སླབ་མས། %s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "མཐུད་ལམ་ངལ་མཚམས" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "སར་བར་གྱིས་མཐུད་ལམ་འདི་ཁ་བསྡམས་ཏེ་ཡོདཔ་ཨིན།" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "འཛོལ་བ་ལྷབ།" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "ལན་གྱིས་ གནད་ཁོངས་གུར་ལས་ ལུད་སོང་སྟེ་ཡོདཔ་ཨིན།" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "གནད་སྤེལ་ལམ་ལུགས་ ངན་ཅན།" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "%s་ཁ་ཕྱོགས་ཡིག་སྣོད་ནང་ནུས་མེད་གྲལ་ཐིག" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "འཛོལ་བ་འབྲི།" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས་པར་ཡོདཔ་ཨིན།" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "གནད་སྡུད་སོ་ཀེཊི་མཐུད་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མཐུད་ལམ་ངལ་མཚམས།" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མཐུད་མ་ཚུགས།" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགས།" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "སོ་ཀེཊི་ཅིག་བསྡམས་མ་ཚུགས།" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "སོ་ཀེཊི་གུར་ཉེན་མ་ཚུགས།" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu འབྱུང་ཁུངས་ཐོ་ཡིག་ %s (ཡུ་ཨར་ཨའི་)གི་ནང་ན།" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "སོ་ཀེཊི་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བཏང་མ་ཚུགས།" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "མ་ཤེས་པའི་ཁ་བྱང་གི་རིགས་ཚན་%u (AF_*)" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(ཡང་དག་ dist)གི་ནང་ན།" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "ཨི་པི་ཨར་ཊི་ འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "གནད་སྡུད་སོ་ཀེཊི་ མཐུད་ནི་ངལ་མཚམས་བྱུང་ནུག" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s་ཁ་ཕྱེ་དོ།" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "མཐུད་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགས།" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (དབྱེ་བ)་ནང་ན།" + +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" + +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" + +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལ།" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s་རིམ་སྒྲིག་འབད་དོ།" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "ཡིག་སྣོད་ལེན་མ་ཚུགས་ སར་བར་'%s'གིས་སླབ་མས" +msgid "Removing %s" +msgstr "%s་རྩ་བསྐྲད་གཏང་དོ།" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "གནད་སྡུད་སོ་ཀེཊི་ངལ་མཚམས།" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "གནད་སྡུད་གནས་སོར་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མས།" +msgid "Noting disappearance of %s" +msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "འདྲི་དཔྱད།" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "%s (%s)་ལུ་མཐུད་དོ།" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Preparing %s" +msgstr "%s་ གྲ་སྒྲིག་འབད་དོ།" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s (f=%u t=%u p=%u)གི་དོན་ལུ་སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས།" +msgid "Unpacking %s" +msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོ།" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s (%s)ལུ་མཐུད་ལམ་དེ་འགོ་འབྱེད་འབད་མ་ཚུགས།" +msgid "Preparing to configure %s" +msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོ།" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།" +msgid "Installed %s" +msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས།" +msgid "Preparing for removal of %s" +msgstr "%s་ རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Connecting to %s" -msgstr "%s་ལུ་མཐུད་དོ།" +msgid "Removed %s" +msgstr "རྩ་བསྐྲད་བཏང་ཡོད་པའི་%s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not resolve '%s'" -msgstr "'%s'མོས་མཐུན་འབད་མ་ཚུགས།" +msgid "Preparing to completely remove %s" +msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" +msgid "Completely removed %s" +msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།" +msgid "Can not write log (%s)" +msgstr " %sལུ་འབྲི་མ་ཚུགས།" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -"ནང་འཁོད་འཛོལ་བ: མིང་རྟགས་འདི་ལེགས་ཤོམ་ཅིག་འདུག་ འདི་འབདཝ་ད་མཛུབ་རྗེས་ལྡེ་མིག་དེ་གཏན་འབེབས་བཟོ་" -"མ་ཚུགས?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "ཉུང་མཐའ་རང་ནུས་མེད་ཀྱི་མིང་རྟགས་ཅིག་གདོང་ཐུག་བྱུང་སྟེ་ཡོདཔ་ཨིན།" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -"མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འཐབ་མ་ཚུགས། (gpgv་དེ་ཁཞི་བཙུགས་འབད་ཡོདཔ་ཨིན་ན།?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Waited for %s but it wasn't there" +msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདཝ་ད་ཕར་མིན་འདུག" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv་ལག་ལེན་འཐབ་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་།" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "འོག་གི་མིང་རྟགས་ཚུ་ནུས་མེད་ཨིན་པས།:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"འོག་གི་མིང་རྟགས་ཚུ་བདེན་སྦྱོར་་འབད་མ་ཚུགས་ག་ཅི་སྦེ་ཟེར་བ་ཅིན་མི་དམང་ལྡེ་མིག་དེ་འཐོབ་མི་ཚུགས་པས:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ། ཐག་རིང་མཇུག་གི་མཐུད་ལམ་དེ་ཁ་བསྡམས།" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ།" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "སེལ་འཐུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "མཐུད་ལམ་ངལ་མཚམས་འབད་ཡོད།" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "མགོ་ཡིག་ཚུ་གི་དོན་ལུ་བསྒ྄ག་དོ།" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "མགོ་ཡིག་གི་གྲལ་ཐིག་བྱང་ཉེས།" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-ཁྱབ་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ཁྱབ་ཚད་ཀྱི་རྒྱབ་སྐྱོར་དེ་ཆད་པ་བཟོ་བཏང་ནུག" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "བཐུད་ལམ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "སེལ་འཐུ་%s ་མ་འཐོབ།" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "ནང་འཁོད་འཛོལ་བ།" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "%s ལྷག་ནི་རྐྱངམ་ཅིག་འབད་མི་ལྡེ་མིག་ཡིག་སྣོད་འདི་གི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "ལྡེ་མིག་རྐྱབས་ཡོད་པའི་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསྐྱེད་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་ཐལ་ཡོད།" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "འབད་ཚར་ཡི།" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "%sལྡེ་མིག་རྐྱབ་ནི་ལེན་མ་ཚུགས།" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོ།" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "ཡར་བསྐྱེད་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པས།" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr "འབད་ཚར་ཡི།" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་ཐོན་ཡོདཔ་ཨིན།" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "འཛོལ་བ་འབྲི།" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ། -f ལག་ལེན་འཐབ་སྟེ་འབད་རྩོལ་བསྐྱེད།" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +msgid "Could not open file descriptor %d" +msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "འཛོལ་བ་ལྷབ།" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདཝ་ད་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབཝ་ད་འབད་མ་ཚུགས།" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "འདི་འབདཝ་ད་%s་འདི་གཞི་བཙུགས་འབད་ཡོད།" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "ཡིག་སྣོད་འདི་འབྲེལལམ་མེདཔ་བཟོ་བའི་བསྒང་དཀའ་ངལ།" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is to be installed" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +msgid "%c%s... Error!" +msgstr "%c%s... འཛོལ་བ་!" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "འདི་འབདཝ་ད་%s་འདི་གཟི་བཙུགས་འབད་མི་བཏུབ་པས།" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... འབད་ཚར་ཡོད།" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "འདི་འབདཝ་ད་ འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན་པས།" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... འབད་ཚར་ཡོད།" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པས།" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "ཡིག་སྣོད་སྟོངམ་འདི་mmap་འབད་མ་ཚུགས།" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr "ཡང་ན།" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་རྩ བསྐྲད་གཏང་འོང་:" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "%s་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ལོག་སྟེ་རང་བཞག་ནུག:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ཡར་བསྐྱེད་འབད་འོང་:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "འོག་གི་ཐུམ་སྒྲལ་འདི་ཚུ་མར་ཕབ་འབད་འོང་:" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "འོག་གི་འཆང་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:" +#: 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 "" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s( %s་གིས་སྦེ)" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"ཉེན་བརྡ:འོག་གི་ཉོ་མཁོ་བའི་ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏང་འོང་།\n" -"ཁྱོད་ཀྱིས་ཁྱོད་རང་ག་ཅི་འབདཝ་ཨིན་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་།!" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu་ཡར་བསྐྱེད་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོད།" +msgid "Unable to stat the mount point %s" +msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདི་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོད།" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "སི་ཌི་རོམ་འདི་ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu downgraded, " -msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོད།" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "རྩ་བསྐྲད་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསྐྱེད་མ་འབད་བས།\n" +msgid "Opening configuration file %s" +msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་དོ།" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསྐྲད་མ་གཏང་པས།\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "ཝའི།" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "་ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: སྡེབ་ཚན་གྱིས་མིང་མེད་མི་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཟོ་ཉེས་འགྱུར་བའི་ངོ་རྟགས།" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "Regex compilation error - %s" -msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:གནས་གོང་གི་ཤུལ་ལས་མཁོ་མེད་ཐེབས།" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:འདུ་འཛོམས་འབད་འབདཝ་ལེ་ཤཱ་གྲངས་སུ་བཙུགསཔ་ཨིན།" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Included from here" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་ཏེ་ཡོད།" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: རྒྱབ་སྐྱོར་མ་འབད་བར་ཡོད་པའི་'%s'བཀོད་རྒྱ།" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"ནང་འཁོད་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་ཐུམ་སྒྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་དང་གཅིག་ཁར་བོད་བརྡ་འབད་འདི་" -"ཡོད!" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་བཏང་དགོཔ་འདུག་འདི་འབདགཝ་ད་རྩ་བསྐྲད་གཏང་ནི་འདི་ལྕོགས་མིན་ཐལ་ཏེ་འདུག" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ཡིག་སྣོད་ཀྱི་མཇུག་ལུ་མཁོ་མེད་ཐེབས།" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "ནང་འཁོད་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བས།" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མཐུན་སྒྲིག་མི་འབད་" -"བས།" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གྱི་གདམ་ཁ་'%c'[%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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས། ཡིག་མཛོད་ཚི་གི་%sB་\n" +msgid "Command line option %s is not understood" +msgstr "བ་རྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་ཧ་མ་གོ་བས།" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "ཡིག་མཛོད་ཀྱི་%sB་འདི་ལེན་དགོ་པས།\n" +msgid "Command line option %s is not boolean" +msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་བུ་ལིན་མེན་པས།" -#. 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 -#: apt-private/private-install.cc:166 -#, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "ཁ་སྐོང་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འཐབ་འོང་།\n" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "གདམ་ཁ་%s་ལུ་སྒྲུབ་རྟགས་ཅིག་དགོ་པས།" -#. 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 -#: apt-private/private-install.cc:171 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "གདམ་ཁ་%s:རིམ་སྒྲིག་གི་རྣམ་གྲངས་གསལ་བཀོད་ལུ་ =<val> ་ཅིག་དགོཔ་ཨིན།" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s ནང་ཁྱོད་ལུ་བར་སྟོང་དལཝ་ལངམ་སྦེ་མིན་འདུག" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "གདམ་ཁ་ %s ་ལུ་'%s'་མེན་པར་ ཧྲིལ་ཨང་སྒྲུབ་རྟགས་ཅིག་དགོས་མཁོ་ཡོདཔ་ཨིན" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདཐོག་ལས་ལག་ལེན་འཐབ་སྟེ་ཡོད།" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "གདམ་ཁ་'%s'འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "གལ་ཆུང་རྐྱངམ་ཅིག་ཁསལ་བཀོད་འབད་ནུག་ འདི་འབདཝ་ད་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེན།" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "དྲན་ཤེས་ %s་འདི་ཧ་གོ་མ་ཚུགས་པས་ བདེན་པ་ཡང་ན་རྫུན་པ་ལུ་འབད་རྩོལ་བསྐྱེདཔ།" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" -#: apt-private/private-install.cc:221 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"ཁྱོད་ཀྱི་གནོད་ངན་འབྱུང་ནིའི་ལཱ་ཅི་འབད་ནི་འབད་དོ།\n" -"འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རྐྱབས།\n" -" ?] " +msgid "Package %s version %s has an unmet dep:\n" +msgstr "ཐུམ་སྒྲིལ་ %s ཐོན་རིམ་ %s ལུ་ ཌེཔ་མ་ཚང་ཅིག་འདུག:\n" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "བར་བཤོལ་འབད།" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" -#: apt-private/private-install.cc:242 +#: cmdline/apt-cache.cc:279 #, fuzzy -msgid "Do you want to continue?" -msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་" - -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +msgid "Total package structures: " +msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མཐུན་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-" -"missing་དང་གཅིག་ཁར་འབད་རྩོལ་བསྐྱེད་ནི་ཨིན་ན་?" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr "སྤྱིར་བཏང་ཐུམ་སྒྲིལ་ཚུ།" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སྐྱོར་མི་འབད་བས།" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་གཙང་མ་ཚུ:" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་རྐྱང་པ་ཚུ:" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་སླ་བསྲེ་ཡོད་མི་ཚུ:" -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr "བརླག་སྟོར་ཞུགས་པ:" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "རྟེན་འབྲེལ་བསྡོམས:" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:" -#: apt-private/private-install.cc:505 +#: cmdline/apt-cache.cc:334 #, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" +msgid "Total Desc/File relations: " +msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:" -#: apt-private/private-install.cc:512 -#, fuzzy -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] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "ཡོངས་བསྡོམས་ཀྱིས་ས་ཁྲ་བཟོ་བ་ཚུ་བྱིནམ་ཨིན:" -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "སྤུངས་ཡོད་པའི་ཡིག་རྒྱུན་གྱི་བསྡོམས:" -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "རྟེན་འབྲེལ་ཐོན་རིམ་བར་སྟོང་གྱི་བསྡོམས:" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "བར་སྟོང་ལྷུག་ལྷུག་གི་བསྡོམས:" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།" -"(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "གི་དོན་ལུ་རྩིས་ཐོ་བཏོན་ཡོད་པའི་བར་སྟོང:" -#: apt-private/private-install.cc:628 -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 "" -"ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས། འ་ནི་གི་དོན་དག་དེ་ཁྱོད་ཀྱི་ མི་སྲིད་པའི་དུས་སྐབས་ཅིག་ཞུ་བ་" -"འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" -"འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "ཐུམ་སྒྲིལ་ཡིག་སྣོད་ %sའདི་མཉམ་འབྱུང་གི་ཕྱི་ཁར་ཨིན་པས།" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "ཐུམ་སྒྲིལ་ཚུ་མ་ཐོབ།" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "ཁྱོད་ཀྱིས་ཏག་ཏག་སྦེ་དཔེ་གཞི་གཅིག་བྱིན་དགོ" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "ཐུམ་སྒྲིལ་གྱི་ཡིག་སྣོད:" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" -"འབད་བས།\n" +"འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་ཁར་ཨིན་པས་ ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པས།" -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" -"འབད་བས།\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "ཁབ་གཟེར་བཏབ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(མ་ཐོབ།)" -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr "གཞི་བཙུགས་འབད་ཡོདཔ།" -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr "མི་ངོ:" -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ཅི་མེད།)" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr "ཐུམ་སྒྲིལ་གྱི་ཁབ་གཟེར:" + +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:" -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s་གི་དོན་ལུ་%s %sགུར་ཕྱོགས་སྒྲིག་འབད་ཡོད་པའི་%s %s\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 +#, fuzzy 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!" +"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 "" +"ལག་ལེན།: apt-cache [options] command\n" +" apt-cache [options] add file1 [file2 ...]\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +" apt-cacheའདི་གནས་རིམ་དམའ་དྲག་གི་ལག་ཆས་ APT's binary\n" +"་ འདྲ་མཛོད་ཡིག་སྣོད་གཡོག་བཀོལ་དོན་ལུ་ལག་ལེན་འཐབ་ནི་དང་་དེ་ཚུ་ནང་ལས་བརྡ་དོན་འདྲི་དཔྱད་འབད་ནིའི་དོན་" +"ལུ་ཨིན།\n" +"cache files, and query information from them\n" +"\n" +"བརྡ་བཀོད:\n" +" add -འདི་གིས་ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་འབྱུང་ཁུངས་འདྲ་མཛོད་ལུ་ཁ་སྐོང་རྐྱབས་ཨིན།\n" +" gencaches -འདི་གིས་ཐུམ་སྒྲིལ་དང་འབྱུང་ཁུངས་འདྲ་མཛོད་གཉིས་ཆ་རང་བཟོ་བརྩིགས་འབདཝ་ཨིན།\n" +" showpkg -འད་གིས་་ཐུམ་སྒྲིལ་རྐྱང་པ་ཅིག་གི་དོན་ལུ་སྤྱིར་བཏང་བརྡ་དོན་དུམ་གྲ་ཅིག་སྟོནམ་ཨིན།\n" +" showsrc - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་དྲན་ཐོ་ཚུ་སྟོནམ་ཨིན།\n" +" stats -འདི་གིས་ གཞི་རིམ་ཚད་རྩིས་དུམ་གྲ་རེ་སྟོནམ་ཨིན།\n" +" dump -འདི་གི་ཡིག་སྣོད་ཧྲིལ་བུ་མདོར་བསྡུས་རྣམཔ་་ཅིག་ནང་སྟོནམ་ཨིན།\n" +" dumpavail -འདི་གིས་ཨེསི་ཊི་ཌི་ཕྱི་ཁར་ལུ་ འཐོབ་ཚུགས་པའི་ཡིག་སྣོད་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན།\n" +" unmet - འདི་གིས་མ་ཚང་བའི་ རྟེན་འབྲེལ་ཚུ་སྟོནམ་ཨིན།\n" +" search -འདི་གིས་ རི་ཇེགསི་དཔེ་གཞི་ཅིག་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཐོ་ཡིག་དེ་འཚོལ་ཞིབ་འབདཝ་ཨིན།\n" +" show - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ ལྷག་བཏུབ་པའི་དྲན་ཐོ་ཅིག་སྟོནམ་ཨིན།\n" +" depends - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ རགས་པ་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་ཅིག་ སྟོནམ་ཨིན།\n" +" rdepends - འདི་གིས་ ཐུམ་སྒྲིལ་ཅིག་གི་དོན་ལུ་ རིམ་ལོག་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་དེ་སྟོནམ་ཨིན།\n" +" pkgnames - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་ཆ་མཉམ་གི་མིང་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན།\n" +" dotty - འདི་གིས་ཚད་ཁྲམ་ཝིསི་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་ བཟོ་བཏོན་འབདཝ་ཨིན།\n" +" xvcg - འདི་གིས་ ཨེགསི་ཝི་སི་ཇི་ གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་བཟོ་བཏོད་འབདཝ་ཨིན།\n" +" policy - འདི་གིས་ སྲིད་བྱུས་སྒྲིག་སྟངས་ཚུ་སྟོནམ་ཨིན།\n" +"\n" +"གདམ་ཁ་ཚུ་:\n" +" -h འདི་གིས་ཚིག་ཡིག་ལུ་ཆ་རོགས་འབདཝ་ཨིན།.\n" +" -p=? འདི་འབྱུང་ཁུངས་འའདྲ་མཛོད་ཨིན།.\n" +" -s=? འདི་འབྱུང་ཁུངས་འདྲ་མཛོད་ཨིན།.\n" +" -q འདི་གིས་ ཡར་འཕེལ་བརྡ་སྟོན་པ་འདི་ལྕོགས་མིན་བཟོཝ་ཨིན།.\n" +" -i འདི་གིས་ མ་ཚང་པའི་བརྡ་བཀོད་ཚུ་གི་དོན་ལུ་ གལ་ཅན་གྱི་ཌེཔསི་རྐྱངམ་ཅིག་སྟོན།.\n" +" -c=? འདི་གིས་ འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།.\n" +" -o=? འདི་གིས་ མཐུན་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་ཁ་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་ eg -o dir::" +"cache=/tmp\n" +" ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་ཐོག་ཤོག་ལེབ་ཚུ་བལྟ།.\n" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ཉེན་བརྡ:འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བཏུབ་པས།" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོད།\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགས།" - -#: apt-private/private-download.cc:50 +#: cmdline/apt-cdrom.cc:76 #, fuzzy -msgid "Install these packages without verification?" -msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི་ཐུམ་སྒྲིལ་འདི་ཚུ་གཞི་བཙུགས་འབད་ནི་ཨིན་ན་" +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "ཌིསིཀ་འདི་གི་དོན་ལུ་མིང་ཅིག་བླིན་གནང་ དཔེར་ན་ 'Debian 2.1r1 Disk 1'བཟུམ།" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " +msgid "Failed to mount '%s' to '%s'" msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "ཨེབ།" - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "ལེན:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "ཨེལ་ཇི་ཨེན:" - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "ཨི་ཨར་ཨར།" - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིན།\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "ཁྱོད་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌི་ལྷག་ལུས་ཡོད་མི་གི་དོན་ལུ་འ་ནི་ལས་སྦྱོར་དེ་ཡང་བསྐྱར་འབད།" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [ལཱ་འབད་དོ།]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "སྒྲུབས་རྟགས་ཚུ་ཟུང་ནང་མིན་འདུག" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"བརྡ་ལམ་བསྒྱུར་བཅོས:ཁ་ཡིག་བཀོད་ཡོད་པའི་ཌིསིཀ་འདི་\n" -" '%s'\n" -"འདྲེན་འཕྲུལ་'%s'ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "%s་འདི་ལུ་ལྷག་མ་ཚུགས།" +"ལག་ལེན:apt-config [གདམ་ཁ་ཚུ་] བརྡ་བཀོད།\n" +"\n" +"apt-config་འདི་APT config་ཡིག་སྣོད་ལྷག་ནིའི་དོན་ལུ་འཇམ་སམ་ལག་ཆས་ཅིག་ཨིན།\n" +"\n" +"བརྡ་བཀོད་ཚུ:\n" +" shell - ཤལ་གྱི་ཐབས་ལམ།\n" +" dump - འདི་གིས་རིམ་སྒྲིག་གི་ཐབས་ལམ་འདི་སྟོནམ་ཨིན།\n" +"\n" +"གདམ་ཁ་ཚུ:\n" +" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n" +" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n" +" -o=? མཐུན་སྒྲིག་གི་རིམ་སྒྲིག་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་བཟུམ།\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགས།" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#. 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 "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +msgid "Can not find a package '%s' with release '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:423 #, c-format -msgid "[Mirror: %s]" -msgstr "" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་ཨའི་པི་སི་རྒྱུད་དུང་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "དུས་སུ་མ་འབབ་པ་རང་མཐུད་ལམ་འདི་ག་བསྡམས་ཡོད།" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "སྔོན་སྒྲིག་བྱང་ཉེས་གཞི་སྒྲིག་འབད་དོ་!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་ལོག་ལྡེ་འདི་ཨེབ།" - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "སྦུང་ཚན་བཟོ་བཤོལ་འབད་བའི་བར་ན་ འཛོལ་བ་དག་པ་ཅིག་བྱུང་ནུག་ ང་གི་" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་རིམ་སྒྲིག་འབད་ནི་ཨིན།་འ་ནི་འདི་གིས་ ངོ་བཤུས་རྫུན་མ་" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"ཡང་ན་བརླག་སྟོར་ཞུགས་ཡོད་པའི་རྟེན་འབྲེལ་གི་རྒྱུ་རྐྱེན་ལས་བརྟེན་པའི་འཛོལ་བ་ཚུ་ནང་ལུ་གྲུབ་འབྲས་འཐོན་འོང་། " -"འདི་དེ་བཏུབ་པས་" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"འ་ནི་འཕྲིན་དོན་གྱི་ལྟག་ལས་ཡོད་པའི་འཛོལ་བ་དེ་ཚུ་གལ་ཅན་ཅིག་ཨིན། འདི་ཚུ་གི་དཀའ་ངལ་སེལ་བཞིནམ་ལས་ " -"[I] གཞི་བཙུགས་དེ་ལོག་སྟེ་རང་གཡོག་བཀོལ།" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "ད་ལྟོ་ཡང་འབྲེལ་ལམ་ཡོད་པའི་མཐུད་མཚམས་གུར་བཀོག་བཞག་མཐུད་མཚམས་དེ་བོད་བརྡ་འབད་འདི་ཡོད།" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "དྲྭ་རྟགས་རྒྱུ་རྫས་འདི་ག་ཡོད་འཚོལ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད!" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "ཁ་ཕྱོགས་སྤྲོད་བཞག་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "ཁ་ཕྱོགས་ཁ་སྐོང་རྐྱབ་ནི་ནང་ ནང་འཁོད་ཀྱི་འཛོལ་བ།" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "%s -> %s ་དང་ %s/%s་ཁ་ཕྱོགས་ཅིག་ཚབ་སྲུང་འབད་ནི་ལུ་འབད་རྩོལ་བསྐྱེད་དོ།" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "%s -> %s་ཁ་ཕྱོགས་ཀྱི་ལོག་བལྟབ་ཁ་སྐོང་།" +msgid "Unable to find a source package for %s" +msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s/%s་འདི་ངོ་བཤུས་བཟོ།" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:791 #, c-format -msgid "The path %s is too long" -msgstr "%s་འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་འདུག" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Unpacking %s more than once" -msgstr "སྦུང་ཚན་བཟོ་བཤོལ་%s་གཅིག་ལས་ལྷག་སྟེ་འདུག" +msgid "Skipping already downloaded file '%s'\n" +msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "The directory %s is diverted" -msgstr "སྣོད་ཐོ་%s་འདི་ཁ་ཕྱོགས་སྒྱུར་དེ་ཡོད།" +msgid "Couldn't determine free space in %s" +msgstr "%s་ནང་བར་སྟོང་" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "ཐུམ་སྒྲིལ་འདི་གིས་ག་སྒྱུར་དམིགས་གཏད་%s/%s་ལུ་འབྲི་ནིའི་འབད་རྩོལ་བསྐྱེདཔ་དེ་ཡོད།" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "ཁ་སྒྱུར་འགྲུལ་ལམ་འདི་གནམ་མེད་ས་མེད་རིངམ་ཨིན་པས།" +msgid "You don't have enough free space in %s" +msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#. 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:891 #, c-format -msgid "Failed to stat %s" -msgstr "%s་སིཊེཊི་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. 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:896 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +msgid "Need to get %sB of source archives.\n" +msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "སྣོད་ཡིག་%s་འདི་སྣོད་ཡིག་མེན་མི་ཅིག་གིས་ཚབ་བཙུག་དེ་ཡོདཔ་ཨིན།" +msgid "Fetch source %s\n" +msgstr "%s་འབྱུང་ཁུངས་ལེན།\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "ཁོང་རའི་དྲྭ་རྟགས། (#)རྡོབ་ནང་ལུ་མཐུད་མཚམས་ག་ཡོད་འཚོལ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་ཅིག་ཨིན་པས།" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "%s་གི་དོན་ལུ་ཚབ་སྲུང་འབད་བའི་ཐུམ་སྒྲིལ་དེ་གིས་འཐོན་རིམ་གཅིག་ད་ཡང་མཐུན་སྒྲིག་མི་འབད་བས།" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:962 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "ཐུམ་སྒྲིལ་%s་ནང་ལུ་་ཡིག་སྣོད་%s/%sགིས་གཅིག་ཚབ་སྲུང་འབདཝ་ཨིན།" +msgid "Unpack command '%s' failed.\n" +msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to stat %s" -msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགས།" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Failed to write file %s" -msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +msgid "Build command '%s' failed.\n" +msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འཐུས་ཤོར་བྱུང་ནུག" + +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" + +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Failed to close file %s" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་བསྡམས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "འ་ནི་འདི་ ཌི་ཨི་བི་ཡིག་མཛོད་ནུས་ཅན་ཅིག་མེན་པས་ '%s'འཐུས་མི་བརླག་སྟོར་ཞུགས་དོ།" +msgid "Unable to get build-dependency information for %s" +msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "ནང་འཁོད་འཛོལ་བ་གིས་འཐུས་མི་%sའདི་ག་ཡོད་འཚོལ་མ་འཐོབ།" +msgid "%s has no build depends.\n" +msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "མིང་དཔྱད་འབད་མ་བཏུབ་པའི་ཚད་འཛིན་ཡིག་སྣོད།" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "ནུས་མེད་ཡིག་མཛོད་ཀྱི་མིང་རྟགས།" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "ཡིག་མཛོད་འཐུས་མི་མགོ་ཡིག་ལྷག་ནིའི་འཛོལ་བ།" +#: cmdline/apt-get.cc:1312 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་" +"སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པས།" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1351 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སྐོང་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་ཐུམ་སྒརིལ་%s་གི་འཐོན་རིམ་" +"ཚུ་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་འཐོན་རིམ་དགོས་མཁོ་ཚུ་གི་རེ་བ་དོ་སྐོང་མ་ཚུགས་པས།" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "ཡིག་མཛོད་འདི་གནམ་མེད་ས་མེད་ཐུང་ཀུ་འདུག" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "ཡིག་མཛོད་མགོ་ཡིག་ཚུ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འཐུས་ཤོར་བྱུང་ནུག" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "རྒྱུད་དུང་ཚུ་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པས།" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "ཇི་ཛིཔ་འདི་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "ངན་ཅན་གྱི་ཡིག་མཛོད།" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "%s (%s)་ལུ་མཐུད་དོ།" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "ཊར་ཅེག་སམ་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ ཡིག་མཛོད་ངན་ཅན་བྱུང་ནུག" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "རྒྱབ་སྐྱོར་འབད་ཡོད་པའི་ཚད་གཞི་ཚུ:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "མ་ཤེས་པའི་ ཊཱར་་མགོ་ཡིག་་དབྱེ་བ་ %u་ འཐུས་མི་ %s།" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"ལག་ལེན་:apt-get [options] command\n" +"apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get འདི་ཐུམ་སྒྲིལ་ཚུ་ཕབ་ལེན་འབད་ནི་དང་\n" +"གཞི་བཙུགས་འབད་ནིའི་དོན་ལུ་ འཇམ་སམ་བརྡ་བཀོད་གྲལ་ཐིག་གི་ངོས་འདྲ་བ་ཅིག་ཨིན། མང་ཤོས་རང་་སྦེ་རང་" +"ལག་ལེན་འཐབ་ཡོད་པའི་བརྡ་བཀོད་ཚུ་\n" +" དུས་མཐུན་དང་གཞི་བཙུགས་འབད་ནི་དེ་ཨིན།\n" +"\n" +"བརྡ་བཀོད་ཚུ་:\n" +" update - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་གི་ཐོ་ཡིག་གསརཔ་ཚུ་སླར་འདྲེན་འབདཝ་ཨིན།\n" +" upgrade - འདི་གིས་ ཡར་བསྐྱེད་ཀྱི་ལཱ་འགན་ཅིག་འགྲུབ་ཨིན།\n" +" install - འདི་གིས་ ཐུམ་སྒྲིལ་(pkg is libc6 not libc6.deb)གསརཔ་་ཚུ་གཞི་བཙུགས་འབདཝ་" +"ཨིན།\n" +" remove -འདི་གིས་ ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏངམ་ཨིན།\n" +" source - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་ཡིག་མཛོད་ཚུ་ཕབ་ལེན་འབདཝ་ཨིན།\n" +" build-dep - འདི་གིས་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཚུ་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་ཚུ་རིམ་སྒྲིག་འབདཝ་" +"ཨིན།\n" +" dist-upgrade - འདི་གིས་ བགོ་བཀྲམ་འདི་ཡར་བསྐྱེད་འབདཝ་ཨིན། apt-get(8)ལུ་བལྟ།\n" +" dselect-upgrade - འདི་གིས་ སེལ་འཐུ་བཤོལ་གྱི་ སེལ་འཐུ་ཚུ་འབདཝ་ཨིན།\n" +" clean - འདི་གིས་ ཕབ་ལེན་འབད་ཡོད་པའི་ཡིག་མཛོད་ཀྱི་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n" +" autoclean -འདི་གིས་ ཕབ་ལེན་འབད་འབདཝ་རྙིངམ་གྱི་ཡིག་མཛོད་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n" +" check - ཆད་པ་འགྱོ་འགྱོ་བའི་རྟེན་འབྲེལ་ཚུ་མེདཔ་སྦེ་བདེན་སྦྱོར་འབདཝ་ཨིན།\n" +"\n" +"གདམ་ཁ་ཚུ་:\n" +" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n" +" -q དྲན་དེབ་འབད་བཏུབ་པའི་ཨའུཊི་པུཊི་ -ཡར་འཕེལ་གྱི་བརྡ་སྟོན་མིན་འདུག\n" +" -qq འཛོལ་བ་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་མ་གཏོགས་ཨའུཊི་པུཊི་མིན་འདུག\n" +" -d ཕབ་ལེན་རྐྱངམ་ཅིག་ཨིན་- གཞི་བཙུགས་ཡང་ན་ཡིག་མཛོད་ཚུ་སྦུང་ཚན་བཟོ་བཤོལ་མ་འབད།\n" +" -s བྱ་བ་མིན་འདུག གོ་རིམ་མཚུངས་བཟོ་གི་ལས་འགན་འགྲུབ།\n" +" -y འདྲི་དཔྱད་གེ་རང་ལུ་ཨིནམ་སྦེ་ཚོད་དཔག་བཞིནམ་ལས་ནུས་སྤེལ་མ་འབད།\n" +" -f ཆིག་སྒྲིལ་ཞིབ་དཔྱད་འདི་འཐུས་ཤོར་བྱུང་པ་ཅིན་ འཕྲོ་མཐུད་འབད་ནི་ལུ་དཔའ་བཅམ།\n" +" -m ཡིག་མཛོད་འདི་ཚུ་ག་ཡོད་འཚོལ་མ་ཐོབ་པ་ཅིན་འཕྲོ་མཐུད་ནི་ལུ་དཔའ་བཅམ།\n" +" -u ཡར་བསྐྱེད་བཟོ་ཡོད་པའི་ཐུམ་སྒྲིལ་འདི་ཡང་་སྟོན།\n" +" -b འདི་ལེན་ཚར་བའི་ཤུལ་ལས འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་འདི་བཟོ་བརྩིགས་འབད།\n" +" -V བརྡ་དོན་ལེ་ཤཱ་གི་འཐོན་རིམ་ཨང་གྲངས་ཚུ་སྟོན།\n" +" -c=? འ་ནི་རིམ་སྒྲིག་གི་ཡིག་སྣོད་འདི་ལྷག\n" +" -o=? མཐུན་སྒྲིག་གདམ་ཁ་གི་རིམ་སྒྲིག་ཅིག་གཞི་བཙུགས་འབད་ དཔེན་ན་-o dir::cache=/tmp\n" +"བརྡ་དོན་དང་གདམ་ཁ་ཚུ་ཧེང་བཀལ་གི་དོན་ལུ་ apt-get(8)་ sources.list(5) དང་apt." +"conf(5)ལག་ཐོག་\n" +"ཤོག་ལེབ་ཚུ་ལུ་བལྟ།\n" +" འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོད།\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "%s་ ངོ་བཤུས་འབད་མ་ཚུགས།" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སྐྱོར་མ་འབད་བས།" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གཏན་འབེབས་བཟོ་མི་ཚུགས་པས།" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་ཡོད།\n" - -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i་མཐུན་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i་དྲན་ཐོ་ཚུ་བྲིས་བཞག་ཡོདཔ་ཨིན།\n" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་ %iམཐུན་སྒྲིག་མེད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་" -"ཡོདཔ་ཨིན།\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" +msgid "%s was already set on hold.\n" +msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "ཐབས་ལམ་འདྲེན་བྱེད་%s་འདི་མ་འཐོབ།" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" +msgid "%s set on hold.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "ཐབས་ལམ་ %s འདི་ངེས་བདེན་སྦེ་འགོ་མ་བཙུགས་འབད།" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "ཁ་ཡིག་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་། '%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབ།་" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་ཡང་ན་གནས་ཚད་ཡིག་སྣོད་ཚུ་ མིང་དཔྱད་ཡང་ན་ཁ་ཕྱེ་མ་ཚུགས།" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "འ་ནི་དཀའ་ངལ་འདི་ཚུ་སེལ་ནིའི་ལུ་ ཁྱོད་ཀྱི་ apt-get update་དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "འབྱུང་ཁུངས་ཚུ་ཀྱི་ཐོ་ཡིག་དེ་ལྷག་མི་ཚུགས་པས།" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "སི་ཌི་རོམ་གནད་སྡུད་གཞི་རྟེན་%s་འདི་ལྷག་མ་ཚུགས།" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་སྟོངམ།" +#: 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 "" +"འ་ནི་སི་ཌི་-རོམ་འདི་ཨེ་པི་ཊི་་གིས་ ངོས་འཛིན་འབད་ཚུགསཔ་སྦེ་བཟོ་ནིའི་་དོན་ལུ་ ཨེ་པི་ཊི་-སི་ཌི་རོམ་ལག་ལེན་" +"འཐབ་གནང། apt-get་དུས་མཐུན་བཟོ་ནི་དེ་ སི་ཌི་-རོམས་གསརཔ་ཁ་སྐོང་རྐྱབ་ནི་ལུ་ལག་ལེན་འཐབ་མི་བཏུབ།" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "སི་དི་-རོམ་ཕྱི་འགྱུར།" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "ཐུམ་སྒྲིས་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ མི་མཐུན་པའི་འཐོན་རིམ་ཅིག་ཨིན་པས།" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"%s་ནང་་སི་ཌི་-རོམ་འདི་བརྩེགས་བཤོལ་འབད་མ་ཚུགས་ འདི་ད་ལྟོ་ཡང་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་འོང་ནི་མས།" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "ཌིཀསི་དེ་འཚོལ་མ་ཐོབ།" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s'འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་དེ་ལུ་རྒྱབ་སྐྱོར་མི་འབད་བས།" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "ཡིག་སྣོད་འཚོལ་མ་ཐོབ།" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདཝ་ཨིནཔས།" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "རྟེནམ་ཨིན།" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "ཆུ་ཚོད་ལེགས་བཅོས་གཞི་སྒྲིག་འབཐ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིན།" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "ཡུ་ཨར་ཨེལ་ ནུས་མེད་ ཉེ་གནས་ ཡུ་ཨར་ཨེལ་ཨེསི་འདི་གིས་//་དང་གཅིག་ཁར་འགོ་བཙུགས་ནི་མི་འོང་།" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "བསམ་འཆར་བཀོདཔ་ཨིན།" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "ནང་བསྐྱོད་འབད་དོ།" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "འོས་སྦྱོར་འབདཝ་ཨིན།" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "དོ་བཉམ་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "མི་མཐུནམ་ཨིན།" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "ཉེ་གནས་མིང་འདི་གཏན་འབེེབས་བཟོ་མ་ཚུགས།" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "ཚབ་བཙུགསཔ་ཨིན།" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "སར་བར་འདི་གིས་ མཐུད་ལམ་འདི་ངོས་ལེན་འབད་མ་བཏུབ་པར་སླབ་མས: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "ཕན་མེདཔ་བཟོཝ་ཨིན།" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "ལག་ལེན་པ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "རྩི་སྤྲོད་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"པོརོ་སི་སར་བར་ཅིག་གསལ་བཀོད་འབད་ཡོད་འདི་འབདཝ་ད་ ནང་བསྐྱོད་ཡིག་ཚུགས་མིན་འདུག་ Acquire::ftp::" +"ProxyLoginའདི་སྟོངམ་ཨིན་པས།" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "གལ་ཅན།" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "དགོས་མཁོ་ཡོདཔ།" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "ནང་བསྐྱོད་ཡིག་ཚུགས་ བརྡ་བཀོད་'%s'་འདི་འཐོས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས:%s" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "ཚད་ལྡན།" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "ཡིག་དཔར་རྐྱབ་མ་བཏུབ་སར་བར་གྱིས་སླབ་མས། %s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "གདམ་ཁ་ཅན།" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "མཐུད་ལམ་ངལ་མཚམས" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ཐེབས།" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "སར་བར་གྱིས་མཐུད་ལམ་འདི་ཁ་བསྡམས་ཏེ་ཡོདཔ་ཨིན།" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "ལན་གྱིས་ གནད་ཁོངས་གུར་ལས་ ལུད་སོང་སྟེ་ཡོདཔ་ཨིན།" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "འདྲ་མཛོད་ལུ་མཐུན་འགྱུར་མེན་པའི་འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་ཅིག་འདུག" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +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:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས་པར་ཡོདཔ་ཨིན།" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐུམ་སྒྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "གནད་སྡུད་སོ་ཀེཊི་མཐུད་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མཐུད་ལམ་ངལ་མཚམས།" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མཐུད་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "སོ་ཀེཊི་ཅིག་བསྡམས་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "སོ་ཀེཊི་གུར་ཉེན་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "སོ་ཀེཊི་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བཏང་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr " %sལུ་འབྲི་མ་ཚུགས།" +msgid "Unknown address family %u (AF_*)" +msgstr "མ་ཤེས་པའི་ཁ་བྱང་གི་རིགས་ཚན་%u (AF_*)" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "ཨི་པི་ཨར་ཊི་ འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "གནད་སྡུད་སོ་ཀེཊི་ མཐུད་ནི་ངལ་མཚམས་བྱུང་ནུག" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "མཐུད་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགས།" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལ།" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "ཡིག་སྣོད་ལེན་མ་ཚུགས་ སར་བར་'%s'གིས་སླབ་མས" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "གནད་སྡུད་སོ་ཀེཊི་ངལ་མཚམས།" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:935 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "%s (%s -> %s)བསྐྱར་མིང་བཏགས་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" - -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" +msgid "Data transfer failed, server said '%s'" +msgstr "གནད་སྡུད་གནས་སོར་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མས།" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "ཚད་མ་མཐུན།" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "འདྲི་དཔྱད།" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" - -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འཐོབ་མི་ཚུགས་པས:\n" +msgid "Connecting to %s (%s)" +msgstr "%s (%s)་ལུ་མཐུད་དོ།" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:87 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:94 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s (f=%u t=%u p=%u)གི་དོན་ལུ་སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས།" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:100 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s (%s)ལུ་མཐུད་ལམ་དེ་འགོ་འབྱེད་འབད་མ་ཚུགས།" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:108 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:126 #, 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་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ " -"འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེན།)" +msgid "Could not connect to %s:%s (%s)." +msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས།" -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "%s་ལུ་མཐུད་དོ།" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"ཐུམ་སྒྲིལ་ ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་ཐུམ་སྒྲིལ་གྱི་དོན་ལུ་ས་སྒོ།" +msgid "Could not resolve '%s'" +msgstr "'%s'མོས་མཐུན་འབད་མ་ཚུགས།" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག" +msgid "Temporary failure resolving '%s'" +msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" +msgid "System error resolving '%s:%s'" +msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "ཡིག་མཛོད་སྣོད་ཐོ་ %s་ ཆ་ཤས་འདི་བརླག་སྟོར་ཞུགས་ཏེ་འདུག" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" - -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོ།)" - -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li" +msgid "Unable to connect to %s:%s:" +msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"ཟུར་ཐོ་ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་" -"རྙིངམ་འདི་ཚུ་ལག་ལེན་འཐབ་ནུག" +"ནང་འཁོད་འཛོལ་བ: མིང་རྟགས་འདི་ལེགས་ཤོམ་ཅིག་འདུག་ འདི་འབདཝ་ད་མཛུབ་རྗེས་ལྡེ་མིག་དེ་གཏན་འབེབས་བཟོ་" +"མ་ཚུགས?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "ཉུང་མཐའ་རང་ནུས་མེད་ཀྱི་མིང་རྟགས་ཅིག་གདོང་ཐུག་བྱུང་སྟེ་ཡོདཔ་ཨིན།" + +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"ཁྱོད་རའི་sources.listགི་ཐོ་ཡིག་ནང་ལུ་ཁྱོད་ཀྱི་ 'འབྱུང་ཁུངས་' ཡུ་ཨར་ཨའི་ཚུ་་ལ་ལུ་ཅིག་བཙུགས་དགོ" +"མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འཐབ་མ་ཚུགས། (gpgv་དེ་ཁཞི་བཙུགས་འབད་ཡོདཔ་ཨིན་ན།?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་ཐོ་ ཐུམ་སྒྲིལ་མགོ་ཡིག་མིན་འདུག" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགས།" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv་ལག་ལེན་འཐབ་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་།" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བས།" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "འོག་གི་མིང་རྟགས་ཚུ་ནུས་མེད་ཨིན་པས།:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"འོག་གི་མིང་རྟགས་ཚུ་བདེན་སྦྱོར་་འབད་མ་ཚུགས་ག་ཅི་སྦེ་ཟེར་བ་ཅིན་མི་དམང་ལྡེ་མིག་དེ་འཐོབ་མི་ཚུགས་པས:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" - -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"མི་མཐུན་/སྔོན་རྟེན་འཕྲལ་བཀོལ་ལས་བརྟེན་ འ་ནི་གཞི་བཙུགས་གཡོག་བཀོལ་འདི་ལུ་ མེད་དུ་མི་རུང་བའི་%sཐུམ་" -"སྒྲིལ་ གནས་སྐབས་ཀྱི་རྩ་བསྐྲད་གཏང་ནི་འདི་དགོས་མཁོ་ཡོདཔ་ཨིན། འདི་འཕྲལ་འཕྲལ་རང་བྱང་ཉེས་ཅིག་ཨིན་པས་ " -"འདི་འབདཝ་ད་ཁྱོད་ཀྱི་ཐད་རི་འབའ་རི་འབད་དགོཔ་ཨིན་པ་ཅིན་ APT::Force-LoopBreak གདམ་ཁ་འདི་ཤུགས་" -"ལྡན་བཟོ།" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "གྲལ་ཐིག་%u་འདི་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ། ཐག་རིང་མཇུག་གི་མཐུད་ལམ་དེ་ཁ་བསྡམས།" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ།" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "ཌིསིཀ་གི་དོན་ལུ་བསྒུག་དོ...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "སེལ་འཐུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "ངོས་འཛིན་འབད་དོ..." +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "མཐུད་ལམ་ངལ་མཚམས་འབད་ཡོད།" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་གི་དོན་ལུ་ ཌིསིཀ་ཞིབ་ལྟ་འབད་དོ...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "མགོ་ཡིག་ཚུ་གི་དོན་ལུ་བསྒ྄ག་དོ།" -#: apt-pkg/cdrom.cc:734 -#, fuzzy, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "%i་ཐུམ་སྒྲིལ་གྱི་ཟུར་ཐོ་ཚུ་ཐོབ་ཅི་ %i་འབྱུང་ཁུངས་ཟུར་ཐོ་ཚུ་དང་ %iམིང་རྟགས་ཚུ།\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "མགོ་ཡིག་གི་གྲལ་ཐིག་བྱང་ཉེས།" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: apt-pkg/cdrom.cc:771 -#, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད།\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-ཁྱབ་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིན།\n" -"'%s'\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ཁྱབ་ཚད་ཀྱི་རྒྱབ་སྐྱོར་དེ་ཆད་པ་བཟོ་བཏང་ནུག" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "ཐུམ་སྒྲིལ་གྱིཐོ་ཡིག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གསརཔ་ཅིག་འབྲི་དོ།\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "བཐུད་ལམ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" -"མ་ཐོབ།" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "ནང་འཁོད་འཛོལ་བ།" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མཐུན་བཟོཝ་ཨིན འ་ནི་ཐུམ་" -"སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "འབད་ཚར་ཡི།" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "རྟེན་འབྲེལ་གྱི་རྩ་འབྲེལ་བཟོ་བརྩིགས་འབད་དོ།" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "མི་ངོ་འཐོན་རིམཚུ།" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "བརྟེན་པའི་བཟོ་བཏོན།" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོ།" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "ཡར་བསྐྱེད་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པས།" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "%s (༢་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr "འབད་ཚར་ཡི།" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ། -f ལག་ལེན་འཐབ་སྟེ་འབད་རྩོལ་བསྐྱེད།" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +msgid "[installed,upgradable to: %s]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "འདི་འབདཝ་ད་%s་འདི་གཞི་བཙུགས་འབད་ཡོད།" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "འདི་འབདཝ་ད་%s་འདི་གཟི་བཙུགས་འབད་མི་བཏུབ་པས།" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "འདི་འབདཝ་ད་ འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན་པས།" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "%s་ཁ་ཕྱོགས་ཡིག་སྣོད་ནང་ནུས་མེད་གྲལ་ཐིག" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པས།" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr "ཡང་ན།" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་རྩ བསྐྲད་གཏང་འོང་:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ལོག་སྟེ་རང་བཞག་ནུག:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ཡར་བསྐྱེད་འབད་འོང་:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "འོག་གི་ཐུམ་སྒྲལ་འདི་ཚུ་མར་ཕབ་འབད་འོང་:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu འབྱུང་ཁུངས་ཐོ་ཡིག་ %s (ཡུ་ཨར་ཨའི་)གི་ནང་ན།" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "འོག་གི་འཆང་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།" +msgid "%s (due to %s) " +msgstr "%s( %s་གིས་སྦེ)" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"ཉེན་བརྡ:འོག་གི་ཉོ་མཁོ་བའི་ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏང་འོང་།\n" +"ཁྱོད་ཀྱིས་ཁྱོད་རང་ག་ཅི་འབདཝ་ཨིན་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་།!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(ཡང་དག་ dist)གི་ནང་ན།" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu་ཡར་བསྐྱེད་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོད།" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" +msgid "%lu reinstalled, " +msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོད།" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "%s་ཁ་ཕྱེ་དོ།" +msgid "%lu downgraded, " +msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོད།" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (དབྱེ་བ)་ནང་ན།" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "རྩ་བསྐྲད་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསྐྱེད་མ་འབད་བས།\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསྐྲད་མ་གཏང་པས།\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "ཝའི།" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s་རིམ་སྒྲིག་འབད་དོ།" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Removing %s" -msgstr "%s་རྩ་བསྐྲད་གཏང་དོ།" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-show.cc:156 #, c-format -msgid "Noting disappearance of %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" +"ནང་འཁོད་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་ཐུམ་སྒྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་དང་གཅིག་ཁར་བོད་བརྡ་འབད་འདི་" +"ཡོད!" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་བཏང་དགོཔ་འདུག་འདི་འབདགཝ་ད་རྩ་བསྐྲད་གཏང་ནི་འདི་ལྕོགས་མིན་ཐལ་ཏེ་འདུག" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "ནང་འཁོད་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བས།" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s་ གྲ་སྒྲིག་འབད་དོ།" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མཐུན་སྒྲིག་མི་འབད་" +"བས།" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Unpacking %s" -msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོ།" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས། ཡིག་མཛོད་ཚི་གི་%sB་\n" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing to configure %s" -msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོ།" +msgid "Need to get %sB of archives.\n" +msgstr "ཡིག་མཛོད་ཀྱི་%sB་འདི་ལེན་དགོ་པས།\n" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" +#. 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 +#: apt-private/private-install.cc:167 +#, fuzzy, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "ཁ་སྐོང་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འཐབ་འོང་།\n" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "%s་ རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" +#. 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 +#: apt-private/private-install.cc:172 +#, fuzzy, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: apt-private/private-install.cc:200 #, c-format -msgid "Removed %s" -msgstr "རྩ་བསྐྲད་བཏང་ཡོད་པའི་%s" +msgid "You don't have enough free space in %s." +msgstr "%s ནང་ཁྱོད་ལུ་བར་སྟོང་དལཝ་ལངམ་སྦེ་མིན་འདུག" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདཐོག་ལས་ལག་ལེན་འཐབ་སྟེ་ཡོད།" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "གལ་ཆུང་རྐྱངམ་ཅིག་ཁསལ་བཀོད་འབད་ནུག་ འདི་འབདཝ་ད་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེན།" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" + +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"ཁྱོད་ཀྱི་གནོད་ངན་འབྱུང་ནིའི་ལཱ་ཅི་འབད་ནི་འབད་དོ།\n" +"འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རྐྱབས།\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr " %sལུ་འབྲི་མ་ཚུགས།" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "བར་བཤོལ་འབད།" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མཐུན་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-" +"missing་དང་གཅིག་ཁར་འབད་རྩོལ་བསྐྱེད་ནི་ཨིན་ན་?" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སྐྱོར་མི་འབད་བས།" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +"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] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +"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] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:517 +#, fuzzy, 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] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།" +"(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" +#: apt-private/private-install.cc:638 +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 "" +"ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས། འ་ནི་གི་དོན་དག་དེ་ཁྱོད་ཀྱི་ མི་སྲིད་པའི་དུས་སྐབས་ཅིག་ཞུ་བ་" +"འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" +"འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "སེལ་འཐུ་%s ་མ་འཐོབ།" - -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "%s ལྷག་ནི་རྐྱངམ་ཅིག་འབད་མི་ལྡེ་མིག་ཡིག་སྣོད་འདི་གི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" - -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "ལྡེ་མིག་རྐྱབས་ཡོད་པའི་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "%sལྡེ་མིག་རྐྱབ་ནི་ལེན་མ་ཚུགས།" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/private-install.cc:825 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" +"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" +"འབད་བས།\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" +"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" +"འབད་བས།\n" -#: apt-pkg/contrib/fileutl.cc:421 +#: apt-private/private-install.cc:841 #, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n" -#: apt-pkg/contrib/fileutl.cc:824 +#: apt-private/private-install.cc:846 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" +msgid "%s is already the newest version.\n" +msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-install.cc:894 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་ཐོན་ཡོདཔ་ཨིན།" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-install.cc:947 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +#: apt-private/private-main.cc:32 +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 "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ཉེན་བརྡ:འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བཏུབ་པས།" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོད།\n" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགས།" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདཝ་ད་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག" +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི་ཐུམ་སྒྲིལ་འདི་ཚུ་གཞི་བཙུགས་འབད་ནི་ཨིན་ན་" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབཝ་ད་འབད་མ་ཚུགས།" +msgid "Failed to parse %s. Edit again? " +msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" +#: apt-private/private-sources.cc:70 +#, c-format +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "ཡིག་སྣོད་འདི་འབྲེལལམ་མེདཔ་བཟོ་བའི་བསྒང་དཀའ་ངལ།" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "ཨེབ།" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "ལེན:" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "ཨེལ་ཇི་ཨེན:" + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "ཨི་ཨར་ཨར།" + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... འཛོལ་བ་!" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིན།\n" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... འབད་ཚར་ཡོད།" +msgid " [Working]" +msgstr " [ལཱ་འབད་དོ།]" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: apt-private/acqprogress.cc:297 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" +"བརྡ་ལམ་བསྒྱུར་བཅོས:ཁ་ཡིག་བཀོད་ཡོད་པའི་ཌིསིཀ་འདི་\n" +" '%s'\n" +"འདྲེན་འཕྲུལ་'%s'ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།\n" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... འབད་ཚར་ཡོད།" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "ཡིག་སྣོད་སྟོངམ་འདི་mmap་འབད་མ་ཚུགས།" +#. 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 "" -#: apt-pkg/contrib/mmap.cc:111 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +msgid "Can not read mirror file '%s'" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-pkg/contrib/mmap.cc:119 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" +msgid "No entry found in mirror file '%s'" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" + +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་ཨའི་པི་སི་རྒྱུད་དུང་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "དུས་སུ་མ་འབབ་པ་རང་མཐུད་ལམ་འདི་ག་བསྡམས་ཡོད།" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "སྔོན་སྒྲིག་བྱང་ཉེས་གཞི་སྒྲིག་འབད་དོ་!" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "%s་ཁ་ཕྱེ་མ་ཚུགས།" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་ལོག་ལྡེ་འདི་ཨེབ།" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "སྦུང་ཚན་བཟོ་བཤོལ་འབད་བའི་བར་ན་ འཛོལ་བ་དག་པ་ཅིག་བྱུང་ནུག་ ང་གི་" -#: apt-pkg/contrib/mmap.cc:322 +#: dselect/install:103 #, fuzzy -msgid "Failed to truncate file" -msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +msgid "will be configured. This may result in duplicate errors" +msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་རིམ་སྒྲིག་འབད་ནི་ཨིན།་འ་ནི་འདི་གིས་ ངོ་བཤུས་རྫུན་མ་" -#: 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)" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"ཡང་ན་བརླག་སྟོར་ཞུགས་ཡོད་པའི་རྟེན་འབྲེལ་གི་རྒྱུ་རྐྱེན་ལས་བརྟེན་པའི་འཛོལ་བ་ཚུ་ནང་ལུ་གྲུབ་འབྲས་འཐོན་འོང་། " +"འདི་དེ་བཏུབ་པས་" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: dselect/install:105 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"འ་ནི་འཕྲིན་དོན་གྱི་ལྟག་ལས་ཡོད་པའི་འཛོལ་བ་དེ་ཚུ་གལ་ཅན་ཅིག་ཨིན། འདི་ཚུ་གི་དཀའ་ངལ་སེལ་བཞིནམ་ལས་ " +"[I] གཞི་བཙུགས་དེ་ལོག་སྟེ་རང་གཡོག་བཀོལ།" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདི་ངོ་བཤུས་འབད་མ་ཚུགས།" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "ད་ལྟོ་ཡང་འབྲེལ་ལམ་ཡོད་པའི་མཐུད་མཚམས་གུར་བཀོག་བཞག་མཐུད་མཚམས་དེ་བོད་བརྡ་འབད་འདི་ཡོད།" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "སི་ཌི་རོམ་འདི་ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "དྲྭ་རྟགས་རྒྱུ་རྫས་འདི་ག་ཡོད་འཚོལ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད!" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "ཁ་ཕྱོགས་སྤྲོད་བཞག་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་དོ།" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "ཁ་ཕྱོགས་ཁ་སྐོང་རྐྱབ་ནི་ནང་ ནང་འཁོད་ཀྱི་འཛོལ་བ།" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "་ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: སྡེབ་ཚན་གྱིས་མིང་མེད་མི་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "%s -> %s ་དང་ %s/%s་ཁ་ཕྱོགས་ཅིག་ཚབ་སྲུང་འབད་ནི་ལུ་འབད་རྩོལ་བསྐྱེད་དོ།" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཟོ་ཉེས་འགྱུར་བའི་ངོ་རྟགས།" +msgid "Double add of diversion %s -> %s" +msgstr "%s -> %s་ཁ་ཕྱོགས་ཀྱི་ལོག་བལྟབ་ཁ་སྐོང་།" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:གནས་གོང་གི་ཤུལ་ལས་མཁོ་མེད་ཐེབས།" +msgid "Duplicate conf file %s/%s" +msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s/%s་འདི་ངོ་བཤུས་བཟོ།" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།" +msgid "The path %s is too long" +msgstr "%s་འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་འདུག" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:འདུ་འཛོམས་འབད་འབདཝ་ལེ་ཤཱ་གྲངས་སུ་བཙུགསཔ་ཨིན།" +msgid "Unpacking %s more than once" +msgstr "སྦུང་ཚན་བཟོ་བཤོལ་%s་གཅིག་ལས་ལྷག་སྟེ་འདུག" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་ཏེ་ཡོད།" +msgid "The directory %s is diverted" +msgstr "སྣོད་ཐོ་%s་འདི་ཁ་ཕྱོགས་སྒྱུར་དེ་ཡོད།" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: རྒྱབ་སྐྱོར་མ་འབད་བར་ཡོད་པའི་'%s'བཀོད་རྒྱ།" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "ཐུམ་སྒྲིལ་འདི་གིས་ག་སྒྱུར་དམིགས་གཏད་%s/%s་ལུ་འབྲི་ནིའི་འབད་རྩོལ་བསྐྱེདཔ་དེ་ཡོད།" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "ཁ་སྒྱུར་འགྲུལ་ལམ་འདི་གནམ་མེད་ས་མེད་རིངམ་ཨིན་པས།" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ཡིག་སྣོད་ཀྱི་མཇུག་ལུ་མཁོ་མེད་ཐེབས།" +msgid "Failed to stat %s" +msgstr "%s་སིཊེཊི་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:249 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གྱི་གདམ་ཁ་'%c'[%s་ནང་ལས་]འདི་མ་ཤེས་པས།" +msgid "The directory %s is being replaced by a non-directory" +msgstr "སྣོད་ཡིག་%s་འདི་སྣོད་ཡིག་མེན་མི་ཅིག་གིས་ཚབ་བཙུག་དེ་ཡོདཔ་ཨིན།" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "ཁོང་རའི་དྲྭ་རྟགས། (#)རྡོབ་ནང་ལུ་མཐུད་མཚམས་ག་ཡོད་འཚོལ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་ཅིག་ཨིན་པས།" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "བ་རྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་ཧ་མ་གོ་བས།" +msgid "Overwrite package match with no version for %s" +msgstr "%s་གི་དོན་ལུ་ཚབ་སྲུང་འབད་བའི་ཐུམ་སྒྲིལ་དེ་གིས་འཐོན་རིམ་གཅིག་ད་ཡང་མཐུན་སྒྲིག་མི་འབད་བས།" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་བུ་ལིན་མེན་པས།" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "ཐུམ་སྒྲིལ་%s་ནང་ལུ་་ཡིག་སྣོད་%s/%sགིས་གཅིག་ཚབ་སྲུང་འབདཝ་ཨིན།" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "གདམ་ཁ་%s་ལུ་སྒྲུབ་རྟགས་ཅིག་དགོ་པས།" +msgid "Unable to stat %s" +msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "གདམ་ཁ་%s:རིམ་སྒྲིག་གི་རྣམ་གྲངས་གསལ་བཀོད་ལུ་ =<val> ་ཅིག་དགོཔ་ཨིན།" +msgid "Failed to write file %s" +msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "གདམ་ཁ་ %s ་ལུ་'%s'་མེན་པར་ ཧྲིལ་ཨང་སྒྲུབ་རྟགས་ཅིག་དགོས་མཁོ་ཡོདཔ་ཨིན" +msgid "Failed to close file %s" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་བསྡམས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "གདམ་ཁ་'%s'འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "འ་ནི་འདི་ ཌི་ཨི་བི་ཡིག་མཛོད་ནུས་ཅན་ཅིག་མེན་པས་ '%s'འཐུས་མི་བརླག་སྟོར་ཞུགས་དོ།" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "དྲན་ཤེས་ %s་འདི་ཧ་གོ་མ་ཚུགས་པས་ བདེན་པ་ཡང་ན་རྫུན་པ་ལུ་འབད་རྩོལ་བསྐྱེདཔ།" +msgid "Internal error, could not locate member %s" +msgstr "ནང་འཁོད་འཛོལ་བ་གིས་འཐུས་མི་%sའདི་ག་ཡོད་འཚོལ་མ་འཐོབ།" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "མིང་དཔྱད་འབད་མ་བཏུབ་པའི་ཚད་འཛིན་ཡིག་སྣོད།" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "ནུས་མེད་ཡིག་མཛོད་ཀྱི་མིང་རྟགས།" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "ཡིག་མཛོད་འཐུས་མི་མགོ་ཡིག་ལྷག་ནིའི་འཛོལ་བ།" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "ཡིག་མཛོད་འདི་གནམ་མེད་ས་མེད་ཐུང་ཀུ་འདུག" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "ཡིག་མཛོད་མགོ་ཡིག་ཚུ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "རྒྱུད་དུང་ཚུ་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "ཇི་ཛིཔ་འདི་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "ངན་ཅན་གྱི་ཡིག་མཛོད།" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "ཊར་ཅེག་སམ་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ ཡིག་མཛོད་ངན་ཅན་བྱུང་ནུག" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" +msgid "Unknown TAR header type %u, member %s" +msgstr "མ་ཤེས་པའི་ ཊཱར་་མགོ་ཡིག་་དབྱེ་བ་ %u་ འཐུས་མི་ %s།" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3516,7 +3520,7 @@ msgstr "ཨེམ་ཌི་༥་གློག་རིག་རྐྱབ་པ msgid "Problem unlinking %s" msgstr "%s་འབྲེལ་འཐུད་མེདཔ་བཟོ་ནི་ལུ་དཀའ་ངལ།" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3571,6 +3575,10 @@ msgstr "" " -o=? འདི་གིས་ མཐུན་སྒྲིག་ རིམ་སྒྲིག་གི་གདམ་ཁ་ཚུ་ཁཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/" "tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསྐྱེད་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་ཐལ་ཡོད།" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s འདི་ནུས་ཅན་གྱི་ ཌི་ཨི་བི་ཅིག་མེན་པས།" diff --git a/po/el.po b/po/el.po index 9f42cf36f..731f981cf 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Νάτσης <natsisthanasis@gmail.com>\n" "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" @@ -24,3182 +24,3185 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"org>\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Το πακέτο %s με έκδοση %s έχει ανικανοποίητες εξαρτήσεις:\n" +msgid "Unable to read %s" +msgstr "Αδύνατη η ανάγνωση του %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Συνολικά Ονόματα Πακέτων : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Αδύνατη η αλλαγή σε %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Συνολο Δομών Πακέτου : " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Αδύνατη η εύρεση της κατάστασης του %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Κανονικά Πακέτα: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Πλήρως Εικονικά Πακέτα: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Μονά Εικονικά Πακέτα: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Το σύστημα συσκευασίας '%s' δεν υποστηρίζεται" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Μικτά Εικονικά Πακέτα: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Αδύνατος ο καθορισμός ενός κατάλληλου τύπου συστήματος πακέτων" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr "Αγνοούμενα: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Εγιναν %i εγγραφές.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Σύνολο Διαφορετικών Εκδόσεων: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Σύνολο Διαφορετικών Εκδόσεων: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Εγιναν %i εγγραφές με %i ασύμβατα αρχεία.\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Σύνολο Εξαρτήσεων: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία και %i ασύμβατα αρχεία\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Ανόμοιο MD5Sum" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Σύνολο Αντιστοιχίσεων Παροχών: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Ο οδηγός μεθόδου %s δεν μπορεί να εντοπιστεί." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Σύνολο Κοινών Στοιχειοσειρών : " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Συνολικός χώρος Εξαρτήσεων Εκδόσεων: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Η μέθοδος %s δεν εκκινήθηκε σωστά" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Σύνολο χώρου ασφαλείας: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Παρακαλώ εισάγετε το δίσκο με ετικέτα '%s' στη συσκευή '%s' και πατήστε " +"enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Συνολικός Καταμετρημένος Χώρος: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Αδύνατο το άνοιγμα ή η ανάλυση των λιστών πακέτων ή του αρχείου κατάστασης." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Το αρχείο πακέτου %s δεν είναι ενημερωμένο." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Ίσως να πρέπει να τρέξετε apt-get update για να διορθώσετε αυτά τα προβλήματα" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Δε βρέθηκαν πακέτα" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Αδύνατη η ανάγνωση της λίστας πηγών." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Πρέπει να δώσετε τουλάχιστον ένα μοτίβο αναζήτησης" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Άδειο cache πακέτων" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Το αρχείο cache των πακέτων είναι ασύμβατης έκδοσης" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Αδυναμία εντοπισμού του πακέτου %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Αυτό το APT δεν υποστηρίζει το Σύστημα Απόδοσης Έκδοσης '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Αρχεία Πακέτου:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Η cache πακέτων κατασκευάστηκε για μια διαφορετική αρχιτεκτονική" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Η cache δεν είναι ενημερωμένη, αδυναμία παραπομπής σε ένα αρχείο πακέτου" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Εξαρτάται από" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Καθηλωμένα Πακέτα:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "ΠροΕξαρτάται από" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(δε βρέθηκαν)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Προτείνει" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Εγκατεστημένα: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Συστήνει" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Υποψήφιο: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Ασύμβατο με" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(κανένα)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Αντικαθιστά" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Καθήλωση Πακέτου: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Απαρχαιώνει" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Πίνακας Έκδοσης:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Χαλάει" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s για %s είναι μεταγλωττισμένο σε %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Χρήση: apt-cache [επιλογές] εντολή\n" -" apt-cache [επιλογές] add file1 [file2 ...]\n" -" apt-cache [επιλογές] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [επιλογές] showsrc pkg1 [pkg2 ...]\n" -"\n" -"το apt-cache είναι ένα χαμηλού επιπέδου εργαλείο που χρησιμοποιείται για \n" -"το χειρισμό των δυαδικών αρχείων cache του APT, και να εξάγει πληροφορίες\n" -"από αυτά\n" -"\n" -"Εντολές:\n" -" add - Προσθέτει ένα αρχείο πακέτου στη cache πηγών\n" -" gencaches - Κατασκευή της cache των πακέτων και των πηγών\n" -" showpkg - Εμφάνιση μερικών γενικών πληροφοριών για ένα πακέτο\n" -" showsrc - Εμφάνιση εγγραφών για πηγαίο πακέτο\n" -" stats - Εμφάνιση μερικών βασικών στατιστικών\n" -" dump - Εμφάνιση όλου του αρχείου σε περιληπτική μορφή.\n" -" dumpavail - Εκτύπωση της λίστας των διαθέσιμων πακέτων στην κανονική " -"έξοδο\n" -" unmet - Εμφάνιση μη ικανοποιούμενων εξαρτήσεων\n" -" search - Αναζήτηση στη λίστα πακέτων για αυτή τη κανονική παράσταση\n" -" show - Εμφάνιση μιας αναγνώσιμης εγγραφής για το πακέτο\n" -" depends - Εμφάνιση των εξαρτήσεων ενός πακέτου\n" -" rdepends - Εμφάνιση αντίστροφων εξαρτήσεων ενός πακέτου\n" -" pkgnames - Εμφάνιση λίστας με τα ονόματα όλων των πακέτων\n" -" dotty - Παραγωγή γραφημάτων πακέτων για το GraphViz\n" -" xvcg - Παραγωγή γραφημάτων πακέτων για το xvcg\n" -" policy - Εμφάνιση προτεραιοτήτων πηγών\n" -"\n" -"Επιλογές:\n" -" -h Αυτό το κείμενο βοήθειας.\n" -" -p=? Η cache πακέτων.\n" -" -s=? Η cache πηγών.\n" -" -q Απενεργοποίηση του δείκτη προόδου.\n" -" -i Εμφάνιση μόνο των σημαντικών εξαρτήσεων για την εντολή unmet.\n" -" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n" -" -o=? Χρήση μιας αυθαίρετη επιλογής ρυθμίσεων, πχ -o dir::cache=/tmp\n" -"Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληροφορίες.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "σημαντικό" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Παρακαλώ δώστε ένα όνομα για αυτόν τον δίσκο, όπως 'Debian 5.0.3 Disk 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "απαιτούμενο" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Παρακαλώ εισάγετε το δίσκο στη συσκευή και πατήστε enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "καθιερωμένο" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Αποτυχία σύνδεσης του %s σε %s" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "προαιρετικό" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "επιπλέον" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Τα ορίσματα δεν είναι σε ζεύγη" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "σφάλμα μεταγλωτισμου - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Χρήση: apt-config [επιλογές] εντολή\n" -"\n" -"το apt-config είναι ένα απλό εργαλείο για την ανάγνωση του αρχείου ρυθμίσεων " -"APT\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" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Η cache έχει ασύμβατο σύστημα απόδοσης έκδοσης" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Εκπληκτικό, υπερβήκατε τον αριθμό των ονομάτων πακέτων που υποστηρίζει το " +"APT." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Επιλογή του %s ώς λίστας πηγαίων πακέτων αντί της %s\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Εκπληκτικό, υπερβήκατε τον αριθμό των περιγραφών που υποστηρίζει το APT." -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" +"Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" +msgid "Couldn't stat source package list %s" +msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Ανάγνωση Λιστών Πακέτων" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Συλλογή Παροχών Αρχείου" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "το %s έχει εγκατασταθεί αυτόματα\n" +msgid "Unable to write to %s" +msgstr "Αδύνατη η εγγραφή στο %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -"Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο " -"υλικό" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " -"κωδικάτου" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Παράκαμψη του ήδη μεταφορτωμένου αρχείου `%s`\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "απέτυχε η μετονομασία, %s (%s -> %s)." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s" - -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Ανόμοιο MD5Sum" -#. 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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB πηγαίου κώδικα.\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Μη έγκυρη λειτουργία %s" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "Μεταφόρτωση Κωδικα %s\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Δεν υπάρχει διαθέσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Παράκαμψη της αποσυμπίεσης ήδη μεταφορτωμένου κώδικα στο %s\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Απέτυχε η εντολή χτισίματος %s.\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Η απογονική διεργασία απέτυχε" +#: apt-pkg/acquire-item.cc:1859 +#, 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. Αυτό ίσως σημαίνει ότι " +"χρειάζεται να διορθώσετε χειροκίνητα το πακέτο. (λόγω χαμένου αρχείου)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Κατεστραμμένα αρχεία ευρετηρίου πακέτων. Δεν υπάρχει πεδίο Filename: στο " +"πακέτο %s." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Η εγγραφή κατασκευαστή %s δεν περιέχει ταυτότητα" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Ο φάκελος λιστών %spartial αγνοείται." + +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Ο φάκελος αρχειοθηκών %spartial αγνοείται." + +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Αδύνατο το κλείδωμα του καταλόγου" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "%s has no build depends.\n" -msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Κατέβασμα του αρχείου %li του %li (απομένουν %s)" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Λήψη αρχείου %li του %li" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Αποτυχία ανάκτησης του %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το %s δεν επιτρέπεται στο " -"πακέτο %s" +"Μερικά αρχεία δεν μεταφορτώθηκαν, αγνοήθηκαν ή χρησιμοποιήθηκαν παλαιότερα " +"στη θέση τους." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Πρέπει να τοποθετήσετε μερικά URI 'πηγών' στο sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Μη έγκυρη εγγραφή στο αρχείο προτιμήσεων, καμία επικεφαλίδα Package" + +#: apt-pkg/policy.cc:444 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Did not understand pin type %s" +msgstr "Αδύνατη η κατανόηση του τύπου καθήλωσης %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" msgstr "" -"Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s " -"είναι νεώτερο" +"Δεν έχει οριστεί προτεραιότητα (ή έχει οριστεί μηδενική) για την καθήλωση" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες " -"εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις της έκδοσης" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν έχει " -"υποψήφιαέκδοση" +"Αυτή η προσπάθεια εγκατάστασης απαιτεί προσωρινή αφαίρεση του σημαντικού " +"πακέτου %s λόγω ενός βρόγχου Ασυμβατότητας/ΠροΕξάρτησης. Αυτό συνήθως δεν " +"είναι καλό, αλλά εάν πραγματικά θέλετε να συνεχίσετε ενεργοποιήστε την " +"επιλογή APT::Force-LoopBreak option." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Αποτυχία ικανοποίησης %s εξάρτησης για το %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Η γραμμή %u έχει υπερβολικό μήκος στη λίστα πηγών %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Αποπροσάρτηση του CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Οι εξαρτήσεις χτισίματος για το %s δεν ικανοποιούνται." +msgid "Using CD-ROM mount point %s\n" +msgstr "Χρησιμοποιείται το σημείο προσάρτησης %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Αναμονή για δίσκο...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Προσάρτηση του CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Αναγνώριση..." + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog για %s (%s)" +msgid "Stored label: %s\n" +msgstr "Αποθήκευση Ετικέτας: %s \n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Υποστηριζόμενοι Οδηγοί:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Σάρωση του δίσκου για περιεχόμενα...\n" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Χρήση: apt-get [παράμετροι] εντολή\n" -" apt-get [παράμετροι] install|remove pkg1 [pkg2 ...]\n" -" apt-get [παράμετροι] source pkg1 [pkg2 ...]\n" -"\n" -"η apt-get είναι μια απλή διασύνδεση για τη μεταφόρτωση και την\n" -"εγκατάσταση πακέτων. Οι πιο συχνές εντολές είναι η update\n" -"και η install.\n" -"\n" -"Εντολές:\n" -" update - Ανάκτηση νέων καταλόγων πακέτων\n" -" upgrade - Διενέργεια αναβάθμισης\n" -" install - Εγκατάσταση νέων πακέτων (χωρίς την επέκταση .deb)\n" -" remove - Αφαίρεση πακέτων\n" -" source - Μεταφόρτωση πακέτων πηγαίου κώδικα\n" -" build-dep - Ρύθμιση εξαρτήσεων χτισίματος για πακέτα πηγαίου κώδικα\n" -" dist-upgrade - Αναβάθμιση διανομής, δες το apt-get(8)\n" -" dselect-upgrade - Τήρηση των επιλογών του dselect\n" -" clean - Καθαρισμός των μεταφορτωμένων αρχείων\n" -" autoclean - Καθαρισμός παλαιότερα μεταφορτωμένων αρχείων\n" -" check - Εξακρίβωση για τυχόν σπασμένες εξαρτήσεις\n" -"\n" -"Παράμετροι:\n" -" -h Αυτό το βοηθητικό κείμενο.\n" -" -q Χωρίς αναλυτική ένδειξη προόδου (κατάλληλο για αποθήκευση της εξόδου)\n" -" -qq Χωρίς λεπτομέρειες εκτός από τα λάθη\n" -" -d Μεταφόρτωση μόνο - ΜΗΝ αποσυμπιέσεις ή εγκαταστήσεις αρχεία\n" -" -s Χωρίς ενέργεια. Διενέργεια προσομοίωσης βημάτων εγκατάστασης\n" -" -y Υπόθεσε Ναι για όλες τις ερωτήσεις και μην περιμένεις απάντηση\n" -" -f Προσπάθησε να συνεχίσεις αν αποτύχει ο έλεγχος ακεραιότητας\n" -" -m Προσπάθησε να συνεχίσεις αν υπάρχουν άγνωστα πακέτα\n" -" -u Εμφάνισε επίσης ένα κατάλογο από αναβαθμιζόμενα πακέτα\n" -" -b Χτίσε το πηγαίο πακέτο μετά την μεταφόρτωση του\n" -" -V Εμφάνισε λεπτομερείς αριθμούς εκδόσεων\n" -" -c=? Διάβασε αυτό το αρχείο ρυθμίσεων\n" -" -o=? Θέσε μια αυθαίρετη παράμετρο, πχ -o dir::cache=/tmp\n" -"Δείτε τις σελίδες εγχειριδίου apt-get(8), sources.list(5) και apt.conf(5)\n" -"για περισσότερες πληροφορίες και επιλογές.\n" -" This APT has Super Cow Powers.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " -"κωδικάτου" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Βρέθηκαν %zu κατάλογοι πακέτων, %zu κατάλογοι πηγαίων, %zu κατάλογοι " +"μεταφράσεων και %zu υπογραφές\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "αλλά δεν είναι εγκατεστημένο" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Εύρεση ετικέτας: %s \n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Αυτό δεν είναι έγκυρο όνομα, προσπαθείστε ξανά. \n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Αναμονή του %s, αλλά δε βρισκόταν εκεί" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Ο δίσκος αυτός ονομάζεται: \n" +"'%s'\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Αντιγραφή λιστών πακέτων..." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Αποτυχία ανοίγματος του %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Eγγραφή νέας λίστας πηγών\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Το πακέτο '%s' χρειάζεται να επανεγκατασταθεί, αλλά είναι αδύνατη η εύρεση " +"κάποιας κατάλληλης αρχείοθήκης." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως " +"προκλήθηκε από κρατούμενα πακέτα." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Αδύνατη η ανάγνωση της βάσης δεδομένων του cdrom %s" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Αδύνατη η διόρθωση προβλημάτων, έχετε κρατούμενα ελαττωματικά πακέτα." -#: 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 "" -"Παρακαλώ χρησιμοποιείστε το apt-cdrom για να αναγνωριστεί αυτό το CD από το " -"APT. Το apt-get update δε χρησιμεύει για να προσθέτει νέα CD" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Κατασκευή Δένδρου Εξαρτήσεων" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Λάθος CD" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Υποψήφιες Εκδόσεις" -#: methods/cdrom.cc:249 +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Παραγωγή Εξαρτήσεων" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Ανάγνωση περιγραφής της τρέχουσας κατάσταση" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Αδυναμία απόσυναρμογής του CD-ROM στο %s, μπορεί να είναι σε χρήση." +msgid "Failed to open StateFile %s" +msgstr "Αποτυχία ανοίγματος του αρχείου κατάστασης %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Ο δίσκος δεν βρέθηκε." +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Αποτυχία εγγραφής του αρχείου κατάστασης %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Το αρχείο Δε Βρέθηκε" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Αποτυχία εύρεσης της κατάστασης" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (2)" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Αποτυχία ορισμού του χρόνου τροποποίησης" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Η έκδοση %s για το %s δεν βρέθηκε" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Μη έγκυρο URI, τα τοπικά URI δεν πρέπει να αρχίζουν με //" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Η έκδοση %s για το %s δεν βρέθηκε" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Σύνδεση στο σύστημα" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Αδυναμία εντοπισμού του πακέτου %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Αδύνατος ο καθορισμός του ονόματος του ομότιμου (peer)" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Αδύνατη η εύρεση του συνόλου πακέτων %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Αδύνατος ο καθορισμός του τοπικού ονόματος" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Ο διακομιστής αρνήθηκε την σύνδεση με μήνυμα: %s" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "USER failed, server said: %s" -msgstr "Η εντολή USER απέτυχε, ο διακομιστής απάντησε: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Η εντολή PASS απέτυχε, ο διακομιστής απάντησε: %s" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Ο διαμεσολαβητής έχει οριστεί αλλά χωρίς σενάριο εισόδου, το Acquire::ftp::" -"ProxyLogin είναι άδειο" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Η εντολή '%s' στο σενάριο εισόδου απέτυχε, ο διακομιστής απάντησε: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Η εντολή TYPE απέτυχε, ο διακομιστής απάντησε: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Λήξη χρόνου σύνδεσης" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Ο διακομιστής έκλεισε την σύνδεση" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Σφάλμα ανάγνωσης" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Το μήνυμα απάντησης υπερχείλισε την ενδιάμεση μνήμη." +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Αλλοίωση του πρωτοκόλλου" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Σφάλμα εγγραφής" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Μη έγκυρη γραμμή στο αρχείο παρακάμψεων: %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Αδύνατη η δημιουργία μιας υποδοχής (socket)" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Αδύνατη η σύνδεση υποδοχής δεδομένων, λήξη χρόνου σύνδεσης" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Απέτυχε" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Αδύνατη η σύνδεση σε παθητική υποδοχή (socket)." +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Το getaddrinfo ήταν αδύνατο να δέσμευση υποδοχή παρακολούθησης" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Αδύνατη η πρόσδεση στην υποδοχή (socket)" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Αδύνατη η παρακολούθηση της υποδοχής (socket)" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Αδύνατος ο καθορισμός του ονόματος της υποδοχής (socket)" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (URI)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Αδύνατη η αποστολή της εντολής PORT" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Άγνωστη οικογένεια διευθύνσεων %u (AF_*)" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Το EPRT απέτυχε, ο διακομιστής απάντησε: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Απόλυτο dist)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδομένων" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Αδύνατη η αποδοχή συνδέσεων" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Άνοιγμα του %s" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Πρόβλημα κατά το hashing του αρχείου" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (τύπος)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Αδυναμία λήψης του αρχείου, ο διακομιστής απάντησε '%s'" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Λήξη χρόνου υποδοχής δεδομένων" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Αποτυχία κατά τη μεταφορά δεδομένων, ο διακομιστής απάντησε '%s'" +msgid "Installing %s" +msgstr "Εγκατάσταση του %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Επερώτηση" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Ρύθμιση του %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Αδύνατη η εκτέλεση" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Αφαιρώ το %s" + +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Το %s διαγράφηκε πλήρως" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Σύνδεση στο %s (%s)" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Running post-installation trigger %s" +msgstr "Εκτέλεση του post-installation trigger %s" -#: methods/connect.cc:94 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Αδύνατη η δημιουργία υποδοχής για το %s (f=%u t=%u p=%u)" +msgid "Directory '%s' missing" +msgstr "Ο φάκελος %s αγνοείται." -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" + +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Αδύνατη η αρχικοποίηση της σύνδεσης στο %s:%s (%s)." +msgid "Preparing %s" +msgstr "Προετοιμασία του %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Αδύνατη η σύνδεση στο %s:%s (%s), λήξη χρόνου σύνδεσης" +msgid "Unpacking %s" +msgstr "Ξεπακετάρισμα του %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Αδύνατη η σύνδεση στο %s:%s (%s)." +msgid "Preparing to configure %s" +msgstr "Προετοιμασία ρύθμισης του %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Connecting to %s" -msgstr "Σύνδεση στο %s" +msgid "Installed %s" +msgstr "Έγινε εγκατάσταση του %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not resolve '%s'" -msgstr "Αδύνατη η εύρεση του '%s'" +msgid "Preparing for removal of %s" +msgstr "Προετοιμασία για την αφαίρεση του %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Προσωρινή αποτυχία στην εύρεση του '%s'" +msgid "Removed %s" +msgstr "Αφαίρεσα το %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Προετοιμασία πλήρης αφαίρεσης του %s" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Το %s διαγράφηκε πλήρως" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Αδύνατη η σύνδεση στο %s %s:" +msgid "Can not write log (%s)" +msgstr "Αδύνατη η εγγραφή στο %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -"Εσωτερικό σφάλμα: Η υπογραφή είναι καλή, αλλά αδυναμία προσδιορισμού του " -"αποτυπώματος?!" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Βρέθηκε τουλάχιστον μια μη έγκυρη υπογραφή." - -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -"Αδυναμία εκτέλεσης του '%s' για την επαλήθευση της υπογραφής (είναι " -"εγκατεστημένο το gpgv;)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Waited for %s but it wasn't there" +msgstr "Αναμονή του %s, αλλά δε βρισκόταν εκεί" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Άγνωστο σφάλμα κατά την εκτέλεση του gpgv" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Οι παρακάτω υπογραφές ήταν μη έγκυρες:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Οι παρακάτω υπογραφές δεν ήταν δυνατόν να επαληθευτούν επειδή δεν ήταν " -"διαθέσιμο το δημόσιο κλειδί:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Σφάλμα στην εγγραφή στο αρχείο" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -"Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Σφάλμα στην εγγραφή στο αρχείο" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Η επιλογή απέτυχε" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Λήξη χρόνου σύνδεσης" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Αναμονή επικεφαλίδων" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ελαττωματική γραμμή επικεφαλίδας" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα απάντησης" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Length" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Range" - -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ο διακομιστής http δεν υποστηρίζει πλήρως το range" - -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Άγνωστη μορφή ημερομηνίας" - -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Ελαττωματικά δεδομένα επικεφαλίδας" - -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Η σύνδεση απέτυχε" - -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Εσωτερικό Σφάλμα" - -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Υπολογισμός της αναβάθμισης... " - -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Εσωτερικό Σφάλμα, η διαδικασία αναβάθμισης χάλασε" - -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Ετοιμο" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Διόρθωση εξαρτήσεων..." +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " απέτυχε." +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Αδύνατο το κλείδωμα του καταλόγου" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Αδύνατη η διόρθωση των εξαρτήσεων" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Αδύνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Ετοιμο" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -"Ίσως να πρέπει να τρέξετε apt-get -f install για να διορθώσετε αυτά τα " -"προβλήματα." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε με το -f." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Εγκατεστημένα]" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Η επιλογή %s δε βρέθηκε" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Εγκατεστημένα]" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Δε θα χρησιμοποιηθεί κλείδωμα για το ανάγνωσης μόνο αρχείο κλειδώματος %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Αδύνατο το άνοιγμα του αρχείου κλειδώματος %s" + +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" +"Δε θα χρησιμοποιηθεί κλείδωμα για το συναρμοσμένο από nfs αρχείο κλειδώματος " +"%s" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Εγκατεστημένα]" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Αδύνατο το κλείδωμα %s" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Εγκατεστημένα]" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "[upgradable from: %s]" +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Τα ακόλουθα πακέτα έχουν ανεπίλυτες εξαρτήσεις:" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "but %s is installed" -msgstr "αλλά το %s είναι εγκατεστημένο" +msgid "Sub-process %s received a segmentation fault." +msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" + +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "but %s is to be installed" -msgstr "αλλά το %s πρόκειται να εγκατασταθεί" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Η υποδιεργασία %s επέστρεψε ένα κωδικός σφάλματος (%u)" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "αλλά δεν είναι εγκαταστάσημο" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Η υποδιεργασία %s εγκατέλειψε απρόσμενα" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "αλλά είναι ένα εικονικό πακέτο" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Σφάλμα εγγραφής" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "αλλά δεν είναι εγκατεστημένο" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "αλλά δεν πρόκειται να εγκατασταθεί" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " η" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Τα ακόλουθα ΝΕΑ πακέτα θα εγκατασταθούν:" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Αποτυχία δημιουργίας IPC στην υποδιεργασία" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Τα ακόλουθα πακέτα θα ΑΦΑΙΡΕΘΟΥΝ:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Αποτυχία εκτέλεσης του συμπιεστή " -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Τα ακόλουθα πακέτα θα μείνουν ως έχουν:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Σφάλμα ανάγνωσης" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Τα ακόλουθα πακέτα θα αναβαθμιστούν:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "αναγνώστηκαν, απομένουν ακόμη %lu για ανάγνωση αλλά δεν απομένουν άλλα" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Τα ακόλουθα πακέτα θα ΥΠΟΒΑΘΜΙΣΤΟΥΝ:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "γράφτηκαν, απομένουν %lu για εγγραφή αλλά χωρίς επιτυχία" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Τα ακόλουθα κρατημένα πακέτα θα αλλαχθούν:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" -#: apt-private/private-output.cc:655 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (λόγω του %s) " +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαραίτητα πακέτα θα αφαιρεθούν\n" -"Αυτό ΔΕΝ θα έπρεπε να συμβεί, εκτός αν ξέρετε τι ακριβώς κάνετε!" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Πρόβλημα κατά την διαγραφή του αρχείου" -#: apt-private/private-output.cc:694 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu αναβαθμίστηκαν, %lu νέο εγκατεστημένα, " +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu επανεγκατεστημένα," +msgid "%c%s... Error!" +msgstr "%c%s... Σφάλμα!" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu downgraded, " -msgstr "%lu υποβαθμισμένα, " +msgid "%c%s... Done" +msgstr "%c%s... Ολοκληρώθηκε" -#: apt-private/private-output.cc:702 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu θα αφαιρεθούν και %lu δεν αναβαθμίζονται.\n" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu μη πλήρως εγκατεστημένα ή αφαιρέθηκαν.\n" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Ολοκληρώθηκε" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[Ν/ο]" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Αδύνατη η απεικόνιση mmap ενός άδειου αρχείου" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[ν/Ο]" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Αδύνατο το άνοιγμα του %s" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Αδύνατη η εκτέλεση" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Regex compilation error - %s" -msgstr "σφάλμα μεταγλωτισμου - %s" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Η εντολή update δεν παίρνει ορίσματα" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Αποτυχία εγγραφής του αρχείου %s" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Εσωτερικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!" - -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Μερικά πακέτα πρέπει να αφαιρεθούν αλλά η Αφαίρεση είναι απενεργοποιημένη." -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Εσωτερικό Σφάλμα, η Ταξινόμηση δεν ολοκληρώθηκε" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Αδύνατη η εύρεση της κατάστασης του σημείου επαφής %s" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Πολύ περίεργο! Τα μεγέθη δεν ταιριάζουν, στείλτε μήνυμα στο apt@packages." -"debian.org" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Αδύνατη η εύρεση της κατάστασης του cdrom" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB από αρχεία.\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Μη αναγνωρισμένος τύπος σύντμησης: '%c'" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB από αρχεία.\n" +msgid "Opening configuration file %s" +msgstr "Άνοιγμα του αρχείου ρυθμίσεων %s" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Μετά από αυτή τη λειτουργία, θα χρησιμοποιηθούν %sB χώρου από το δίσκο.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Συντακτικό σφάλμα %s:%u: Το block αρχίζει χωρίς όνομα." -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Μετά από αυτή τη λειτουργία, θα ελευθερωθούν %sB χώρου από το δίσκο.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Συντακτικό σφάλμα %s:%u: Λάθος μορφή Ετικέτας (Tag)" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s." +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες μετά την τιμή" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Υπάρχουν προβλήματα και δώσατε -y χωρίς το --force-yes" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Συντακτικό σφάλμα %s:%u: Υπερβολικός αριθμός συνδυασμένων includes" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Ναι, κανε ότι λέω!" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Συντακτικό σφάλμα %s:%u: Συμπεριλαμβάνεται από εδώ" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηριζόμενη εντολή '%s'" + +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Πρόκειται να κάνετε κάτι πιθανόν πολύ επιζήμιο.\n" -"Για να συνεχίσετε πληκτρολογήστε τη φράση '%s'\n" -" ?] " +"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Εγκατάλειψη." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες στο τέλος του αρχείου" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Θέλετε να συνεχίσετε;" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Εγκατάλειψη της εγκατάστασης." -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Η επιλογή γραμμής εντολών '%c' [από %s] δεν είναι γνωστή." -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Αδύνατη η μεταφόρτωση μερικών αρχείων, ίσως αν δοκιμάζατε με apt-get update " -"ή το --fix-missing;" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Η επιλογή γραμμής εντολών %s δεν είναι κατανοητή" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Η επιλογή γραμμής εντολών %s δεν είναι boolean" + +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Η επιλογή %s απαιτεί ένα όρισμα." + +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα" +"Επιλογή %s: Οι προδιαγραφές του αντικειμένου ρυθμίσεων απαιτούν =<val>." -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Αδύνατη η επίλυση των χαμένων πακέτων." +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Επιλογή %s: απαιτείται ένας ακέραιος αριθμός ως όρισμα, όχι '%s'" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Εγκατάλειψη της εγκατάστασης." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Η επιλογή '%s' έχει υπερβολικό μήκος" -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Η τιμή %s δεν είναι κατανοητή, δοκιμάστε σωστό (true) ή λάθος (false)." -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Μη έγκυρη λειτουργία %s" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Δεν επιτρέπεται οποιαδήποτε διαγραφή· αδυναμία εκκίνησης του AutoRemover" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Το πακέτο %s με έκδοση %s έχει ανικανοποίητες εξαρτήσεις:\n" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Φαίνεται πως το AutoRemover κατέστρεψε κάτι ενώ δεν θα έπρεπε. Παρακαλείστε " -"να υποβάλλετε αναφορά σφάλματος για το apt." +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Συνολικά Ονόματα Πακέτων : " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Συνολο Δομών Πακέτου : " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Εσωτερικό Σφάλμα, το AutoRemover δημιούργησε κάποιο πρόβλημα" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Κανονικά Πακέτα: " -#: apt-private/private-install.cc:512 -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] "Το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χρειάζεται πλέον:" -msgstr[1] "" -"Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Πλήρως Εικονικά Πακέτα: " -#: apt-private/private-install.cc:516 -#, fuzzy, 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 το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χρειάζεται πλέον:" -msgstr[1] "" -"%lu τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Μονά Εικονικά Πακέτα: " -#: apt-private/private-install.cc:518 -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-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Μικτά Εικονικά Πακέτα: " -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Aν τρέξετε 'apt-get -f install' ίσως να διορθώσετε αυτά τα προβλήματα:" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr "Αγνοούμενα: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε " -"πακέτο (ή καθορίστε μια λύση)." +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Σύνολο Διαφορετικών Εκδόσεων: " -#: apt-private/private-install.cc:628 -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 "" -"Μερικά πακέτα είναι αδύνατον να εγκατασταθούν. Αυτό μπορεί να σημαίνει ότι\n" -"δημιουργήσατε μια απίθανη κατάσταση ή αν χρησιμοποιείτε την ασταθή\n" -"διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n" -"μετακινηθεί από τα εισερχόμενα." +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Σύνολο Διαφορετικών Εκδόσεων: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Χαλασμένα πακέτα" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Σύνολο Εξαρτήσεων: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Προτεινόμενα πακέτα:" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Συνιστώμενα πακέτα:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Σύνολο Αντιστοιχίσεων Παροχών: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Παράκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οριστεί.\n" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Σύνολο Κοινών Στοιχειοσειρών : " -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Παράκαμψη του %s, είναι εγκατεστημένο και μόνο αναβαθμίσεις έχουν οριστεί.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Συνολικός χώρος Εξαρτήσεων Εκδόσεων: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή " -"του\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Σύνολο χώρου ασφαλείας: " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Συνολικός Καταμετρημένος Χώρος: " -#: apt-private/private-install.cc:884 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s\n" +msgid "Package file %s is out of sync." +msgstr "Το αρχείο πακέτου %s δεν είναι ενημερωμένο." -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s λόγω του %s\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Δε βρέθηκαν πακέτα" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Πρέπει να δώσετε τουλάχιστον ένα μοτίβο αναζήτησης" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί. Εννοείτε '%s'?\n" -#: apt-private/private-install.cc:937 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Αρχεία Πακέτου:" -#: apt-private/private-main.cc:32 -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!" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" +"Η cache δεν είναι ενημερωμένη, αδυναμία παραπομπής σε ένα αρχείο πακέτου" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακέτα δεν εξακριβώθηκαν!" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Καθηλωμένα Πακέτα:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Παράκαμψη προειδοποίησης ταυτοποίησης.\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(δε βρέθηκαν)" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Μερικά πακέτα δεν εξαακριβώθηκαν" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Εγκατεστημένα: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Εγκατάσταση των πακέτων χωρίς επαλήθευση;" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Υποψήφιο: " + +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(κανένα)" + +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Καθήλωση Πακέτου: " + +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Πίνακας Έκδοσης:" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s για %s είναι μεταγλωττισμένο σε %s %s\n" + +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Χρήση: apt-cache [επιλογές] εντολή\n" +" apt-cache [επιλογές] add file1 [file2 ...]\n" +" apt-cache [επιλογές] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [επιλογές] showsrc pkg1 [pkg2 ...]\n" +"\n" +"το apt-cache είναι ένα χαμηλού επιπέδου εργαλείο που χρησιμοποιείται για \n" +"το χειρισμό των δυαδικών αρχείων cache του APT, και να εξάγει πληροφορίες\n" +"από αυτά\n" +"\n" +"Εντολές:\n" +" add - Προσθέτει ένα αρχείο πακέτου στη cache πηγών\n" +" gencaches - Κατασκευή της cache των πακέτων και των πηγών\n" +" showpkg - Εμφάνιση μερικών γενικών πληροφοριών για ένα πακέτο\n" +" showsrc - Εμφάνιση εγγραφών για πηγαίο πακέτο\n" +" stats - Εμφάνιση μερικών βασικών στατιστικών\n" +" dump - Εμφάνιση όλου του αρχείου σε περιληπτική μορφή.\n" +" dumpavail - Εκτύπωση της λίστας των διαθέσιμων πακέτων στην κανονική " +"έξοδο\n" +" unmet - Εμφάνιση μη ικανοποιούμενων εξαρτήσεων\n" +" search - Αναζήτηση στη λίστα πακέτων για αυτή τη κανονική παράσταση\n" +" show - Εμφάνιση μιας αναγνώσιμης εγγραφής για το πακέτο\n" +" depends - Εμφάνιση των εξαρτήσεων ενός πακέτου\n" +" rdepends - Εμφάνιση αντίστροφων εξαρτήσεων ενός πακέτου\n" +" pkgnames - Εμφάνιση λίστας με τα ονόματα όλων των πακέτων\n" +" dotty - Παραγωγή γραφημάτων πακέτων για το GraphViz\n" +" xvcg - Παραγωγή γραφημάτων πακέτων για το xvcg\n" +" policy - Εμφάνιση προτεραιοτήτων πηγών\n" +"\n" +"Επιλογές:\n" +" -h Αυτό το κείμενο βοήθειας.\n" +" -p=? Η cache πακέτων.\n" +" -s=? Η cache πηγών.\n" +" -q Απενεργοποίηση του δείκτη προόδου.\n" +" -i Εμφάνιση μόνο των σημαντικών εξαρτήσεων για την εντολή unmet.\n" +" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n" +" -o=? Χρήση μιας αυθαίρετη επιλογής ρυθμίσεων, πχ -o dir::cache=/tmp\n" +"Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληροφορίες.\n" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Αποτυχία ανάκτησης του %s %s\n" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Παρακαλώ δώστε ένα όνομα για αυτόν τον δίσκο, όπως 'Debian 5.0.3 Disk 1'" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Αποτυχία μετονομασίας του %s σε %s" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Παρακαλώ εισάγετε το δίσκο στη συσκευή και πατήστε enter" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Failed to mount '%s' to '%s'" +msgstr "Αποτυχία σύνδεσης του %s σε %s" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Hit " +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας." -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Φέρε:" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Τα ορίσματα δεν είναι σε ζεύγη" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Αγνόησε " +#: cmdline/apt-config.cc:89 +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 "" +"Χρήση: apt-config [επιλογές] εντολή\n" +"\n" +"το apt-config είναι ένα απλό εργαλείο για την ανάγνωση του αρχείου ρυθμίσεων " +"APT\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" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Σφάλμα " +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Μεταφορτώθηκαν %sB σε %s (%sB/s)\n" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" + +#: cmdline/apt-get.cc:367 #, c-format -msgid " [Working]" -msgstr " [Επεξεργασία]" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Επιλογή του %s ώς λίστας πηγαίων πακέτων αντί της %s\n" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:423 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Can not find version '%s' of package '%s'" msgstr "" -"Αλλαγή Μέσου: Παρακαλώ εισάγετε το δίσκο με ετικέτα\n" -" '%s'\n" -"στη συσκευή '%s' και πιέστε enter\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to read %s" -msgstr "Αδύνατη η ανάγνωση του %s" +msgid "Couldn't find package %s" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to change to %s" -msgstr "Αδύνατη η αλλαγή σε %s" +msgid "%s set to manually installed.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "No mirror file '%s' found " -msgstr "" - -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" +msgid "%s set to automatically installed.\n" +msgstr "το %s έχει εγκατασταθεί αυτόματα\n" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Αποτυχία κατά τη δημιουργία διασωλήνωσης IPC στην υποδιεργασία" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Η σύνδεση έκλεισε πρόωρα" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Κακή προκαθορισμένη ρύθμιση!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Πιέστε enter για συνέχεια." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Επιθυμείτε τη διαγραφή ήδη μεταφορτωμένων αρχείων .deb;" - -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Προέκυψανσφάλματα κατά την αποσυμπίεση. Θα ρυθμίσω τα " +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "" +"Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο " +"υλικό" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "πακέτα που εγκαταστάθηκαν. Αυτό μπορεί να παράγει διπλά λάθη" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -"ή σφάλματα που προκύπτουν από χαλασμένες εξαρτήσεις. Αυτό είναι εντάξει, " -"μόνο τα λάθη" +"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " +"κωδικάτου" -#: dselect/install:105 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s" + +#: cmdline/apt-get.cc:786 +#, c-format msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"πριν από το μήνυμα αυτό έχει σημασία. Παρακαλώ διορθώστε τα και τρέξτε " -"[I]nstall ξανά" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Σύμπτυξη Διαθέσιμων Πληροφοριών" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Κλήση του DropNode σε έναν ήδη συνδεδεμένο κόμβο" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Αποτυχία εντοπισμού του στοιχείου hash!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Αδυναμία εντοπισμού εκτροπής" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Εσωτερικό Σφάλμα στο AddDiversion" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Προσπάθεια για αντικατάσταση εκτροπής, %s -> %s και %s/%s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Διπλή προσθήκη εκτροπής %s -> %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Παράκαμψη του ήδη μεταφορτωμένου αρχείου `%s`\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Διπλό αρχείο ρυθμίσεων %s/%s" +msgid "Couldn't determine free space in %s" +msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The path %s is too long" -msgstr "Η διαδρομή %s έχει υπερβολικό μήκος" +msgid "You don't have enough free space in %s" +msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s" -#: apt-inst/extract.cc:132 +#. 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:891 #, c-format -msgid "Unpacking %s more than once" -msgstr "Αποσυμπίεση του %s πάνω από μια φορά" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB πηγαίου κώδικα.\n" -#: apt-inst/extract.cc:142 +#. 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:896 #, c-format -msgid "The directory %s is diverted" -msgstr "Ο φάκελος %s έχει εκτραπεί" +msgid "Need to get %sB of source archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Το πακέτο προσπαθεί να γράψει στον προορισμό εκτροπής %s/%s" +msgid "Fetch source %s\n" +msgstr "Μεταφόρτωση Κωδικα %s\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Η διαδρομή εκτροπής έχει υπερβολικό μήκος" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών." -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to stat %s" -msgstr "Αποτυχία εύρεσης της κατάστασης του %s." +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Παράκαμψη της αποσυμπίεσης ήδη μεταφορτωμένου κώδικα στο %s\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Αποτυχία μετονομασίας του %s σε %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:963 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Ο φάκελος %s αντικαθίσταται από ένα μη-φάκελο" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Αποτυχία εντοπισμού του κόμβου στην ομάδα hash του" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Απέτυχε η εντολή χτισίματος %s.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Η διαδρομή έχει υπερβολικό μήκος" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Η απογονική διεργασία απέτυχε" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Αντικατάσταση πακέτου χωρίς καμία έκδοση %s" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Το αρχείο %s/%s αντικαθιστά αυτό στο πακέτο %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Unable to stat %s" -msgstr "Αδύνατη η εύρεση της κατάστασης του %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Failed to write file %s" -msgstr "Αποτυχία εγγραφής του αρχείου %s" +msgid "%s has no build depends.\n" +msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Failed to close file %s" -msgstr "Αποτυχία στο κλείσιμο του αρχείου %s" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το %s δεν επιτρέπεται στο " +"πακέτο %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Αυτό δεν είναι ένα έγκυρο αρχείο DEB, αγνοείται το μέλος '%s'" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Εσωτερικό Σφάλμα, αδυναμία εντοπισμού του μέλους %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Μη αναλύσιμο αρχείο control" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Μη έγκυρη υπογραφή αρχειοθήκης" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Σφάλμα κατά την ανάγνωση της επικεφαλίδας του μέλους της αρχειοθήκης" - -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Η αρχειοθήκη είναι πολύ μικρή" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s " +"είναι νεώτερο" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Αποτυχία ανάγνωσης των επικεφαλίδων της αρχειοθήκης" +#: cmdline/apt-get.cc:1351 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες " +"εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις της έκδοσης" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Αποτυχία κατά τη δημιουργία διασωληνώσεων" +#: cmdline/apt-get.cc:1357 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν έχει " +"υποψήφιαέκδοση" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Αποτυχία κατά την εκτέλεση του gzip " +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Αποτυχία ικανοποίησης %s εξάρτησης για το %s: %s" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Κατεστραμμένη αρχειοθήκη" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Οι εξαρτήσεις χτισίματος για το %s δεν ικανοποιούνται." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Το Checksum του tar απέτυχε, η αρχείοθήκη είναι κατεστραμμένη" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Άγνωστη επικεφαλίδα TAR τύπος %u, μέλος %s" +msgid "Changelog for %s (%s)" +msgstr "Changelog για %s (%s)" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Αδύνατη η εύρεση της κατάστασης του %s." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Υποστηριζόμενοι Οδηγοί:" + +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Χρήση: apt-get [παράμετροι] εντολή\n" +" apt-get [παράμετροι] install|remove pkg1 [pkg2 ...]\n" +" apt-get [παράμετροι] source pkg1 [pkg2 ...]\n" +"\n" +"η apt-get είναι μια απλή διασύνδεση για τη μεταφόρτωση και την\n" +"εγκατάσταση πακέτων. Οι πιο συχνές εντολές είναι η update\n" +"και η install.\n" +"\n" +"Εντολές:\n" +" update - Ανάκτηση νέων καταλόγων πακέτων\n" +" upgrade - Διενέργεια αναβάθμισης\n" +" install - Εγκατάσταση νέων πακέτων (χωρίς την επέκταση .deb)\n" +" remove - Αφαίρεση πακέτων\n" +" source - Μεταφόρτωση πακέτων πηγαίου κώδικα\n" +" build-dep - Ρύθμιση εξαρτήσεων χτισίματος για πακέτα πηγαίου κώδικα\n" +" dist-upgrade - Αναβάθμιση διανομής, δες το apt-get(8)\n" +" dselect-upgrade - Τήρηση των επιλογών του dselect\n" +" clean - Καθαρισμός των μεταφορτωμένων αρχείων\n" +" autoclean - Καθαρισμός παλαιότερα μεταφορτωμένων αρχείων\n" +" check - Εξακρίβωση για τυχόν σπασμένες εξαρτήσεις\n" +"\n" +"Παράμετροι:\n" +" -h Αυτό το βοηθητικό κείμενο.\n" +" -q Χωρίς αναλυτική ένδειξη προόδου (κατάλληλο για αποθήκευση της εξόδου)\n" +" -qq Χωρίς λεπτομέρειες εκτός από τα λάθη\n" +" -d Μεταφόρτωση μόνο - ΜΗΝ αποσυμπιέσεις ή εγκαταστήσεις αρχεία\n" +" -s Χωρίς ενέργεια. Διενέργεια προσομοίωσης βημάτων εγκατάστασης\n" +" -y Υπόθεσε Ναι για όλες τις ερωτήσεις και μην περιμένεις απάντηση\n" +" -f Προσπάθησε να συνεχίσεις αν αποτύχει ο έλεγχος ακεραιότητας\n" +" -m Προσπάθησε να συνεχίσεις αν υπάρχουν άγνωστα πακέτα\n" +" -u Εμφάνισε επίσης ένα κατάλογο από αναβαθμιζόμενα πακέτα\n" +" -b Χτίσε το πηγαίο πακέτο μετά την μεταφόρτωση του\n" +" -V Εμφάνισε λεπτομερείς αριθμούς εκδόσεων\n" +" -c=? Διάβασε αυτό το αρχείο ρυθμίσεων\n" +" -o=? Θέσε μια αυθαίρετη παράμετρο, πχ -o dir::cache=/tmp\n" +"Δείτε τις σελίδες εγχειριδίου apt-get(8), sources.list(5) και apt.conf(5)\n" +"για περισσότερες πληροφορίες και επιλογές.\n" +" This APT has Super Cow Powers.\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" msgstr "" +"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " +"κωδικάτου" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Το σύστημα συσκευασίας '%s' δεν υποστηρίζεται" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Αδύνατος ο καθορισμός ενός κατάλληλου τύπου συστήματος πακέτων" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Εγιναν %i εγγραφές.\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία.\n" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Εγιναν %i εγγραφές με %i ασύμβατα αρχεία.\n" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "αλλά δεν είναι εγκατεστημένο" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία και %i ασύμβατα αρχεία\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Ανόμοιο MD5Sum" +msgid "%s was already set on hold.\n" +msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Ο οδηγός μεθόδου %s δεν μπορεί να εντοπιστεί." +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" +msgid "%s set on hold.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Η μέθοδος %s δεν εκκινήθηκε σωστά" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Αποτυχία ανοίγματος του %s" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Παρακαλώ εισάγετε το δίσκο με ετικέτα '%s' στη συσκευή '%s' και πατήστε " -"enter." -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"Αδύνατο το άνοιγμα ή η ανάλυση των λιστών πακέτων ή του αρχείου κατάστασης." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Ίσως να πρέπει να τρέξετε apt-get update για να διορθώσετε αυτά τα προβλήματα" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Αδύνατη η ανάγνωση της λίστας πηγών." +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Αδύνατη η ανάγνωση της βάσης δεδομένων του cdrom %s" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Άδειο cache πακέτων" +#: 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 "" +"Παρακαλώ χρησιμοποιείστε το apt-cdrom για να αναγνωριστεί αυτό το CD από το " +"APT. Το apt-get update δε χρησιμεύει για να προσθέτει νέα CD" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Λάθος CD" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Το αρχείο cache των πακέτων είναι ασύμβατης έκδοσης" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Αδυναμία απόσυναρμογής του CD-ROM στο %s, μπορεί να είναι σε χρήση." -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Ο δίσκος δεν βρέθηκε." -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Αυτό το APT δεν υποστηρίζει το Σύστημα Απόδοσης Έκδοσης '%s'" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Το αρχείο Δε Βρέθηκε" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Η cache πακέτων κατασκευάστηκε για μια διαφορετική αρχιτεκτονική" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Αποτυχία εύρεσης της κατάστασης" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Εξαρτάται από" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Αποτυχία ορισμού του χρόνου τροποποίησης" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "ΠροΕξαρτάται από" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Μη έγκυρο URI, τα τοπικά URI δεν πρέπει να αρχίζουν με //" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Προτείνει" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Σύνδεση στο σύστημα" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Συστήνει" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Αδύνατος ο καθορισμός του ονόματος του ομότιμου (peer)" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Ασύμβατο με" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Αδύνατος ο καθορισμός του τοπικού ονόματος" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Αντικαθιστά" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Ο διακομιστής αρνήθηκε την σύνδεση με μήνυμα: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Απαρχαιώνει" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Η εντολή USER απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Χαλάει" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Η εντολή PASS απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"Ο διαμεσολαβητής έχει οριστεί αλλά χωρίς σενάριο εισόδου, το Acquire::ftp::" +"ProxyLogin είναι άδειο" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "σημαντικό" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "απαιτούμενο" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Η εντολή '%s' στο σενάριο εισόδου απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "καθιερωμένο" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "Η εντολή TYPE απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "προαιρετικό" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Λήξη χρόνου σύνδεσης" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "επιπλέον" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Ο διακομιστής έκλεισε την σύνδεση" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Το μήνυμα απάντησης υπερχείλισε την ενδιάμεση μνήμη." -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Η cache έχει ασύμβατο σύστημα απόδοσης έκδοσης" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +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:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Αδύνατη η δημιουργία μιας υποδοχής (socket)" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Εκπληκτικό, υπερβήκατε τον αριθμό των ονομάτων πακέτων που υποστηρίζει το " -"APT." +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Αδύνατη η σύνδεση υποδοχής δεδομένων, λήξη χρόνου σύνδεσης" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Απέτυχε" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Εκπληκτικό, υπερβήκατε τον αριθμό των περιγραφών που υποστηρίζει το APT." +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Αδύνατη η σύνδεση σε παθητική υποδοχή (socket)." -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" -"Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Το getaddrinfo ήταν αδύνατο να δέσμευση υποδοχή παρακολούθησης" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Αδύνατη η πρόσδεση στην υποδοχή (socket)" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Αδύνατη η παρακολούθηση της υποδοχής (socket)" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Ανάγνωση Λιστών Πακέτων" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Αδύνατος ο καθορισμός του ονόματος της υποδοχής (socket)" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Συλλογή Παροχών Αρχείου" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Αδύνατη η αποστολή της εντολής PORT" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr "Αδύνατη η εγγραφή στο %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Άγνωστη οικογένεια διευθύνσεων %u (AF_*)" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "Το EPRT απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδομένων" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Αδύνατη η αποδοχή συνδέσεων" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Πρόβλημα κατά το hashing του αρχείου" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Αδυναμία λήψης του αρχείου, ο διακομιστής απάντησε '%s'" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Λήξη χρόνου υποδοχής δεδομένων" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:935 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "απέτυχε η μετονομασία, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Ανόμοιο MD5Sum" +msgid "Data transfer failed, server said '%s'" +msgstr "Αποτυχία κατά τη μεταφορά δεδομένων, ο διακομιστής απάντησε '%s'" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Ανόμοιο μέγεθος" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Επερώτηση" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Μη έγκυρη λειτουργία %s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Αδύνατη η εκτέλεση" -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" - -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Δεν υπάρχει διαθέσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n" +msgid "Connecting to %s (%s)" +msgstr "Σύνδεση στο %s (%s)" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:87 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:94 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Αδύνατη η δημιουργία υποδοχής για το %s (f=%u t=%u p=%u)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:100 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Αδύνατη η αρχικοποίηση της σύνδεσης στο %s:%s (%s)." -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:108 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Αδύνατη η σύνδεση στο %s:%s (%s), λήξη χρόνου σύνδεσης" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:126 #, 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. Αυτό ίσως σημαίνει ότι " -"χρειάζεται να διορθώσετε χειροκίνητα το πακέτο. (λόγω χαμένου αρχείου)" +msgid "Could not connect to %s:%s (%s)." +msgstr "Αδύνατη η σύνδεση στο %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "Σύνδεση στο %s" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Κατεστραμμένα αρχεία ευρετηρίου πακέτων. Δεν υπάρχει πεδίο Filename: στο " -"πακέτο %s." +msgid "Could not resolve '%s'" +msgstr "Αδύνατη η εύρεση του '%s'" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Η εγγραφή κατασκευαστή %s δεν περιέχει ταυτότητα" +msgid "Temporary failure resolving '%s'" +msgstr "Προσωρινή αποτυχία στην εύρεση του '%s'" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Ο φάκελος λιστών %spartial αγνοείται." +msgid "System error resolving '%s:%s'" +msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Ο φάκελος αρχειοθηκών %spartial αγνοείται." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Αδύνατο το κλείδωμα του καταλόγου" +msgid "Unable to connect to %s:%s:" +msgstr "Αδύνατη η σύνδεση στο %s %s:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Κατέβασμα του αρχείου %li του %li (απομένουν %s)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Εσωτερικό σφάλμα: Η υπογραφή είναι καλή, αλλά αδυναμία προσδιορισμού του " +"αποτυπώματος?!" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Λήψη αρχείου %li του %li" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Βρέθηκε τουλάχιστον μια μη έγκυρη υπογραφή." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Μερικά αρχεία δεν μεταφορτώθηκαν, αγνοήθηκαν ή χρησιμοποιήθηκαν παλαιότερα " -"στη θέση τους." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Πρέπει να τοποθετήσετε μερικά URI 'πηγών' στο sources.list" +"Αδυναμία εκτέλεσης του '%s' για την επαλήθευση της υπογραφής (είναι " +"εγκατεστημένο το gpgv;)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Μη έγκυρη εγγραφή στο αρχείο προτιμήσεων, καμία επικεφαλίδα Package" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Αδύνατη η κατανόηση του τύπου καθήλωσης %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Άγνωστο σφάλμα κατά την εκτέλεση του gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "" -"Δεν έχει οριστεί προτεραιότητα (ή έχει οριστεί μηδενική) για την καθήλωση" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Οι παρακάτω υπογραφές ήταν μη έγκυρες:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"Οι παρακάτω υπογραφές δεν ήταν δυνατόν να επαληθευτούν επειδή δεν ήταν " +"διαθέσιμο το δημόσιο κλειδί:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" - -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"Αυτή η προσπάθεια εγκατάστασης απαιτεί προσωρινή αφαίρεση του σημαντικού " -"πακέτου %s λόγω ενός βρόγχου Ασυμβατότητας/ΠροΕξάρτησης. Αυτό συνήθως δεν " -"είναι καλό, αλλά εάν πραγματικά θέλετε να συνεχίσετε ενεργοποιήστε την " -"επιλογή APT::Force-LoopBreak option." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Η γραμμή %u έχει υπερβολικό μήκος στη λίστα πηγών %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Αποπροσάρτηση του CD-ROM...\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Χρησιμοποιείται το σημείο προσάρτησης %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Αναμονή για δίσκο...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" +"Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Προσάρτηση του CD-ROM...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Αναγνώριση..." +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Αποθήκευση Ετικέτας: %s \n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Η επιλογή απέτυχε" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Σάρωση του δίσκου για περιεχόμενα...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Λήξη χρόνου σύνδεσης" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Βρέθηκαν %zu κατάλογοι πακέτων, %zu κατάλογοι πηγαίων, %zu κατάλογοι " -"μεταφράσεων και %zu υπογραφές\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Αναμονή επικεφαλίδων" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Εύρεση ετικέτας: %s \n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Ελαττωματική γραμμή επικεφαλίδας" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Αυτό δεν είναι έγκυρο όνομα, προσπαθείστε ξανά. \n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα απάντησης" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Ο δίσκος αυτός ονομάζεται: \n" -"'%s'\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Length" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Αντιγραφή λιστών πακέτων..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Range" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Eγγραφή νέας λίστας πηγών\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ο διακομιστής http δεν υποστηρίζει πλήρως το range" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Άγνωστη μορφή ημερομηνίας" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Το πακέτο '%s' χρειάζεται να επανεγκατασταθεί, αλλά είναι αδύνατη η εύρεση " -"κάποιας κατάλληλης αρχείοθήκης." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Ελαττωματικά δεδομένα επικεφαλίδας" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως " -"προκλήθηκε από κρατούμενα πακέτα." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Η σύνδεση απέτυχε" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Αδύνατη η διόρθωση προβλημάτων, έχετε κρατούμενα ελαττωματικά πακέτα." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Εσωτερικό Σφάλμα" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Κατασκευή Δένδρου Εξαρτήσεων" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Υπολογισμός της αναβάθμισης... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Υποψήφιες Εκδόσεις" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Ετοιμο" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Παραγωγή Εξαρτήσεων" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Ανάγνωση περιγραφής της τρέχουσας κατάσταση" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Αποτυχία ανοίγματος του αρχείου κατάστασης %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Αποτυχία εγγραφής του αρχείου κατάστασης %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Διόρθωση εξαρτήσεων..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " απέτυχε." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Αδύνατη η διόρθωση των εξαρτήσεων" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Η έκδοση %s για το %s δεν βρέθηκε" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Αδύνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Η έκδοση %s για το %s δεν βρέθηκε" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Ετοιμο" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Αδύνατη η εύρεση του συνόλου πακέτων %s" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Ίσως να πρέπει να τρέξετε apt-get -f install για να διορθώσετε αυτά τα " +"προβλήματα." -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε με το -f." -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +msgid "[installed,upgradable to: %s]" +msgstr " [Εγκατεστημένα]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Εγκατεστημένα]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Εγκατεστημένα]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Εγκατεστημένα]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "αλλά το %s είναι εγκατεστημένο" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "αλλά το %s πρόκειται να εγκατασταθεί" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "αλλά δεν είναι εγκαταστάσημο" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "αλλά είναι ένα εικονικό πακέτο" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "αλλά δεν είναι εγκατεστημένο" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Μη έγκυρη γραμμή στο αρχείο παρακάμψεων: %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "αλλά δεν πρόκειται να εγκατασταθεί" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " η" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Τα ακόλουθα πακέτα έχουν ανεπίλυτες εξαρτήσεις:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Τα ακόλουθα ΝΕΑ πακέτα θα εγκατασταθούν:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Τα ακόλουθα πακέτα θα ΑΦΑΙΡΕΘΟΥΝ:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Τα ακόλουθα πακέτα θα μείνουν ως έχουν:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Τα ακόλουθα πακέτα θα αναβαθμιστούν:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Τα ακόλουθα πακέτα θα ΥΠΟΒΑΘΜΙΣΤΟΥΝ:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Τα ακόλουθα κρατημένα πακέτα θα αλλαχθούν:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" +msgid "%s (due to %s) " +msgstr "%s (λόγω του %s) " -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαραίτητα πακέτα θα αφαιρεθούν\n" +"Αυτό ΔΕΝ θα έπρεπε να συμβεί, εκτός αν ξέρετε τι ακριβώς κάνετε!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Απόλυτο dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu αναβαθμίστηκαν, %lu νέο εγκατεστημένα, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +msgid "%lu reinstalled, " +msgstr "%lu επανεγκατεστημένα," -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Άνοιγμα του %s" +msgid "%lu downgraded, " +msgstr "%lu υποβαθμισμένα, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (τύπος)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu θα αφαιρεθούν και %lu δεν αναβαθμίζονται.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " +msgid "%lu not fully installed or removed.\n" +msgstr "%lu μη πλήρως εγκατεστημένα ή αφαιρέθηκαν.\n" + +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Ν/ο]" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[ν/Ο]" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Εγκατάσταση του %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Ρύθμιση του %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Η εντολή update δεν παίρνει ορίσματα" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: apt-private/private-update.cc:90 #, c-format -msgid "Removing %s" -msgstr "Αφαιρώ το %s" - -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Το %s διαγράφηκε πλήρως" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Εκτέλεση του post-installation trigger %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Ο φάκελος %s αγνοείται." +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Εσωτερικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Προετοιμασία του %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Μερικά πακέτα πρέπει να αφαιρεθούν αλλά η Αφαίρεση είναι απενεργοποιημένη." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Ξεπακετάρισμα του %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Εσωτερικό Σφάλμα, η Ταξινόμηση δεν ολοκληρώθηκε" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Προετοιμασία ρύθμισης του %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Πολύ περίεργο! Τα μεγέθη δεν ταιριάζουν, στείλτε μήνυμα στο apt@packages." +"debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "Έγινε εγκατάσταση του %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB από αρχεία.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Προετοιμασία για την αφαίρεση του %s" +msgid "Need to get %sB of archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB από αρχεία.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "Αφαίρεσα το %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Μετά από αυτή τη λειτουργία, θα χρησιμοποιηθούν %sB χώρου από το δίσκο.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Προετοιμασία πλήρης αφαίρεσης του %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Μετά από αυτή τη λειτουργία, θα ελευθερωθούν %sB χώρου από το δίσκο.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "Το %s διαγράφηκε πλήρως" +msgid "You don't have enough free space in %s." +msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Υπάρχουν προβλήματα και δώσατε -y χωρίς το --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Αδύνατη η εγγραφή στο %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ναι, κανε ότι λέω!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Πρόκειται να κάνετε κάτι πιθανόν πολύ επιζήμιο.\n" +"Για να συνεχίσετε πληκτρολογήστε τη φράση '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Εγκατάλειψη." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Θέλετε να συνεχίσετε;" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Αδύνατη η μεταφόρτωση μερικών αρχείων, ίσως αν δοκιμάζατε με apt-get update " +"ή το --fix-missing;" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" +"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Αδύνατη η επίλυση των χαμένων πακέτων." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Εγκατάλειψη της εγκατάστασης." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" +"Δεν επιτρέπεται οποιαδήποτε διαγραφή· αδυναμία εκκίνησης του AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" +"Φαίνεται πως το AutoRemover κατέστρεψε κάτι ενώ δεν θα έπρεπε. Παρακαλείστε " +"να υποβάλλετε αναφορά σφάλματος για το apt." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Εσωτερικό Σφάλμα, το AutoRemover δημιούργησε κάποιο πρόβλημα" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "Το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χρειάζεται πλέον:" +msgstr[1] "" +"Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Αδύνατο το κλείδωμα του καταλόγου" +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 το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χρειάζεται πλέον:" +msgstr[1] "" +"%lu τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +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' για να τα διαγράψετε." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Aν τρέξετε 'apt-get -f install' ίσως να διορθώσετε αυτά τα προβλήματα:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε " +"πακέτο (ή καθορίστε μια λύση)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:638 +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 "" +"Μερικά πακέτα είναι αδύνατον να εγκατασταθούν. Αυτό μπορεί να σημαίνει ότι\n" +"δημιουργήσατε μια απίθανη κατάσταση ή αν χρησιμοποιείτε την ασταθή\n" +"διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n" +"μετακινηθεί από τα εισερχόμενα." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Χαλασμένα πακέτα" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:" + +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Προτεινόμενα πακέτα:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Συνιστώμενα πακέτα:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "%lih %limin %lis" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" +"Παράκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οριστεί.\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:829 #, c-format -msgid "%limin %lis" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" +"Παράκαμψη του %s, είναι εγκατεστημένο και μόνο αναβαθμίσεις έχουν οριστεί.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:841 #, c-format -msgid "%lis" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" +"Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή " +"του\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:846 #, c-format -msgid "Selection %s not found" -msgstr "Η επιλογή %s δε βρέθηκε" +msgid "%s is already the newest version.\n" +msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:894 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Δε θα χρησιμοποιηθεί κλείδωμα για το ανάγνωσης μόνο αρχείο κλειδώματος %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:899 #, c-format -msgid "Could not open lock file %s" -msgstr "Αδύνατο το άνοιγμα του αρχείου κλειδώματος %s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s λόγω του %s\n" -#: apt-pkg/contrib/fileutl.cc:218 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Not using locking for nfs mounted lock file %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"Δε θα χρησιμοποιηθεί κλείδωμα για το συναρμοσμένο από nfs αρχείο κλειδώματος " -"%s" +"Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί. Εννοείτε '%s'?\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:947 #, c-format -msgid "Could not get lock %s" -msgstr "Αδύνατο το κλείδωμα %s" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" +#: apt-private/private-main.cc:32 +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 "" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακέτα δεν εξακριβώθηκαν!" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Παράκαμψη προειδοποίησης ταυτοποίησης.\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Μερικά πακέτα δεν εξαακριβώθηκαν" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Εγκατάσταση των πακέτων χωρίς επαλήθευση;" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" +msgid "Failed to parse %s. Edit again? " +msgstr "Αποτυχία μετονομασίας του %s σε %s" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Η υποδιεργασία %s επέστρεψε ένα κωδικός σφάλματος (%u)" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Η υποδιεργασία %s εγκατέλειψε απρόσμενα" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Hit " -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Φέρε:" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Αγνόησε " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Αποτυχία δημιουργίας IPC στην υποδιεργασία" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Σφάλμα " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Αποτυχία εκτέλεσης του συμπιεστή " +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Μεταφορτώθηκαν %sB σε %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "αναγνώστηκαν, απομένουν ακόμη %lu για ανάγνωση αλλά δεν απομένουν άλλα" +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Επεξεργασία]" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "γράφτηκαν, απομένουν %lu για εγγραφή αλλά χωρίς επιτυχία" +#: apt-private/acqprogress.cc:297 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Αλλαγή Μέσου: Παρακαλώ εισάγετε το δίσκο με ετικέτα\n" +" '%s'\n" +"στη συσκευή '%s' και πιέστε enter\n" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" +#. 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 "" -#: apt-pkg/contrib/fileutl.cc:1927 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" +msgid "Can not read mirror file '%s'" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" -#: apt-pkg/contrib/fileutl.cc:1938 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Πρόβλημα κατά την διαγραφή του αρχείου" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" - -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Σφάλμα!" +msgid "No entry found in mirror file '%s'" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" -#: apt-pkg/contrib/progress.cc:150 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Ολοκληρώθηκε" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +msgid "[Mirror: %s]" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Ολοκληρώθηκε" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Αποτυχία κατά τη δημιουργία διασωλήνωσης IPC στην υποδιεργασία" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Αδύνατη η απεικόνιση mmap ενός άδειου αρχείου" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Η σύνδεση έκλεισε πρόωρα" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Κακή προκαθορισμένη ρύθμιση!" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Πιέστε enter για συνέχεια." -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Αδύνατο το άνοιγμα του %s" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Επιθυμείτε τη διαγραφή ήδη μεταφορτωμένων αρχείων .deb;" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:102 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Αδύνατη η εκτέλεση" - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Προέκυψανσφάλματα κατά την αποσυμπίεση. Θα ρυθμίσω τα " -#: apt-pkg/contrib/mmap.cc:322 +#: dselect/install:103 #, fuzzy -msgid "Failed to truncate file" -msgstr "Αποτυχία εγγραφής του αρχείου %s" +msgid "will be configured. This may result in duplicate errors" +msgstr "πακέτα που εγκαταστάθηκαν. Αυτό μπορεί να παράγει διπλά λάθη" -#: 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)" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"ή σφάλματα που προκύπτουν από χαλασμένες εξαρτήσεις. Αυτό είναι εντάξει, " +"μόνο τα λάθη" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: dselect/install:105 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"πριν από το μήνυμα αυτό έχει σημασία. Παρακαλώ διορθώστε τα και τρέξτε " +"[I]nstall ξανά" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Σύμπτυξη Διαθέσιμων Πληροφοριών" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Αδύνατη η εύρεση της κατάστασης του σημείου επαφής %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Κλήση του DropNode σε έναν ήδη συνδεδεμένο κόμβο" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Αδύνατη η εύρεση της κατάστασης του cdrom" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Αποτυχία εντοπισμού του στοιχείου hash!" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Μη αναγνωρισμένος τύπος σύντμησης: '%c'" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Αδυναμία εντοπισμού εκτροπής" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Άνοιγμα του αρχείου ρυθμίσεων %s" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Εσωτερικό Σφάλμα στο AddDiversion" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Συντακτικό σφάλμα %s:%u: Το block αρχίζει χωρίς όνομα." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Προσπάθεια για αντικατάσταση εκτροπής, %s -> %s και %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Συντακτικό σφάλμα %s:%u: Λάθος μορφή Ετικέτας (Tag)" +msgid "Double add of diversion %s -> %s" +msgstr "Διπλή προσθήκη εκτροπής %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες μετά την τιμή" +msgid "Duplicate conf file %s/%s" +msgstr "Διπλό αρχείο ρυθμίσεων %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" +msgid "The path %s is too long" +msgstr "Η διαδρομή %s έχει υπερβολικό μήκος" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Συντακτικό σφάλμα %s:%u: Υπερβολικός αριθμός συνδυασμένων includes" +msgid "Unpacking %s more than once" +msgstr "Αποσυμπίεση του %s πάνω από μια φορά" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Συντακτικό σφάλμα %s:%u: Συμπεριλαμβάνεται από εδώ" +msgid "The directory %s is diverted" +msgstr "Ο φάκελος %s έχει εκτραπεί" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηριζόμενη εντολή '%s'" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Το πακέτο προσπαθεί να γράψει στον προορισμό εκτροπής %s/%s" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Η διαδρομή εκτροπής έχει υπερβολικό μήκος" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες στο τέλος του αρχείου" +msgid "Failed to stat %s" +msgstr "Αποτυχία εύρεσης της κατάστασης του %s." -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Εγκατάλειψη της εγκατάστασης." +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Αποτυχία μετονομασίας του %s σε %s" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:249 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Η επιλογή γραμμής εντολών '%c' [από %s] δεν είναι γνωστή." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Ο φάκελος %s αντικαθίσταται από ένα μη-φάκελο" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Αποτυχία εντοπισμού του κόμβου στην ομάδα hash του" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Η διαδρομή έχει υπερβολικό μήκος" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "Η επιλογή γραμμής εντολών %s δεν είναι κατανοητή" +msgid "Overwrite package match with no version for %s" +msgstr "Αντικατάσταση πακέτου χωρίς καμία έκδοση %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Η επιλογή γραμμής εντολών %s δεν είναι boolean" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Το αρχείο %s/%s αντικαθιστά αυτό στο πακέτο %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "Η επιλογή %s απαιτεί ένα όρισμα." +msgid "Unable to stat %s" +msgstr "Αδύνατη η εύρεση της κατάστασης του %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Επιλογή %s: Οι προδιαγραφές του αντικειμένου ρυθμίσεων απαιτούν =<val>." +msgid "Failed to write file %s" +msgstr "Αποτυχία εγγραφής του αρχείου %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Επιλογή %s: απαιτείται ένας ακέραιος αριθμός ως όρισμα, όχι '%s'" +msgid "Failed to close file %s" +msgstr "Αποτυχία στο κλείσιμο του αρχείου %s" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "Η επιλογή '%s' έχει υπερβολικό μήκος" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Αυτό δεν είναι ένα έγκυρο αρχείο DEB, αγνοείται το μέλος '%s'" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Η τιμή %s δεν είναι κατανοητή, δοκιμάστε σωστό (true) ή λάθος (false)." +msgid "Internal error, could not locate member %s" +msgstr "Εσωτερικό Σφάλμα, αδυναμία εντοπισμού του μέλους %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Μη αναλύσιμο αρχείο control" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Μη έγκυρη υπογραφή αρχειοθήκης" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Σφάλμα κατά την ανάγνωση της επικεφαλίδας του μέλους της αρχειοθήκης" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Η αρχειοθήκη είναι πολύ μικρή" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Αποτυχία ανάγνωσης των επικεφαλίδων της αρχειοθήκης" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Αποτυχία κατά τη δημιουργία διασωληνώσεων" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Αποτυχία κατά την εκτέλεση του gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Κατεστραμμένη αρχειοθήκη" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Το Checksum του tar απέτυχε, η αρχείοθήκη είναι κατεστραμμένη" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Μη έγκυρη λειτουργία %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Άγνωστη επικεφαλίδα TAR τύπος %u, μέλος %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3549,7 +3552,7 @@ msgstr "Αποτυχία ανάγνωσης κατά τον υπολογισμό msgid "Problem unlinking %s" msgstr "Πρόβλημα κατά την αποσύνδεση του %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3603,6 +3606,10 @@ msgstr "" " -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n" " -o=? Θέσε μια αυθαίρετη παράμετρο,πχ -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Εσωτερικό Σφάλμα, η διαδικασία αναβάθμισης χάλασε" + #~ msgid "%s not a valid DEB package." #~ msgstr "Το %s δεν είναι έγκυρο πακέτο DEB." diff --git a/po/es.po b/po/es.po index b091b3ceb..c4d991737 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña <jfs@debian.org>\n" "Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n" @@ -72,3244 +72,3248 @@ msgstr "" "X-POFile-SpellExtra: autoclean showsrc desactualizados clean gzip TYPE\n" "X-POFile-SpellExtra: sinfo Acquire\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "No se da soporte para el tipo de archivo de índice «%s»" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "El paquete %s versión %s tiene dependencias incumplidas:\n" +msgid "Unable to read %s" +msgstr "No pude leer %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Nombres de paquetes totales: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "No se pudo cambiar a %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Estructuras de paquetes totales: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "No se pudo leer %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquetes normales: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquetes virtuales puros: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Ejecutando dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquetes virtuales únicos: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "No está soportado el sistema de paquetes «%s»" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquetes virtuales mixtos: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Faltan: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i registros escritos.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Versiones diferentes totales: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i registros escritos con %i fichero de menos.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Descripciones diferentes totales: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i registros escritos con %i fichero mal emparejado\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Dependencias totales: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"%i registros escritos con %i fichero de menos y %i ficheros mal emparejados\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Relaciones versión/archivo totales: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "No se pudo encontrar un registro de autenticación para: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Relaciones descripción/archivo totales: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "La suma hash difiere para: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Mapeo Total de Provisiones: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "No se pudo encontrar el método %s." -# globbed -> globalizadas ? (jfs) -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Cadenas globalizadas totales: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espacio de versión de dependencias total: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "El método %s no se inició correctamente" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espacio desperdiciado total: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Por favor, inserte el disco «%s» en la unidad «%s» y pulse Intro." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Espacio registrado total: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"No se pudieron analizar o abrir las listas de paquetes o el archivo de " +"estado." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "El archivo de paquetes %s está desincronizado." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Tal vez quiera ejecutar «apt-get update» para corregir estos problemas" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "No se encontró ningún paquete" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "No se pudieron leer las listas de fuentes." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Debe proporcionar al menos un patrón de búsqueda" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Caché de paquetes vacía." -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "El archivo de caché de paquetes está dañado" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "El archivo de caché de paquetes es una versión incompatible" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "El archivo de caché de paquetes está dañado" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "No se ha podido localizar el paquete %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Esta versión de APT no soporta el sistema de versiones «%s»" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Archivos de paquetes:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "La caché de paquetes se había creado para una arquitectura diferente" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Caché fuera de sincronismo, no se puede hacer x-ref a un archivo de paquetes" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquetes con pin:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "PreDepende" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(no encontrado)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugiere" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalados: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomienda" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Entra en conflicto" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ninguno)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Reemplaza" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pin del paquete: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Hace obsoleto" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabla de versión:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Rompe" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado en %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Mejora" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Modo de uso: apt-cache [opciones] orden\n" -" apt-cache [opciones] add archivo1 [archivo2 ...]\n" -" apt-cache [opciones] showpkg paq1 [paq2 ...]\n" -" apt-cache [opciones] showsrc paq1 [paq2 ...]\n" -"\n" -"apt-cache es una herramienta de bajo nivel que se utiliza para manipular\n" -"los archivos binarios de caché de APT y consultar información sobre éstos\n" -"\n" -"Órdenes:\n" -" add - Agrega un archivo de paquete a la caché de fuentes\n" -" gencaches - Crea ambas cachés, la de paquetes y la de fuentes\n" -" showpkg - Muestra información general para un solo paquete\n" -" showsrc - Muestra la información de fuentes\n" -" stats - Muestra algunas estadísticas básicas\n" -" dump - Muestra el archivo entero en un formato terso\n" -" dumpavail - Imprime un archivo disponible a la salida estándar\n" -" unmet - Muestra dependencias incumplidas\n" -" search - Busca en la lista de paquetes por un patrón de expresión " -"regular\n" -" show - Muestra un registro legible para el paquete\n" -" showauto - Muestra una lista de los paquetes instalados de forma " -"automática\n" -" depends - Muestra la información de dependencias en bruto para el " -"paquete\n" -" rdepends - Muestra la información de dependencias inversas del paquete\n" -" pkgnames - Lista los nombres de todos los paquetes en el sistema\n" -" dotty - Genera gráficas del paquete para GraphViz\n" -" xvcg - Genera gráficas del paquete para xvcg\n" -" policy - Muestra parámetros de las normas\n" -"\n" -"Opciones:\n" -" -h Este texto de ayuda.\n" -" -p=? La caché de paquetes.\n" -" -s=? La caché de fuentes.\n" -" -q Deshabilita el indicador de progreso.\n" -" -i Muestra sólo dependencias importantes para la orden incumplida.\n" -" -c=? Lee este archivo de configuración\n" -" -o=? Establece una opción de configuración arbitraria, \n" -" p.ej. -o dir::cache=/tmp\n" -"Vea las páginas del manual apt-cache(8) y apt.conf(5) para más información.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Proporcione un nombre para este disco, como pueda ser «Debian 5.0.3 Disco 1»" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requiere" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Por favor, introduzca un disco en la unidad y pulse Intro" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estándar" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "No se pudo montar «%s» como «%s»" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repita este proceso para el resto de los CDs del conjunto." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "No se da soporte para el tipo de archivo de índice «%s»" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentos no emparejados" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Error de compilación de expresiones regulares - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Uso: apt-config [opciones] orden\n" -"\n" -"apt-config es una herramienta para leer el archivo de configuración de APT.\n" -"\n" -"Comandos:\n" -" shell - Modo shell\n" -" dump - Muestra la configuración\n" -"\n" -"Opciones:\n" -" -h Este texto de ayuda.\n" -" -c=? Lee este archivo de configuración\n" -" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n" -" cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "La caché tiene una versión incompatible de sistema de versiones" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Se produjo un error mientras se procesaba %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Vaya, excedió el número de nombres de paquetes que este APT es capaz de " +"manejar." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Vaya, excedió el número de versiones que este APT es capaz de manejar." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Vaya, excedió el número de descripciones que este APT es capaz de manejar." -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorar la versión no disponible «%s» del paquete «%s»" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "No se pudo encontrar el paquete %s" +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" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "fijado %s como instalado manualmente.\n" +msgid "Couldn't stat source package list %s" +msgstr "No se puede leer la lista de paquetes fuente %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Leyendo lista de paquetes" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Recogiendo archivos que proveen" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "fijado %s como instalado automáticamente.\n" +msgid "Unable to write to %s" +msgstr "No se puede escribir en %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Error de E/S guardando caché fuente" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -"Error interno, el sistema de solución de problemas rompió algunas cosas" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "No se puede bloquear el directorio de descarga" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Debe especificar al menos un paquete para obtener su código fuente" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "No se pudo encontrar un paquete de fuentes para %s" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"NOTA: el empaquetamiento de «%s» se mantiene en el sistema de control de " -"versiones «%s» en:\n" -"%s\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "falló el cambio de nombre, %s (%s -> %s)." -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Por favor, utilice:\n" -"bzr get %s\n" -"para obtener las últimas actualizaciones (posiblemente no publicadas aún) " -"del paquete.\n" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "La suma hash difiere" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Omitiendo el fichero ya descargado «%s»\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "El tamaño difiere" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "No pude determinar el espacio libre en %s" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operación inválida: %s" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "You don't have enough free space in %s" -msgstr "No tiene suficiente espacio libre en %s" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +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:891 +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "No se pudo leer el archivo «Release» %s" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"No existe ninguna clave pública disponible para los siguientes " +"identificadores de clave:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Necesito descargar %sB/%sB de archivos fuente.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +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:896 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Necesito descargar %sB de archivos fuente.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Fetch source %s\n" -msgstr "Fuente obtenida %s\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Se produjo un error durante la verificación de las firmas. El repositorio no " +"está actualizado y se utilizarán los ficheros de índice antiguos. El error " +"GPG es: %s: %s\n" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "No se pudieron obtener algunos archivos." +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Error de GPG: %s: %s" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Descarga completa y en modo de sólo descarga" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"No se pudo localizar un archivo para el paquete %s. Esto puede significar " +"que necesita arreglar manualmente este paquete (debido a que falta una " +"arquitectura)" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Ignorando desempaquetamiento de paquetes ya desempaquetados en %s\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Falló la orden de desempaquetamiento «%s».\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Los archivos de índice de paquetes están dañados. No existe un campo " +"«Filename:» para el paquete %s." -#: cmdline/apt-get.cc:963 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Bloque de fabricante %s sin huella digital" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Falló la orden de construcción «%s».\n" +msgid "List directory %spartial is missing." +msgstr "Falta el directorio de listas %spartial." -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Falló el proceso hijo" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Falta el directorio de archivos %spartial." -#: cmdline/apt-get.cc:1029 -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" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "No se pudo bloquear el directorio %s" -#: cmdline/apt-get.cc:1054 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Descargando fichero %li de %li (falta %s)" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/acquire.cc:904 #, 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" +msgid "Retrieving file %li of %li" +msgstr "Descargando fichero %li de %li" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s no tiene dependencias de construcción.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Imposible obtener %s %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " -"el paquete %s" +"No se han podido descargar algunos archivos de índice, se han ignorado, o se " +"ha utilizado unos antiguos en su lugar." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Debe poner algunos URIs fuente («source») en su sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " -"el paquete %s" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"No se pudo satisfacer la dependencia %s para %s: El paquete instalado %s es " -"demasiado nuevo" +"Registro inválido en el archivo de preferencias %s, no hay cabecera «Package»" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "No se entiende el pin tipo %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "No hay prioridad especificada para pin (o es cero)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"La dependencia %s en %s no puede satisfacerse porque ninguna versión " -"disponible del paquete %s satisface los requisitos de versión" +"No se pudo realizar la configuración inmediata de «%s». Consulte la página " +"de manual con «man 5 apt.conf» bajo «APT::Immediate-Configure» para más " +"información. (%d)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "No pude abrir el fichero «%s»" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " -"el paquete %s" +"Esta ejecución de la instalación requiere eliminar temporalmente el paquete " +"esencial %s debido a un bucle de Conflictos/Pre-Dependencias. Esto " +"generalmente es malo, pero si realmente quiere hacerlo, active la opción |" +"APT::Force-LoopBreak»." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "No se pudo satisfacer la dependencia %s para %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Línea %u demasiado larga en la lista de fuentes %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando el CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "No se pudieron satisfacer las dependencias de construcción de %s." +msgid "Using CD-ROM mount point %s\n" +msgstr "Usando el punto de montaje del CD-ROM %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "No se pudieron procesar las dependencias de construcción" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Esperando el disco...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Conectando a %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando el CD-ROM...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos soportados:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " -#: cmdline/apt-get.cc:1632 -#, fuzzy -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 "" -"Uso: apt-get [opciones] orden\n" -" apt-get [opciones] install|remove paq1 [paq2 ...]\n" -" apt-get [opciones] source paq1 [paq2 ...]\n" -"\n" -"apt-get es una sencilla interfaz de línea de órdenes para descargar e\n" -"instalar paquetes. Las órdenes más utilizadas son update e install.\n" -"\n" -"Órdenes:\n" -" update - Descarga nuevas listas de paquetes\n" -" upgrade - Realiza una actualización\n" -" install - Instala nuevos paquetes (paquete es libc6 y no libc6.deb)\n" -" remove - Elimina paquetes\n" -" purge - Elimina y purga paquetes\n" -" source - Descarga archivos fuente\n" -" build-dep - Configura las dependencias de construcción para paquetes " -"fuente\n" -" dist-upgrade - Actualiza la distribución, vea apt-get(8)\n" -" dselect-upgrade - Sigue las selecciones de dselect\n" -" clean - Elimina los archivos descargados\n" -" autoclean - Elimina los archivos descargados antiguos\n" -" check - Verifica que no haya dependencias incumplidas\n" -" markauto - Marca los paquetes indicados como instalados de forma " -"automática\n" -" unmarkauto - Marca los paquetes indicados como instalado de forma manual\n" -"\n" -"Opciones:\n" -" -h Este texto de ayuda.\n" -" -q Salida registrable - sin indicador de progreso\n" -" -qq Sin salida, excepto si hay errores\n" -" -d Sólo descarga - NO instala o desempaqueta los archivos\n" -" -s No actúa. Realiza una simulación\n" -" -y Asume Sí para todas las consultas\n" -" -f Intenta continuar si la comprobación de integridad falla\n" -" -m Intenta continuar si los archivos no son localizables\n" -" -u Muestra también una lista de paquetes actualizados\n" -" -b Construye el paquete fuente después de obtenerlo\n" -" -V Muesta números de versión detallados\n" -" -c=? Lee este archivo de configuración\n" -" -o=? Establece una opción de configuración arbitraria, p. ej. \n" -" -o dir::cache=/tmp\n" -"Consulte las páginas del manual de apt-get(8), sources.list(5) y apt." -"conf(5)\n" -"para más información y opciones.\n" -" Este APT tiene poderes de Super Vaca.\n" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etiqueta guardada: %s \n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Debe especificar al menos un paquete para obtener su código fuente" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Buscando en el disco archivos de índices...\n" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Se encontraron %zu índices de paquetes, %zu índices de fuentes, %zu índices " +"de traducción y %zu firmas\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"No pude localizar ningún archivo de paquete, ¿quizás este no sea un disco de " +"Debian o sea de otra arquitectura?" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "pero no está instalado" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "fijado %s como instalado manualmente.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "fijado %s como instalado automáticamente.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ya está en su versión más reciente.\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Se encontró la etiqueta: «%s»\n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ya está en su versión más reciente.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Ese no es un nombre válido, inténtelo de nuevo.\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperaba %s pero no estaba allí" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Este disco se llama: \n" +"«%s»\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "fijado %s como instalado manualmente.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando las listas de paquetes..." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "No se pudo abrir %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Escribiendo nueva lista de fuente\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Las entradas de la lista de fuentes para este disco son:\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " +"éste." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " +"causado por paquetes retenidos." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "No pude leer la base de datos %s del cdrom" - -#: 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" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -"Por favor, utilice «apt-cdrom» para hacer que APT reconozca este CD. No " -"puede utilizar «apt-get update» para añadir nuevos CDs" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD equivocado" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "No pude desmontar el CD-ROM de %s, tal vez todavía este en uso." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco no encontrado." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fichero no encontrado" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "No pude leer" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "No pude poner el tiempo de modificación" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI inválido, los URIS locales no deben de empezar con //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Entrando" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "No pude determinar el nombre del par" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Imposible determinar el nombre local" +"No se pudieron corregir los problemas, usted ha retenido paquetes rotos." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "El servidor rechazó nuestra conexión y dijo: %s" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Creando árbol de dependencias" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "Usuario (USER) falló, el servidor dijo: %s" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versiones candidatas" -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "Clave (PASS) falló, el servidor dijo: %s" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generación de dependencias" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Se especificó un servidor proxy pero no un script de entrada, «Acquire::ftp::" -"ProxyLogin» está vacío." +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Leyendo la información de estado" -#: methods/ftp.cc:280 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Falló la orden «%s» del script de entrada, el servidor dijo: %s" +msgid "Failed to open StateFile %s" +msgstr "No se pudo abrir el fichero de estado %s" -#: methods/ftp.cc:306 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Tipo (TYPE) falló, el servidor dijo: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "La conexión expiró" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "El servidor cerró la conexión" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Error de lectura" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "No pude crear un socket." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Fallo del protocolo" - -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Error de escritura" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "No pude crear un socket" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "No pude conectar el socket de datos, expiró el tiempo de conexión" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Falló" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "No pude conectar un socket pasivo." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo no pude obtener un socket oyente" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "No pude ligar un socket" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "No pude escuchar en el socket" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "No pude determinar el nombre del socket" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "No pude mandar la orden PORT" +msgid "Failed to write temporary StateFile %s" +msgstr "Falló la escritura del fichero de estado temporal %s" -#: methods/ftp.cc:802 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Dirección de familia %u desconocida (AF_*)" +msgid "Unable to parse package file %s (1)" +msgstr "No se pudo tratar el archivo de paquetes %s (1)" -#: methods/ftp.cc:811 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falló, el servidor dijo: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Expiró conexión a socket de datos" +msgid "Unable to parse package file %s (2)" +msgstr "No se pudo tratar el archivo de paquetes %s (2)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "No pude aceptar la conexión" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "No se encontró la Distribución «%s» para «%s»" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Se produjo un problema al hacer un hash del archivo" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "No se encontró la versión «%s» para «%s»" -#: methods/ftp.cc:890 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Imposible traer archivo, el servidor dijo «%s»" +msgid "Unable to locate package %s" +msgstr "No se ha podido localizar el paquete %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Expiró el socket de datos" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "No se pudo encontrar la tarea «%s»" -#: methods/ftp.cc:935 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Falló transferencia de datos, el servidor dijo «%s»" +msgid "Couldn't find any package by regex '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Consulta" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "No pude invocar " +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"No se pueden seleccionar distintas versiones del paquete «%s» porque es " +"puramente virtual" -#: methods/connect.cc:76 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectando a %s (%s)" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"No se puede seleccionar una versión instalada o candidata para el paquete " +"«%s» dado que éste no tiene ninguna de éstas" -#: methods/connect.cc:87 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"No se puede seleccionar la última versión del paquete «%s» dado que es " +"puramente virtual" -#: methods/connect.cc:94 +#: apt-pkg/cacheset.cc:655 #, 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)" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"No se puede seleccionar una versión candidata del paquete %s dado que no " +"tiene candidatos" -#: methods/connect.cc:100 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "No puedo iniciar la conexión a %s:%s (%s)." +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"No se puede seleccionar una versión instalada del paquete «%s» puesto que no " +"está instalado" -#: methods/connect.cc:108 +#: apt-pkg/indexrecords.cc:78 #, 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" +msgid "Unable to parse Release file %s" +msgstr "No se pudo leer el archivo «Release» %s" -#: methods/connect.cc:126 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "No pude conectarme a %s:%s (%s)." +msgid "No sections in Release file %s" +msgstr "No se encontraron secciones en el archivo «Release» %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Connecting to %s" -msgstr "Conectando a %s" +msgid "No Hash entry in Release file %s" +msgstr "No existe una entrada «Hash» en el archivo «Release» %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/indexrecords.cc:130 #, c-format -msgid "Could not resolve '%s'" -msgstr "No se pudo resolver «%s»" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrada «Valid-Until» inválida en el archivo «Release» %s" -#: methods/connect.cc:205 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Fallo temporal al resolver «%s»" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrada «Date» inválida en el archivo «Release» %s" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de URI)" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Línea %lu mal formada en la lista de fuentes %s ([opción] no parseable)" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "No se pudo conectar a %s:%s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -"Error interno: Firma correcta, ¡¿pero no se pudo determinar su huella " -"digital?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Se encontró al menos una firma inválida." +"Línea %lu mal formada en la lista de fuentes %s ([opción] demasiado corta)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -"No se pudo ejecutar «gpgv» para verificar la firma (¿está instalado gpgv?)" +"Línea %lu mal formada en la lista de fuentes %s ([%s] no es una asignación)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" +"Línea %lu mal formada en la lista de fuentes %s (no hay clave para [%s])" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Error desconocido ejecutando gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Las siguientes firms fueron inválidas:\n" - -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Las firmas siguientes no se pudieron verificar porque su llave pública no " -"está disponible:\n" +"Línea %lu mal formada en la lista de fuentes %s ([%s] la clave %s no tiene " +"asociado un valor)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (URI)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Error escribiendo al archivo" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (dist)" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Error leyendo del servidor, el lado remoto cerró la conexión." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de URI)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Error leyendo del servidor" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (dist absoluta)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Error escribiendo a archivo" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de dist)" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Falló la selección" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Abriendo %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Expiró la conexión" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Línea %u mal formada en la lista de fuentes %s (tipo)" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Error escribiendo al archivo de salida" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Esperando las cabeceras" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Tipo «%s» desconocido en la línea %u de lista de fuentes %s" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Mala línea de cabecera" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Instalando %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "El servidor de http envió una cabecera de respuesta inválida" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Configurando %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "El servidor de http envió una cabecera de Content-Length inválida" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Eliminando %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "El servidor de http envió una cabecera de Content-Range inválida" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Borrando completamente %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Éste servidor de http tiene el soporte de alcance roto" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Se detectó la desaparición de %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de fecha desconocido" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Ejecutando disparador post-instalación %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Mala cabecera Data" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Falta el directorio «%s»." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Fallo la conexión" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "No pude abrir el fichero «%s»" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Error interno" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Preparando %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando la actualización... " +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Desempaquetando %s" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Error Interno, AllUpgrade rompió cosas" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Preparándose para configurar %s" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Listo" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s instalado" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Preparándose para eliminar %s" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s eliminado" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Preparing to completely remove %s" +msgstr "Preparándose para eliminar completamente %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corrigiendo dependencias..." +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Se borró completamente %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falló." +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "No se puede corregir las dependencias" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "No se puede escribir en %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "No se puede minimizar el conjunto de actualización" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Listo" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo." +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Esperaba %s pero no estaba allí" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f." +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" +"No se escribió ningún informe «apport» porque ya se ha alcanzado el valor de " +"«MaxReports»" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemas de dependencias - dejando sin instalar" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"No se escribió un informe «apport» porque el mensaje de error indica que es " +"un mensaje de error asociado a un fallo previo." -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" +"No se escribió un informe «apport» porque el mensaje de error indica que el " +"error es de disco lleno" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"No se escribió un informe «apport» porque el mensaje de error indica un " +"error de memoria excedida" -#: apt-private/private-output.cc:244 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 #, fuzzy -msgid "[installed]" -msgstr " [Instalado]" - -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" +"No se escribió un informe «apport» porque el mensaje de error indica que el " +"error es de disco lleno" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" +"No se escribió un informe «apport» porque el mensaje de error indica un " +"error de E/S de dpkg" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Los siguientes paquetes tienen dependencias incumplidas:" - -#: apt-private/private-output.cc:442 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "but %s is installed" -msgstr "pero %s está instalado" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"No se pudo bloquear el directorio de administración (%s), ¿quizás haya algún " +"otro proceso utilizándolo?" -#: apt-private/private-output.cc:444 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "but %s is to be installed" -msgstr "pero %s va a ser instalado" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "pero no es instalable" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "No se encontró un archivo de réplica «%s»" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "pero es un paquete virtual" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"se interrumpió la ejecución de dpkg, debe ejecutar manualmente «%s» para " +"corregir el problema" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "pero no está instalado" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "No bloqueado" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "pero no va a instalarse" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin. %liseg." -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " o" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin. %liseg." -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Se instalarán los siguientes paquetes NUEVOS:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin. %liseg." -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Los siguientes paquetes se ELIMINARÁN:" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liseg." -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Los siguientes paquetes se han retenido:" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Selección %s no encontrada" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Se actualizarán los siguientes paquetes:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "No se utiliza bloqueos para el fichero de bloqueo de sólo lectura %s" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Se DESACTUALIZARÁN los siguientes paquetes:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "No se pudo abrir el fichero de bloqueo «%s»" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Se cambiarán los siguientes paquetes retenidos:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "No se utilizan bloqueos para el fichero de bloqueo de montaje nfs %s" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%s (due to %s) " -msgstr "%s (por %s) " +msgid "Could not get lock %s" +msgstr "No se pudo bloquear %s" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"AVISO: Se van a eliminar los siguientes paquetes esenciales.\n" -"¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu actualizados, %lu se instalarán, " +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "%lu downgraded, " -msgstr "%lu desactualizados, " +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu para eliminar y %lu no actualizados.\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "El subproceso %s recibió un fallo de segmentación." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu no instalados del todo o eliminados.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[S/n]" +msgid "Sub-process %s received signal %u." +msgstr "El subproceso %s recibió la señal %u." -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "El subproceso %s devolvió un código de error (%u)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "El subproceso %s terminó de forma inesperada" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Error de escritura" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Regex compilation error - %s" -msgstr "Error de compilación de expresiones regulares - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "El comando de actualización no toma argumentos" +msgid "Problem closing the gzip file %s" +msgstr "Se produjo un problema al cerrar el fichero gzip %s" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Could not open file %s" +msgstr "No pude abrir el fichero %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Could not open file descriptor %d" +msgstr "No se pudo abrir el descriptor de fichero %d" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "No se pudo crear el subproceso IPC" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Error interno, ¡se llamó a «InstallPackages» con paquetes rotos!" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "No se pudo ejecutar el compresor " -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "" -"Los paquetes necesitan eliminarse pero está deshabilitado la posibilidad de " -"eliminar." +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Error de lectura" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Error interno, no terminó la ordenación" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "leídos, todavía debía leer %lu pero no queda nada" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Qué raro... Los tamaños no concuerdan, mande un correo a apt@packages.debian." -"org" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escritos, todavía tenía que escribir %lu pero no pude hacerlo" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Se necesita descargar %sB/%sB de archivos.\n" +msgid "Problem closing the file %s" +msgstr "Se produjo un problema al cerrar el fichero %s" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Necesito descargar %sB de archivos.\n" +msgid "Problem renaming the file %s to %s" +msgstr "Se produjo un problema al renombrar el fichero %s a %s" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Se utilizarán %sB de espacio de disco adicional después de esta operación.\n" +msgid "Problem unlinking the file %s" +msgstr "Se produjo un problema al desligar el fichero %s" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Se produjo un problema al sincronizar el fichero" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Se liberarán %sB después de esta operación.\n" +msgid "%c%s... Error!" +msgstr "%c%s... ¡Error!" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "You don't have enough free space in %s." -msgstr "No tiene suficiente espacio libre en %s." +msgid "%c%s... Done" +msgstr "%c%s... Hecho" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Hay problemas y se utilizó -y sin --force-yes" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Se especificó Trivial Only pero ésta no es una operación trivial." +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hecho" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Sí, ¡haga lo que le digo!" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "No puedo hacer mmap de un fichero vacío" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Está a punto de hacer algo potencialmente dañino\n" -"Para continuar escriba la frase «%s»\n" -" ?] " - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Abortado." - -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "¿Desea continuar?" +msgid "Couldn't duplicate file descriptor %i" +msgstr "No pude duplicar el descriptor de fichero %i" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "No se pudieron descargar algunos archivos" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "No pude hacer mmap de %lu bytes" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"No se pudieron obtener algunos archivos, ¿quizás deba ejecutar «apt-get " -"update» o deba intentarlo de nuevo con --fix-missing?" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "No se pudo cerrar «mmap»" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "Actualmente no están soportados --fix-missing e intercambio de medio" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "No pude sincronizar «mmap»" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "No se pudieron corregir los paquetes que faltan." +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "No pude hacer mmap de %lu bytes" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Abortando la instalación." +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falló al truncar el archivo" -#: apt-private/private-install.cc:365 +#: apt-pkg/contrib/mmap.cc:341 +#, c-format 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] "" -"El paquete mostrado a continuación ha desaparecido de su sistema\n" -"dado que todos sus ficheros han sido sobreescritos por otros paquetes:" -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:" - -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: Dpkg realiza esto de forma automática y a propósito." +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"La asignación dinámica MMap no tiene más espacio. Por favor, incrementa el " +"valor de «APT::Cache-Start». El valor actual es: %lu (man 5 apt.conf)" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»" +"No se pudo incrementar el tamaño del MMap dado que se ha alcanzado ya el " +"límite de %lu bytes." -#: apt-private/private-install.cc:498 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Hmmm. Parece que «AutoRemover» destruyó algo y eso no debería haber pasado. " -"Por favor, envíe un informe de fallo al programa apt." +"No se pudo incrementar el tamaño de MMap dado que el usuario ha " +"deshabilitado el crecimiento automático." -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "La siguiente información puede ayudar a resolver la situación:" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "No se puede obtener información del punto de montaje %s" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Error interno, «AutoRemover» rompió cosas" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "No pude montar el cdrom" -#: apt-private/private-install.cc:512 -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] "" -"El paquete indicado a continuación se instaló de forma automática y ya no es " -"necesarios." -msgstr[1] "" -"Los paquetes indicados a continuación se instalaron de forma automática y ya " -"no son necesarios." +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tipo de abreviación no reconocida: «%c»" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:633 #, 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] "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" +msgid "Opening configuration file %s" +msgstr "Abriendo fichero de configuración %s" -#: apt-private/private-install.cc:518 -#, 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." +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Error de sintaxis %s:%u: No hay un nombre al comienzo del bloque." -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo:" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Error de sintaxis %s:%u: Marca mal formada" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Error de sintaxis %s:%u: Basura extra después del valor" + +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o " -"especifique una solución)." +"Error de sintaxis %s:%u: Las directivas sólo se pueden poner en el primer " +"nivel" -#: apt-private/private-install.cc:628 -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." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas" + +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Error de sintaxis %s:%u: Incluido desde aquí" + +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Error de sintaxis %s:%u: Directiva «%s» no soportada" + +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"No se pudieron instalar algunos paquetes. Esto puede significar que\n" -"usted pidió una situación imposible o, si está usando la distribución\n" -"inestable, que algunos paquetes necesarios no han sido creados o han\n" -"sido movidos fuera de Incoming." +"Error de sintaxis %s:%u: la directiva «clear» tiene que incluir un árbol de " +"opciones como argumento" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Paquetes rotos" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Se instalarán los siguientes paquetes extras:" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "No se instaló ningún anillo de claves %s." -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Paquetes sugeridos:" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "No se conoce la opción de línea de órdenes «%c» [de %s]." -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Paquetes recomendados:" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "No se entiende la opción de línea de órdenes %s" -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Ignorando %s, ya está instalado y no está activada la actualización.\n" +msgid "Command line option %s is not boolean" +msgstr "La opción de línea de órdenes %s no es un booleano" -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "Option %s requires an argument." +msgstr "La opción %s necesita un argumento." + +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -"Ignorando %s, no está instalado y sólo se están solicitando " -"actualizaciones.\n" +"Opción %s: La especificación del elemento de configuración debe tener un " +"=<val>." -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "No es posible reinstalar el paquete %s, no se puede descargar.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "La opción %s exige un argumento entero, no «%s»" -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ya está en su versión más reciente.\n" +msgid "Option '%s' is too long" +msgstr "Opción «%s» demasiado larga" -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s»\n" +msgid "Sense %s is not understood, try true or false." +msgstr "El sentido %s no se entiende, pruebe verdadero o falso." -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s»\n" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Operación inválida: %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "El paquete %s no está instalado, no se eliminará\n" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "El paquete %s versión %s tiene dependencias incumplidas:\n" -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "El paquete %s no está instalado, no se eliminará\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Nombres de paquetes totales: " -#: apt-private/private-main.cc:32 -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 "" -"NOTA: ¡Esto es sólo una simulación\n" -" apt-get necesita privilegios de administrador para la ejecución real.\n" -" Tenga también en cuenta que se han desactivado los bloqueos,\n" -" ¡no dependa de la relevancia a la situación real actual!" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Estructuras de paquetes totales: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquetes normales: " + +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquetes virtuales puros: " + +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquetes virtuales únicos: " + +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquetes virtuales mixtos: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Aviso de autenticación ignorado.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Faltan: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Algunos paquetes no se pueden autenticar" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Versiones diferentes totales: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "¿Instalar estos paquetes sin verificación?" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Descripciones diferentes totales: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Imposible obtener %s %s\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Dependencias totales: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "No pude abrir %s.new" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Relaciones versión/archivo totales: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Relaciones descripción/archivo totales: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Mapeo Total de Provisiones: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Obj " +# globbed -> globalizadas ? (jfs) +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Cadenas globalizadas totales: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Des:" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espacio de versión de dependencias total: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Espacio desperdiciado total: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Espacio registrado total: " -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Descargados %sB en %s (%sB/s)\n" +msgid "Package file %s is out of sync." +msgstr "El archivo de paquetes %s está desincronizado." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Trabajando]" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "No se encontró ningún paquete" -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Debe proporcionar al menos un patrón de búsqueda" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Cambio de medio: Por favor, inserte el disco etiquetado como\n" -" «%s»\n" -"en la unidad «%s» y pulse Intro\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "No pude leer %s" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Archivos de paquetes:" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "No se pudo cambiar a %s" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Caché fuera de sincronismo, no se puede hacer x-ref a un archivo de paquetes" -#. 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 "No se encontró un archivo de réplica «%s»" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquetes con pin:" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "No se encontró un archivo de réplica «%s»" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(no encontrado)" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "No se encontró un archivo de réplica «%s»" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalados: " -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Réplica: %s]" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Falló la creación de una tubería IPC para el subproceso" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ninguno)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "La conexión se cerró prematuramente" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pin del paquete: " -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "¡Parámetro por omisión incorrecto!" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabla de versión:" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pulse Intro para continuar." +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado en %s %s\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "¿Desea borrar los archivos .deb descargados con anterioridad?" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Modo de uso: apt-cache [opciones] orden\n" +" apt-cache [opciones] add archivo1 [archivo2 ...]\n" +" apt-cache [opciones] showpkg paq1 [paq2 ...]\n" +" apt-cache [opciones] showsrc paq1 [paq2 ...]\n" +"\n" +"apt-cache es una herramienta de bajo nivel que se utiliza para manipular\n" +"los archivos binarios de caché de APT y consultar información sobre éstos\n" +"\n" +"Órdenes:\n" +" add - Agrega un archivo de paquete a la caché de fuentes\n" +" gencaches - Crea ambas cachés, la de paquetes y la de fuentes\n" +" showpkg - Muestra información general para un solo paquete\n" +" showsrc - Muestra la información de fuentes\n" +" stats - Muestra algunas estadísticas básicas\n" +" dump - Muestra el archivo entero en un formato terso\n" +" dumpavail - Imprime un archivo disponible a la salida estándar\n" +" unmet - Muestra dependencias incumplidas\n" +" search - Busca en la lista de paquetes por un patrón de expresión " +"regular\n" +" show - Muestra un registro legible para el paquete\n" +" showauto - Muestra una lista de los paquetes instalados de forma " +"automática\n" +" depends - Muestra la información de dependencias en bruto para el " +"paquete\n" +" rdepends - Muestra la información de dependencias inversas del paquete\n" +" pkgnames - Lista los nombres de todos los paquetes en el sistema\n" +" dotty - Genera gráficas del paquete para GraphViz\n" +" xvcg - Genera gráficas del paquete para xvcg\n" +" policy - Muestra parámetros de las normas\n" +"\n" +"Opciones:\n" +" -h Este texto de ayuda.\n" +" -p=? La caché de paquetes.\n" +" -s=? La caché de fuentes.\n" +" -q Deshabilita el indicador de progreso.\n" +" -i Muestra sólo dependencias importantes para la orden incumplida.\n" +" -c=? Lee este archivo de configuración\n" +" -o=? Establece una opción de configuración arbitraria, \n" +" p.ej. -o dir::cache=/tmp\n" +"Vea las páginas del manual apt-cache(8) y apt.conf(5) para más información.\n" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -"Se produjeron algunos problemas mientras se desempaquetaba. Los paquetes que " -"se instalaron" +"Proporcione un nombre para este disco, como pueda ser «Debian 5.0.3 Disco 1»" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "van a configurarse. Esto puede dar lugar a errores duplicados" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Por favor, introduzca un disco en la unidad y pulse Intro" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"o errores causados por dependencias no presentes. Esto está BIEN, sólo los " -"errores" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "No se pudo montar «%s» como «%s»" -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"encima de este mensaje son importantes. Por favor, corríjalas y ejecute " -"«[I]nstall» otra vez" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Fusionando información disponible" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode llamado en un nodo todavía ligado" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "¡No pude localizar el elemento enlazado!" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "No pude asignar una desviación" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repita este proceso para el resto de los CDs del conjunto." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Error interno en AddDiversion" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentos no emparejados" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Tratando de sobreescribir una desviación, %s -> %s y %s/%s" +#: cmdline/apt-config.cc:89 +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 "" +"Uso: apt-config [opciones] orden\n" +"\n" +"apt-config es una herramienta para leer el archivo de configuración de APT.\n" +"\n" +"Comandos:\n" +" shell - Modo shell\n" +" dump - Muestra la configuración\n" +"\n" +"Opciones:\n" +" -h Este texto de ayuda.\n" +" -c=? Lee este archivo de configuración\n" +" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n" +" cache=/tmp\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doble suma de desviación %s -> %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Archivo de configuración duplicado %s/%s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "La trayectoria %s es demasiado larga" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempaquetando %s más de una vez" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "El directorio %s está desviado" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorar la versión no disponible «%s» del paquete «%s»" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:454 #, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "La trayectoria de desviación es demasiado larga" +msgid "Couldn't find package %s" +msgstr "No se pudo encontrar el paquete %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Failed to stat %s" -msgstr "No pude leer %s" +msgid "%s set to manually installed.\n" +msgstr "fijado %s como instalado manualmente.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Falló el renombre de %s a %s" +msgid "%s set to automatically installed.\n" +msgstr "fijado %s como instalado automáticamente.\n" -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "El directorio %s está siendo reemplazado por un no-directorio" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "No pude localizar el nodo en su bote de enlace" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "" +"Error interno, el sistema de solución de problemas rompió algunas cosas" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "La trayectoria es muy larga" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "No se puede bloquear el directorio de descarga" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Sobreescribiendo concordancia del paquete sin versión para %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Debe especificar al menos un paquete para obtener su código fuente" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, 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" +msgid "Unable to find a source package for %s" +msgstr "No se pudo encontrar un paquete de fuentes para %s" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Unable to stat %s" -msgstr "No pude leer %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"NOTA: el empaquetamiento de «%s» se mantiene en el sistema de control de " +"versiones «%s» en:\n" +"%s\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "Falló la escritura del archivo %s" +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Por favor, utilice:\n" +"bzr get %s\n" +"para obtener las últimas actualizaciones (posiblemente no publicadas aún) " +"del paquete.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Failed to close file %s" -msgstr "No pude cerrar el archivo %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Omitiendo el fichero ya descargado «%s»\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Este no es un archivo DEB válido, falta el miembro «%s»" +msgid "Couldn't determine free space in %s" +msgstr "No pude determinar el espacio libre en %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Error interno, no pude localizar el miembro %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Archivo de control inanalizable" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Firma del archivo inválida" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Error leyendo la cabecera de miembro del archivo" +msgid "You don't have enough free space in %s" +msgstr "No tiene suficiente espacio libre en %s" -#: apt-inst/contrib/arfile.cc:96 +#. 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:891 #, c-format -msgid "Invalid archive member header %s" -msgstr "Cabecera de miembro del archivo inválida %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabecera de miembro del archivo inválida" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Necesito descargar %sB/%sB de archivos fuente.\n" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "El archivo es muy pequeño" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Necesito descargar %sB de archivos fuente.\n" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "No pude leer las cabeceras del archivo" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Fuente obtenida %s\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "No pude crear las tuberías" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "No se pudieron obtener algunos archivos." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "No pude ejecutar gzip" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Descarga completa y en modo de sólo descarga" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archivo dañado" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Ignorando desempaquetamiento de paquetes ya desempaquetados en %s\n" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "" -"Se produjo un fallo al calcular la suma de control de tar, archive dañado" +#: cmdline/apt-get.cc:962 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Falló la orden de desempaquetamiento «%s».\n" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Cabecera del TAR tipo %u desconocida, miembro %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Unable to stat %s." -msgstr "No se pudo leer %s." +msgid "Build command '%s' failed.\n" +msgstr "Falló la orden de construcción «%s».\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Falló el proceso hijo" + +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "Progress: [%3i%%]" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Ejecutando dpkg" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, 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" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "No está soportado el sistema de paquetes «%s»" +msgid "%s has no build depends.\n" +msgstr "%s no tiene dependencias de construcción.\n" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " +"el paquete %s" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records.\n" -msgstr "%i registros escritos.\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " +"el paquete %s" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i registros escritos con %i fichero de menos.\n" +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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i registros escritos con %i fichero mal emparejado\n" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"La dependencia %s en %s no puede satisfacerse porque ninguna versión " +"disponible del paquete %s satisface los requisitos de versión" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"%i registros escritos con %i fichero de menos y %i ficheros mal emparejados\n" +"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " +"el paquete %s" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "No se pudo encontrar un registro de autenticación para: %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "No se pudo satisfacer la dependencia %s para %s: %s" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Hash mismatch for: %s" -msgstr "La suma hash difiere para: %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "No se pudieron satisfacer las dependencias de construcción de %s." -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "No se pudo encontrar el método %s." +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "No se pudieron procesar las dependencias de construcción" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" +msgid "Changelog for %s (%s)" +msgstr "Conectando a %s (%s)" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "El método %s no se inició correctamente" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Módulos soportados:" + +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Uso: apt-get [opciones] orden\n" +" apt-get [opciones] install|remove paq1 [paq2 ...]\n" +" apt-get [opciones] source paq1 [paq2 ...]\n" +"\n" +"apt-get es una sencilla interfaz de línea de órdenes para descargar e\n" +"instalar paquetes. Las órdenes más utilizadas son update e install.\n" +"\n" +"Órdenes:\n" +" update - Descarga nuevas listas de paquetes\n" +" upgrade - Realiza una actualización\n" +" install - Instala nuevos paquetes (paquete es libc6 y no libc6.deb)\n" +" remove - Elimina paquetes\n" +" purge - Elimina y purga paquetes\n" +" source - Descarga archivos fuente\n" +" build-dep - Configura las dependencias de construcción para paquetes " +"fuente\n" +" dist-upgrade - Actualiza la distribución, vea apt-get(8)\n" +" dselect-upgrade - Sigue las selecciones de dselect\n" +" clean - Elimina los archivos descargados\n" +" autoclean - Elimina los archivos descargados antiguos\n" +" check - Verifica que no haya dependencias incumplidas\n" +" markauto - Marca los paquetes indicados como instalados de forma " +"automática\n" +" unmarkauto - Marca los paquetes indicados como instalado de forma manual\n" +"\n" +"Opciones:\n" +" -h Este texto de ayuda.\n" +" -q Salida registrable - sin indicador de progreso\n" +" -qq Sin salida, excepto si hay errores\n" +" -d Sólo descarga - NO instala o desempaqueta los archivos\n" +" -s No actúa. Realiza una simulación\n" +" -y Asume Sí para todas las consultas\n" +" -f Intenta continuar si la comprobación de integridad falla\n" +" -m Intenta continuar si los archivos no son localizables\n" +" -u Muestra también una lista de paquetes actualizados\n" +" -b Construye el paquete fuente después de obtenerlo\n" +" -V Muesta números de versión detallados\n" +" -c=? Lee este archivo de configuración\n" +" -o=? Establece una opción de configuración arbitraria, p. ej. \n" +" -o dir::cache=/tmp\n" +"Consulte las páginas del manual de apt-get(8), sources.list(5) y apt." +"conf(5)\n" +"para más información y opciones.\n" +" Este APT tiene poderes de Super Vaca.\n" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Por favor, inserte el disco «%s» en la unidad «%s» y pulse Intro." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Debe especificar al menos un paquete para obtener su código fuente" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"No se pudieron analizar o abrir las listas de paquetes o el archivo de " -"estado." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Tal vez quiera ejecutar «apt-get update» para corregir estos problemas" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "No se pudieron leer las listas de fuentes." -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Caché de paquetes vacía." +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "El archivo de caché de paquetes está dañado" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "pero no está instalado" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "El archivo de caché de paquetes es una versión incompatible" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "fijado %s como instalado manualmente.\n" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "El archivo de caché de paquetes está dañado" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "fijado %s como instalado automáticamente.\n" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Esta versión de APT no soporta el sistema de versiones «%s»" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ya está en su versión más reciente.\n" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "La caché de paquetes se había creado para una arquitectura diferente" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ya está en su versión más reciente.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "fijado %s como instalado manualmente.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PreDepende" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "No se pudo abrir %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugiere" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomienda" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Entra en conflicto" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Reemplaza" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "No pude leer la base de datos %s del cdrom" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Hace obsoleto" +#: 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 "" +"Por favor, utilice «apt-cdrom» para hacer que APT reconozca este CD. No " +"puede utilizar «apt-get update» para añadir nuevos CDs" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Rompe" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD equivocado" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Mejora" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "No pude desmontar el CD-ROM de %s, tal vez todavía este en uso." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco no encontrado." -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requiere" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fichero no encontrado" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estándar" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "No pude leer" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "No pude poner el tiempo de modificación" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI inválido, los URIS locales no deben de empezar con //" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "No se da soporte para el tipo de archivo de índice «%s»" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Entrando" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La caché tiene una versión incompatible de sistema de versiones" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "No pude determinar el nombre del par" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Se produjo un error mientras se procesaba %s (FindPkg)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Imposible determinar el nombre local" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Vaya, excedió el número de nombres de paquetes que este APT es capaz de " -"manejar." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "El servidor rechazó nuestra conexión y dijo: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Vaya, excedió el número de versiones que este APT es capaz de manejar." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Usuario (USER) falló, el servidor dijo: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Vaya, excedió el número de descripciones que este APT es capaz de manejar." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Clave (PASS) falló, el servidor dijo: %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Vaya, excedió el número de dependencias que este APT es capaz de manejar." +"Se especificó un servidor proxy pero no un script de entrada, «Acquire::ftp::" +"ProxyLogin» está vacío." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, 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" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Falló la orden «%s» del script de entrada, el servidor dijo: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "No se puede leer la lista de paquetes fuente %s" +msgid "TYPE failed, server said: %s" +msgstr "Tipo (TYPE) falló, el servidor dijo: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Leyendo lista de paquetes" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "La conexión expiró" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Recogiendo archivos que proveen" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "El servidor cerró la conexión" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "No se puede escribir en %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "No pude crear un socket." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Error de E/S guardando caché fuente" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Fallo del protocolo" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "No pude crear un socket" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "No pude conectar el socket de datos, expiró el tiempo de conexión" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falló" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "No pude conectar un socket pasivo." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo no pude obtener un socket oyente" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falló el cambio de nombre, %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "No pude ligar un socket" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "La suma hash difiere" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "No pude escuchar en el socket" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "El tamaño difiere" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "No pude determinar el nombre del socket" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operación inválida: %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "No pude mandar la orden PORT" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Unknown address family %u (AF_*)" +msgstr "Dirección de familia %u desconocida (AF_*)" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "No se pudo leer el archivo «Release» %s" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT falló, el servidor dijo: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"No existe ninguna clave pública disponible para los siguientes " -"identificadores de clave:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Expiró conexión a socket de datos" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "No pude aceptar la conexión" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Se produjo un problema al hacer un hash del archivo" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Se produjo un error durante la verificación de las firmas. El repositorio no " -"está actualizado y se utilizarán los ficheros de índice antiguos. El error " -"GPG es: %s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Imposible traer archivo, el servidor dijo «%s»" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "Error de GPG: %s: %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Expiró el socket de datos" -#: apt-pkg/acquire-item.cc:1867 +#: methods/ftp.cc:935 #, 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 "" -"No se pudo localizar un archivo para el paquete %s. Esto puede significar " -"que necesita arreglar manualmente este paquete (debido a que falta una " -"arquitectura)" +msgid "Data transfer failed, server said '%s'" +msgstr "Falló transferencia de datos, el servidor dijo «%s»" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Consulta" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "No pude invocar " -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:76 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Conectando a %s (%s)" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:87 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Los archivos de índice de paquetes están dañados. No existe un campo " -"«Filename:» para el paquete %s." +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:94 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Bloque de fabricante %s sin huella digital" +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)" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:100 #, c-format -msgid "List directory %spartial is missing." -msgstr "Falta el directorio de listas %spartial." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "No puedo iniciar la conexión a %s:%s (%s)." -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:108 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta el directorio de archivos %spartial." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "No pude conectarme a %s:%s (%s), expiró tiempo para conexión" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:126 #, c-format -msgid "Unable to lock directory %s" -msgstr "No se pudo bloquear el directorio %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "No pude conectarme a %s:%s (%s)." -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Descargando fichero %li de %li (falta %s)" +msgid "Connecting to %s" +msgstr "Conectando a %s" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Descargando fichero %li de %li" +msgid "Could not resolve '%s'" +msgstr "No se pudo resolver «%s»" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"No se han podido descargar algunos archivos de índice, se han ignorado, o se " -"ha utilizado unos antiguos en su lugar." +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Fallo temporal al resolver «%s»" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Debe poner algunos URIs fuente («source») en su sources.list" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:211 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:258 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "Unable to connect to %s:%s:" +msgstr "No se pudo conectar a %s:%s:" + +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Registro inválido en el archivo de preferencias %s, no hay cabecera «Package»" +"Error interno: Firma correcta, ¡¿pero no se pudo determinar su huella " +"digital?!" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "No se entiende el pin tipo %s" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Se encontró al menos una firma inválida." -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "No hay prioridad especificada para pin (o es cero)" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"No se pudo ejecutar «gpgv» para verificar la firma (¿está instalado gpgv?)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"No se pudo realizar la configuración inmediata de «%s». Consulte la página " -"de manual con «man 5 apt.conf» bajo «APT::Immediate-Configure» para más " -"información. (%d)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "No pude abrir el fichero «%s»" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Error desconocido ejecutando gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Las siguientes firms fueron inválidas:\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Esta ejecución de la instalación requiere eliminar temporalmente el paquete " -"esencial %s debido a un bucle de Conflictos/Pre-Dependencias. Esto " -"generalmente es malo, pero si realmente quiere hacerlo, active la opción |" -"APT::Force-LoopBreak»." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Línea %u demasiado larga en la lista de fuentes %s." +"Las firmas siguientes no se pudieron verificar porque su llave pública no " +"está disponible:\n" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando el CD-ROM...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Usando el punto de montaje del CD-ROM %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Error escribiendo al archivo" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Esperando el disco...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Error leyendo del servidor, el lado remoto cerró la conexión." -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando el CD-ROM...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Error leyendo del servidor" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Error escribiendo a archivo" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etiqueta guardada: %s \n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Falló la selección" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Buscando en el disco archivos de índices...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Expiró la conexión" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Se encontraron %zu índices de paquetes, %zu índices de fuentes, %zu índices " -"de traducción y %zu firmas\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Error escribiendo al archivo de salida" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"No pude localizar ningún archivo de paquete, ¿quizás este no sea un disco de " -"Debian o sea de otra arquitectura?" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Esperando las cabeceras" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Se encontró la etiqueta: «%s»\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Mala línea de cabecera" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Ese no es un nombre válido, inténtelo de nuevo.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "El servidor de http envió una cabecera de respuesta inválida" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Este disco se llama: \n" -"«%s»\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "El servidor de http envió una cabecera de Content-Length inválida" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiando las listas de paquetes..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "El servidor de http envió una cabecera de Content-Range inválida" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Escribiendo nueva lista de fuente\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Éste servidor de http tiene el soporte de alcance roto" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Las entradas de la lista de fuentes para este disco son:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de fecha desconocido" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " -"éste." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Mala cabecera Data" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " -"causado por paquetes retenidos." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Fallo la conexión" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" -"No se pudieron corregir los problemas, usted ha retenido paquetes rotos." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Error interno" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Creando árbol de dependencias" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando la actualización... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versiones candidatas" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Listo" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generación de dependencias" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Leyendo la información de estado" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "No se pudo abrir el fichero de estado %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Falló la escritura del fichero de estado temporal %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Corrigiendo dependencias..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "No se pudo tratar el archivo de paquetes %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " falló." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "No se pudo tratar el archivo de paquetes %s (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "No se puede corregir las dependencias" + +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "No se puede minimizar el conjunto de actualización" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "No se encontró la Distribución «%s» para «%s»" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Listo" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "No se encontró la versión «%s» para «%s»" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo." -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "No se pudo encontrar la tarea «%s»" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +msgid "[installed,upgradable to: %s]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"No se pueden seleccionar distintas versiones del paquete «%s» porque es " -"puramente virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"No se puede seleccionar una versión instalada o candidata para el paquete " -"«%s» dado que éste no tiene ninguna de éstas" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"No se puede seleccionar la última versión del paquete «%s» dado que es " -"puramente virtual" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"No se puede seleccionar una versión candidata del paquete %s dado que no " -"tiene candidatos" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"No se puede seleccionar una versión instalada del paquete «%s» puesto que no " -"está instalado" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "No se pudo leer el archivo «Release» %s" +msgid "but %s is installed" +msgstr "pero %s está instalado" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "No se encontraron secciones en el archivo «Release» %s" +msgid "but %s is to be installed" +msgstr "pero %s va a ser instalado" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "No existe una entrada «Hash» en el archivo «Release» %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "pero no es instalable" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Entrada «Valid-Until» inválida en el archivo «Release» %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "pero es un paquete virtual" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Entrada «Date» inválida en el archivo «Release» %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "pero no está instalado" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de URI)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "pero no va a instalarse" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Línea %lu mal formada en la lista de fuentes %s ([opción] no parseable)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " o" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Línea %lu mal formada en la lista de fuentes %s ([opción] demasiado corta)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Los siguientes paquetes tienen dependencias incumplidas:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Línea %lu mal formada en la lista de fuentes %s ([%s] no es una asignación)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Se instalarán los siguientes paquetes NUEVOS:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"Línea %lu mal formada en la lista de fuentes %s (no hay clave para [%s])" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Los siguientes paquetes se ELIMINARÁN:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Los siguientes paquetes se han retenido:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Se actualizarán los siguientes paquetes:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Se DESACTUALIZARÁN los siguientes paquetes:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Se cambiarán los siguientes paquetes retenidos:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%s (due to %s) " +msgstr "%s (por %s) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Línea %lu mal formada en la lista de fuentes %s ([%s] la clave %s no tiene " -"asociado un valor)" +"AVISO: Se van a eliminar los siguientes paquetes esenciales.\n" +"¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu actualizados, %lu se instalarán, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (dist)" +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de URI)" +msgid "%lu downgraded, " +msgstr "%lu desactualizados, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (dist absoluta)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu para eliminar y %lu no actualizados.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de dist)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu no instalados del todo o eliminados.\n" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Abriendo %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Línea %u mal formada en la lista de fuentes %s (tipo)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: apt-pkg/sourcelist.cc:375 -#, 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" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Tipo «%s» desconocido en la línea %u de lista de fuentes %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instalando %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "El comando de actualización no toma argumentos" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-update.cc:90 #, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Eliminando %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-show.cc:156 #, c-format -msgid "Completely removing %s" -msgstr "Borrando completamente %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Se detectó la desaparición de %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Error interno, ¡se llamó a «InstallPackages» con paquetes rotos!" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Ejecutando disparador post-instalación %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Los paquetes necesitan eliminarse pero está deshabilitado la posibilidad de " +"eliminar." -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Falta el directorio «%s»." +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Error interno, no terminó la ordenación" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "No pude abrir el fichero «%s»" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Qué raro... Los tamaños no concuerdan, mande un correo a apt@packages.debian." +"org" -#: apt-pkg/deb/dpkgpm.cc:989 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Se necesita descargar %sB/%sB de archivos.\n" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Unpacking %s" -msgstr "Desempaquetando %s" +msgid "Need to get %sB of archives.\n" +msgstr "Necesito descargar %sB de archivos.\n" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Preparing to configure %s" -msgstr "Preparándose para configurar %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Se utilizarán %sB de espacio de disco adicional después de esta operación.\n" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Installed %s" -msgstr "%s instalado" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Se liberarán %sB después de esta operación.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparándose para eliminar %s" +msgid "You don't have enough free space in %s." +msgstr "No tiene suficiente espacio libre en %s." -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s eliminado" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Hay problemas y se utilizó -y sin --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparándose para eliminar completamente %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Se especificó Trivial Only pero ésta no es una operación trivial." -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Se borró completamente %s" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sí, ¡haga lo que le digo!" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Está a punto de hacer algo potencialmente dañino\n" +"Para continuar escriba la frase «%s»\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "No se puede escribir en %s" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abortado." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "¿Desea continuar?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "No se pudieron descargar algunos archivos" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"No se pudieron obtener algunos archivos, ¿quizás deba ejecutar «apt-get " +"update» o deba intentarlo de nuevo con --fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"No se escribió ningún informe «apport» porque ya se ha alcanzado el valor de " -"«MaxReports»" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "Actualmente no están soportados --fix-missing e intercambio de medio" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemas de dependencias - dejando sin instalar" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "No se pudieron corregir los paquetes que faltan." -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica que es " -"un mensaje de error asociado a un fallo previo." +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Abortando la instalación." -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica que el " -"error es de disco lleno" +"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] "" +"El paquete mostrado a continuación ha desaparecido de su sistema\n" +"dado que todos sus ficheros han sido sobreescritos por otros paquetes:" +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:" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica un " -"error de memoria excedida" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Dpkg realiza esto de forma automática y a propósito." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica que el " -"error es de disco lleno" +"Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica un " -"error de E/S de dpkg" +"Hmmm. Parece que «AutoRemover» destruyó algo y eso no debería haber pasado. " +"Por favor, envíe un informe de fallo al programa apt." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "La siguiente información puede ayudar a resolver la situación:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Error interno, «AutoRemover» rompió cosas" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"No se pudo bloquear el directorio de administración (%s), ¿quizás haya algún " -"otro proceso utilizándolo?" +"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] "" +"El paquete indicado a continuación se instaló de forma automática y ya no es " +"necesarios." +msgstr[1] "" +"Los paquetes indicados a continuación se instalaron de forma automática y ya " +"no son necesarios." -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "No se encontró un archivo de réplica «%s»" +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] "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" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +#, 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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"se interrumpió la ejecución de dpkg, debe ejecutar manualmente «%s» para " -"corregir el problema" +"Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o " +"especifique una solución)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "No bloqueado" +#: apt-private/private-install.cc:638 +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 "" +"No se pudieron instalar algunos paquetes. Esto puede significar que\n" +"usted pidió una situación imposible o, si está usando la distribución\n" +"inestable, que algunos paquetes necesarios no han sido creados o han\n" +"sido movidos fuera de Incoming." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin. %liseg." +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquetes rotos" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin. %liseg." +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Se instalarán los siguientes paquetes extras:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin. %liseg." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquetes sugeridos:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%liseg." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquetes recomendados:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Selección %s no encontrada" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Ignorando %s, ya está instalado y no está activada la actualización.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "No se utiliza bloqueos para el fichero de bloqueo de sólo lectura %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Ignorando %s, no está instalado y sólo se están solicitando " +"actualizaciones.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "No se pudo abrir el fichero de bloqueo «%s»" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "No es posible reinstalar el paquete %s, no se puede descargar.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "No se utilizan bloqueos para el fichero de bloqueo de montaje nfs %s" +msgid "%s is already the newest version.\n" +msgstr "%s ya está en su versión más reciente.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "No se pudo bloquear %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versión seleccionada «%s» (%s) para «%s»\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versión seleccionada «%s» (%s) para «%s»\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "El paquete %s no está instalado, no se eliminará\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "El paquete %s no está instalado, no se eliminará\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" +"NOTA: ¡Esto es sólo una simulación\n" +" apt-get necesita privilegios de administrador para la ejecución real.\n" +" Tenga también en cuenta que se han desactivado los bloqueos,\n" +" ¡no dependa de la relevancia a la situación real actual!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "El subproceso %s recibió un fallo de segmentación." - -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "El subproceso %s recibió la señal %u." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "El subproceso %s devolvió un código de error (%u)" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Aviso de autenticación ignorado.\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "El subproceso %s terminó de forma inesperada" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Algunos paquetes no se pueden autenticar" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Se produjo un problema al cerrar el fichero gzip %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "¿Instalar estos paquetes sin verificación?" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "No pude abrir el fichero %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "No pude abrir %s.new" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file descriptor %d" -msgstr "No se pudo abrir el descriptor de fichero %d" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "No se pudo crear el subproceso IPC" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "No se pudo ejecutar el compresor " +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Obj " -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "leídos, todavía debía leer %lu pero no queda nada" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Des:" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escritos, todavía tenía que escribir %lu pero no pude hacerlo" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Se produjo un problema al cerrar el fichero %s" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Se produjo un problema al renombrar el fichero %s a %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Descargados %sB en %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Se produjo un problema al desligar el fichero %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Se produjo un problema al sincronizar el fichero" +msgid " [Working]" +msgstr " [Trabajando]" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... ¡Error!" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Cambio de medio: Por favor, inserte el disco etiquetado como\n" +" «%s»\n" +"en la unidad «%s» y pulse Intro\n" -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Hecho" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "No mirror file '%s' found " +msgstr "No se encontró un archivo de réplica «%s»" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Hecho" +msgid "Can not read mirror file '%s'" +msgstr "No se encontró un archivo de réplica «%s»" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "No puedo hacer mmap de un fichero vacío" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "No se encontró un archivo de réplica «%s»" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "No pude duplicar el descriptor de fichero %i" - -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "No pude hacer mmap de %lu bytes" +msgid "[Mirror: %s]" +msgstr "[Réplica: %s]" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "No se pudo cerrar «mmap»" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Falló la creación de una tubería IPC para el subproceso" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "No pude sincronizar «mmap»" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "La conexión se cerró prematuramente" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "No pude hacer mmap de %lu bytes" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "¡Parámetro por omisión incorrecto!" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Falló al truncar el archivo" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pulse Intro para continuar." -#: 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)" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "¿Desea borrar los archivos .deb descargados con anterioridad?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"La asignación dinámica MMap no tiene más espacio. Por favor, incrementa el " -"valor de «APT::Cache-Start». El valor actual es: %lu (man 5 apt.conf)" +"Se produjeron algunos problemas mientras se desempaquetaba. Los paquetes que " +"se instalaron" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "van a configurarse. Esto puede dar lugar a errores duplicados" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"No se pudo incrementar el tamaño del MMap dado que se ha alcanzado ya el " -"límite de %lu bytes." +"o errores causados por dependencias no presentes. Esto está BIEN, sólo los " +"errores" -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"No se pudo incrementar el tamaño de MMap dado que el usuario ha " -"deshabilitado el crecimiento automático." +"encima de este mensaje son importantes. Por favor, corríjalas y ejecute " +"«[I]nstall» otra vez" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "No se puede obtener información del punto de montaje %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Fusionando información disponible" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "No pude montar el cdrom" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode llamado en un nodo todavía ligado" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Tipo de abreviación no reconocida: «%c»" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "¡No pude localizar el elemento enlazado!" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Abriendo fichero de configuración %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "No pude asignar una desviación" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Error interno en AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Error de sintaxis %s:%u: No hay un nombre al comienzo del bloque." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Tratando de sobreescribir una desviación, %s -> %s y %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Error de sintaxis %s:%u: Marca mal formada" +msgid "Double add of diversion %s -> %s" +msgstr "Doble suma de desviación %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Error de sintaxis %s:%u: Basura extra después del valor" +msgid "Duplicate conf file %s/%s" +msgstr "Archivo de configuración duplicado %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Error de sintaxis %s:%u: Las directivas sólo se pueden poner en el primer " -"nivel" +msgid "The path %s is too long" +msgstr "La trayectoria %s es demasiado larga" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas" +msgid "Unpacking %s more than once" +msgstr "Desempaquetando %s más de una vez" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Error de sintaxis %s:%u: Incluido desde aquí" +msgid "The directory %s is diverted" +msgstr "El directorio %s está desviado" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Error de sintaxis %s:%u: Directiva «%s» no soportada" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "La trayectoria de desviación es demasiado larga" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Error de sintaxis %s:%u: la directiva «clear» tiene que incluir un árbol de " -"opciones como argumento" +msgid "Failed to stat %s" +msgstr "No pude leer %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo" +msgid "Failed to rename %s to %s" +msgstr "Falló el renombre de %s a %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "No se instaló ningún anillo de claves %s." +msgid "The directory %s is being replaced by a non-directory" +msgstr "El directorio %s está siendo reemplazado por un no-directorio" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "No pude localizar el nodo en su bote de enlace" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "La trayectoria es muy larga" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "No se conoce la opción de línea de órdenes «%c» [de %s]." +msgid "Overwrite package match with no version for %s" +msgstr "Sobreescribiendo concordancia del paquete sin versión para %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "No se entiende la opción de línea de órdenes %s" +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-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "La opción de línea de órdenes %s no es un booleano" +msgid "Unable to stat %s" +msgstr "No pude leer %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "La opción %s necesita un argumento." +msgid "Failed to write file %s" +msgstr "Falló la escritura del archivo %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Opción %s: La especificación del elemento de configuración debe tener un " -"=<val>." +msgid "Failed to close file %s" +msgstr "No pude cerrar el archivo %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "La opción %s exige un argumento entero, no «%s»" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Este no es un archivo DEB válido, falta el miembro «%s»" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Opción «%s» demasiado larga" +msgid "Internal error, could not locate member %s" +msgstr "Error interno, no pude localizar el miembro %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Archivo de control inanalizable" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Firma del archivo inválida" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Error leyendo la cabecera de miembro del archivo" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "El sentido %s no se entiende, pruebe verdadero o falso." +msgid "Invalid archive member header %s" +msgstr "Cabecera de miembro del archivo inválida %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Cabecera de miembro del archivo inválida" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "El archivo es muy pequeño" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "No pude leer las cabeceras del archivo" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "No pude crear las tuberías" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "No pude ejecutar gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Archivo dañado" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "" +"Se produjo un fallo al calcular la suma de control de tar, archive dañado" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Operación inválida: %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Cabecera del TAR tipo %u desconocida, miembro %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3660,7 +3664,7 @@ msgstr "No se pudo leer mientras se computaba MD5" msgid "Problem unlinking %s" msgstr "Se produjo un problema al desligar %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3715,6 +3719,10 @@ msgstr "" " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n" "cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Error Interno, AllUpgrade rompió cosas" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s no es un paquete DEB válido." diff --git a/po/eu.po b/po/eu.po index 79ab65633..74d165084 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,3168 +7,3172 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide <pi@beobide.net>\n" "Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n" -"Language: \n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "'%s' motako indize fitxategirik ez da onartzen" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "%s paketeak (%s bertsioa) mendekotasun arazo bat du:\n" +msgid "Unable to read %s" +msgstr "Ezin da %s irakurri" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Pakete Izenak Guztira : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Ezin da %s(e)ra aldatu" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Pakete Izenak Guztira : " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Ezin da %s atzitu." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pakete normalak:" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pakete birtual puruak:" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Bakanako pakete birtualak: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "'%s' pakete sistema ez da onartzen" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Nahastutako pakete birtualak: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Ezin da pakete sistemaren mota egokirik zehaztu" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Falta direnak: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i erregistro grabaturik.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Bertsio Ezberdinak Guztira: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i erregistro eta %i galdutako fitxategi grabaturik.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Azalpen Ezberdinak Guztira: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i erregistro eta %i okerreko fitxategi grabaturik\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Dependentziak Guztira: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"%i erregistro, %i galdutako fitxategi eta %i okerreko fitxategi grabaturik\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Guztira Bertsio/fitxategi erlazioak: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Fitx/Azalpen erlazioak guztira: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Egiaztapena ez dator bat" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Guztira Saltzaile Mapatzea: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Ezin izan da %s metodo kontrolatzailea aurkitu." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Guztira bateratutako kateak: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Guztira bertsio dependentzia lekua: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "%s metodoa ez da behar bezala abiarazi" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Guztira galdutako tokia:" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Mesedez sa ''%s' izeneko diska '%s' gailuan eta enter sakatu" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Guztira erregistratutako lekua: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Pakete zerrenda edo egoera fitxategia ezin dira analizatu edo ireki." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "%s pakete fitxategia ez dago sinkronizatuta." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Beharbada 'apt-get update' exekutatu nahiko duzu arazoak konpontzeko" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Ez da paketerik aurkitu" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Ezin izan da Iturburu zerrenda irakurri." -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Zehazki eredu bat eman behar duzu." +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Paketeen katxea hutsik" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Paketeen katxe fitxategia hondatuta dago" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Paketeen katxe fixategiaren bertsioa ez da bateragarria" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Paketeen katxe fitxategia hondatuta dago" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Ezin da %s paketea lokalizatu" +msgid "This APT does not support the versioning system '%s'" +msgstr "APT honek ez du '%s' bertsio sistema onartzen" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakete Fitxategiak:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Katxea ez dago sinkronizatuta, ezin zaio erreferentziarik (x-ref) egin " -"pakete fitxategi bati" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Mendekotasuna:" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pin duten Paketeak:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Aurremendekotasuna:" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ez da aurkitu)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Iradokizuna:" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalatuta: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Gomendioa:" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Hautagaia: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Gatazka:" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(bat ere ez)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Ordeztea:" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketearen pin-a:" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zaharkitzea:" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Bertsio taula:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Apurturik" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s %s-rentzat %s %s-ean konpilatua\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Erabilera: apt-cache [aukerak] komandoa\n" -" apt-cache [aukerak] add fitxategia1 [fitxategia2 ...]\n" -" apt-cache [aukerak] showpkg pak1 [pak2 ...]\n" -" apt-cache [aukerak] showsrc pak1 [pak2 ...]\n" -"\n" -"APTren katxe fitxategi bitarrak manipulatzeko eta kontsultatzeko erabiltzen\n" -"den behe-mailako tresna bat da, apt-cache.\n" -"\n" -"Komandoak:\n" -" add - Pakete fitxategi bat gehitzen du iturburuko katxean\n" -" gencaches - Bi katxeak sortzen ditu: paketeena eta iturburuena\n" -" showpkg - Pakete baten informazio orokorra erakusten du\n" -" showsrc - Iturburu erregistroak erakusten ditu\n" -" stats - Oinarrizko estatistika batzuk erakusten ditu\n" -" dump - Fitxategi osoa erakusten du formatu laburrean\n" -" dumpavail - Fitxategi erabilgarri bat irteera estandarrean inprimatu\n" -" unmet - Bete gabeko mendekotasunak erakusten ditu\n" -" search - Adierazpen erregularrak bilatzen ditu pakete zerrendan \n" -" show - Paketearen erregistro irakurgarri bat erakusten du\n" -" depends - Pakete baten mendekotasunak erakusten ditu\n" -" pkgnames - Pakete guztien izenak zerrendatzen ditu\n" -" dotty - GraphViz-ekin erabiltzeko pakete grafikoak sortzen ditu\n" -" xvcg - xvcg-ekin erabiltzeko pakete grafikoak sortzen ditu\n" -" policy - Gidalerroen ezarpenak erakusten ditu\n" -"\n" -"Aukerak:\n" -" -h Laguntza testu hau.\n" -" -p=? Paketearen katxea.\n" -" -s=? Iturburuaren katxea.\n" -" -q Desgaitu progresio adierazlea.\n" -" -i Mendekotasun nagusiak soilik erakutsi.\n" -" -c=? Irakurri konfigurazio fitxategi hau\n" -" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -"Informazio gehiago nahi izanez gero: ikus apt-cache(8) eta apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "garrantzitsua" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Mesedez idatzi izen bat diska honentzat, 'Debian 2.1r1 1 Diska' antzerakoan" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "beharrezkoa" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Mesedez sar diska bat gailuan eta enter sakatu" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estandarra" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Huts egin du %s izenaren ordez %s ipintzean" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "aukerakoa" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "estra" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Prozesu hau bildumako beste CD guztiekin errepikatu." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "'%s' motako indize fitxategirik ez da onartzen" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parekatu gabeko argumentuak" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Adierazpen erregularren konpilazio errorea - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Erabilera: apt-config [aukerak] komandoa\n" -"\n" -"apt-config APT konfigurazio fitxategia irakurtzeko tresna soil bat da\n" -"\n" -"Komandoak:\n" -" shell - Shell modua\n" -" dump - Konfigurazioa erakusten du\n" -"\n" -"Aukerak:\n" -" -h Laguntza testu hau.\n" -" -c=? Irakurri konfigurazio fitxategi hau\n" -" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Katxearen bertsio sistema ez da bateragarria" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Ezin izan da %s paketea aurkitu" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Errorea gertatu da %s prozesatzean (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Ezin izan da %s paketea aurkitu" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "APT honek maneia dezakeen pakete izenen kopurua gainditu duzu." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Ezin izan da %s paketea aurkitu" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "APT honek maneia dezakeen bertsio kopurua gainditu duzu." -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "APT honek maneia dezakeen azalpen kopurua gainditu duzu." -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "APT honek maneia dezakeen mendekotasun muga gainditu duzu." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Ezin izan da %s paketea aurkitu" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "%s %s paketea ez da aurkitu fitxategi mendekotasunak prozesatzean" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +msgid "Couldn't stat source package list %s" +msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Pakete Zerrenda irakurtzen" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Fitxategiaren erreferentziak biltzen" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "%s : ezin da idatzi" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Ezin da deskarga direktorioa blokeatu" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "S/I errorea iturburu katxea gordetzean" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Ezin da %s(e)n duzun leku librea atzeman." +msgid "rename failed, %s (%s -> %s)." +msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Ez daukazu nahikoa leku libre %s(e)n." +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Egiaztapena ez dator bat" -#. 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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Tamaina ez dator bat" -#. 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Eragiketa baliogabea: %s" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "Eskuratu %s iturburua\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Huts egin du zenbat artxibo lortzean." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Deskarga amaituta eta deskarga soileko moduan" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Ez dago gako publiko erabilgarririk hurrengo gako ID hauentzat:\n" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"%s(e)n dagoeneko deskonprimitutako iturburua deskonprimitzea saltatzen\n" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Prozesu umeak huts egin du" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " +"beharko duzu paketea. (arkitektura falta delako)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"Gutxienez pakete bat zehaztu behar duzu eraikitze mendekotasunak egiaztatzeko" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s " +"paketearentzat." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Ezin izan da %s(r)en eraikitze mendekotasunen informazioa eskuratu" +msgid "Vendor block %s contains no fingerprint" +msgstr "%s saltzaile blokeak ez du egiaztapen markarik" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s: ez du eraikitze mendekotasunik.\n" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "%spartial zerrenda-direktorioa falta da." -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" +msgid "Archives directory %spartial is missing." +msgstr "%spartial artxibo direktorioa falta da." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Ezin da zerrenda direktorioa blokeatu" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li fitxategi deskargatzen %li -tik (%s falta da)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "%li fitxategia jasotzen %li-tik" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Ezin da lortu %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" +"Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo " +"zaharrak erabili dira haien ordez." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "'Iturburu' URI batzuk jarri behar dituzu sources.list-en" + +#: apt-pkg/policy.cc:83 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: instalatutako %3$s " -"paketea berriegia da" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Erregistro baliogabea hobespenen fitxategian, pakete goibururik ez" + +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Ez da ulertu %s orratz-mota (pin)" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" 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:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "%s fitxategia ezin izan da ireki" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" +"Instalazio hau exekutatzeko, funtsezko %s paketea aldi baterako kendu behar " +"da, Gatazka/Aurre-mendekotasun begizta baten ondorioz. Normalean arriskutsua " +"izaten da, baina hala ere egin nahi baduzu, aktibatu APT::Force-LoopBreak " +"aukera." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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" +msgid "Line %u too long in source list %s." +msgstr "%2$s iturburu zerrendako %1$u lerroa luzeegia da." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM Desmuntatzen...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s(r)en eraikitze mendekotasunak ezin izan dira bete." +msgid "Using CD-ROM mount point %s\n" +msgstr "%s CD-ROM muntatze puntua erabiltzen\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Diska itxaroten...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Konektatzen -> %s.(%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM-a muntatzen...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Onartutako Moduluak:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Egiaztatzen... " -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Gordetako Etiketa: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Indize fitxategien bila diska arakatzen...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Erabilera: apt-get [aukerak] komandoa\n" -" apt-get [aukerak] install|remove pkg1 [pkg2 ...]\n" -" apt-get [aukerak] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get paketeak deskargatu eta instalatzeko komando lerroko interfaze soil\n" -"bat da. Gehien erabiltzen diren komandoak eguneratzekoa eta instalatzekoa \n" -"dira: update eta install.\n" -"\n" -"Komandoak:\n" -" update - Eskuratu pakete zerrenda berriak\n" -" upgrade - Egin bertsio berritzea\n" -" install - Instalatu pakete berriak (paketea libc6 da, eta ez libc6.deb)\n" -" remove - Kendu paketeak\n" -" autoremove - Automatikoki kendu erabiltzen ez diren paketeak\n" -" purge - Paketeak kendu eta garbitu\n" -" source - Deskargatu iturburu artxiboak\n" -" build-dep - Konfiguratu iturburu paketeen eraikitze dependentziak\n" -" dist-upgrade - Banaketaren bertsio berritzea: ikus apt-get(8)\n" -" dselect-upgrade - Jarraitu dselect hautapenak\n" -" clean - Ezabatu deskargatutako artxibo fitxategiak\n" -" autoclean - Ezabatu deskargatutako artxibo fitxategi zaharrak\n" -" check - Egiaztatu ez dagoela hautsitako mendekotasunik\n" -"\n" -"Aukerak:\n" -" -h Laguntza testu hau.\n" -" -q Egunkarian erregistratzeko irteera - progresio adierazlerik gabe\n" -" -qq Irteerarik ez, erroreentzat izan ezik\n" -" -d Deskargatu bakarrik - EZ instalatu edo deskonprimitu artxiboak\n" -" -s Ekintzarik ez. Simulazio bat egiten du\n" -" -y Galdera guztiei Bai erantzun, galdetu gabe\n" -" -f Saiatu jarraitzen, osotasun egiaztapenak huts egiten badu\n" -" -m Saiatu jarraitzen, artxiboak ezin badira lokalizatu\n" -" -u Erakutsi bertsio-berritutako paketeen zerrenda ere\n" -" -b Sortu iturburu paketea lortu ondoren\n" -" -V Erakutsi bertsio-zenbaki xeheak\n" -" -c=? Irakurri konfigurazio fitxategi hau\n" -" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.:-o dir::cache=/tmp\n" -"Informazio eta aukera gehiago nahi izanez gero, ikus apt-get(8), \n" -"sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n" -" APT honek Super Behiaren Ahalmenak ditu.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"%zu pakete indize, %zu jatorri indize %zu itzulpen indize eta %zu sinadura " +"aurkitu dira\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "baina ez dago instalatuta" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s bertsiorik berriena da jada.\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Aurkitutako Etiketa: '%s' \n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s bertsiorik berriena da jada.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Hau ez baliozko izen bat, froga berriro.\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s espero zen baina ez zegoen han" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Diskaren izen:\n" +"'%s'\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Pakete zerrendak kopiatzen..." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Huts egin du %s irekitzean" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Jatorri zerrenda berria idazten\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Diskoarentzako jatorri sarrerak:\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " +"atxikitako paketeek eraginda." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Ezin da cdrom-eko %s datu-basea irakurri" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." -#: 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 "" -"Mesedez erabili apt-cdrom APT-k CD hau ezagutu dezan.\n" -"apt-get update ezin da erabili CD berriak gehitzeko" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Dependentzia zuhaitza eraikitzen" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD okerra" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Hautagaien bertsioak" -#: methods/cdrom.cc:249 +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Dependentzi Sormena" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Egoera argibideak irakurtzen" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Ezin izan da %s(e)ko CD-ROMa desmuntatu; beharbada erabiltzen ariko da." +msgid "Failed to open StateFile %s" +msgstr "Huts egin du %s EgoeraFitxategia irekitzean" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Ez da diska aurkitu" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Ezin izan da %s aldiroko EgoeraFitrxategia idatzi" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Ez da fitxategia aurkitu" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Huts egin du atzitzean" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Ezin da %s pakete fitxategia analizatu (2)" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Huts egin du aldaketa ordua ezartzean" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "'%2$s'(r)en '%1$s' banaketa ez da aurkitu" + +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI baliogabea. URI lokalek ezin dute // eduki hasieran" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ezin da %s paketea lokalizatu" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Sartzen" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Ezin izan da %s zeregina aurkitu" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Ezin izan da peer edo parekoaren izena zehaztu" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Ezin izan da izen lokala zehaztu" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Zerbitzariak gure konexioa ukatu eta hau esan du: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "USER failed, server said: %s" -msgstr "USERek huts egin du, eta zerbitzariak hau esan du: %s" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASSek huts egin du, eta zerbitzariak hau esan du: %s" - -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Proxy zerbitzari bat zehaztu da, baina sarrerako script-ik ez. Acquire::ftp::" -"ProxyLogin hutsik dago." -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Sarrerako script-eko '%s' komandoak huts egin du, eta zerbitzariak hau esan " -"du: %s" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPEk huts egin du, eta zerbitzariak hau esan du: %s" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Konexioa denboraz kanpo" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Zerbitzariak konexioa itxi du" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Oharra, %s hautatzen %s(r)en ordez\n" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Irakurketa errorea" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Erantzun batek bufferrari gainez eragin dio." +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Lerro baliogabea desbideratze fitxategian: %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokolo hondatzea" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Idazketa errorea" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Ezin izan da socket-a sortu" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Ezin izan da datu-socketa konektatu; konexioak denbora muga gainditu du" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Huts egin du" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Ezin izan da socket pasibora konektatu." +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo-k ezin izan du socket entzule bat eskuratu" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Ezin izan da socket bat lotu" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Ezin izan da socket-ean entzun" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Ezin izan da socket-aren izena zehaztu" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Ezin da PORT komandoa bidali" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Gaizkieratutako %lu lerroa %s iturburu zerrendan (banaketa orokorra)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Helbide familia ezezagunaa: %u (AF_*)" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRTek huts egin du, eta zerbitzariak hau esan du: %s" +msgid "Opening %s" +msgstr "%s irekitzen" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Datu-socket konexioak denbora muga gainditu du" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Ezin da konexioa onartu" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Arazoa fitxategiaren hash egitean" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Ezin da fitxategia lortu; zerbitzariak hau esan du: '%s'" +msgid "Installing %s" +msgstr "%s Instalatzen" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datu-socketak denbora muga gainditu du" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s konfiguratzen" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Datu transferentziak huts egin du, eta zerbitzariak hau esan du: '%s'" +msgid "Removing %s" +msgstr "%s kentzen" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Kontsulta" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s guztiz ezabatu da" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Ezin da deitu " +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Konektatzen -> %s.(%s)" +msgid "Running post-installation trigger %s" +msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" + +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "'%s' direktorioa falta da" + +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "%s fitxategia ezin izan da ireki" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Preparing %s" +msgstr "%s prestatzen" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:990 #, 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)" +msgid "Unpacking %s" +msgstr "%s irekitzen" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Ezin izan da konexioa hasi -> %s:%s (%s)." +msgid "Preparing to configure %s" +msgstr "%s konfiguratzeko prestatzen" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:997 #, 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" +msgid "Installed %s" +msgstr "%s Instalatuta" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Ezin izan da konektatu -> %s:%s (%s)" +msgid "Preparing for removal of %s" +msgstr "%s kentzeko prestatzen" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Connecting to %s" -msgstr "Konektatzen -> %s..." +msgid "Removed %s" +msgstr "%s kendurik" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not resolve '%s'" -msgstr "Ezin izan da '%s' ebatzi" +msgid "Preparing to completely remove %s" +msgstr "%s guztiz ezabatzeko prestatzen" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Aldi baterako akatsa '%s' ebaztean" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" +msgid "Completely removed %s" +msgstr "%s guztiz ezabatu da" -#: 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" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ezin da konektatu -> %s %s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Barne errorea: Sinadura zuzena, baina ezin da egiaztapen marka zehaztu" +msgid "Can not write log (%s)" +msgstr "%s : ezin da idatzi" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Beintza sinadura baliogabe bat aurkitu da." +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Ezin da %s abiarazi sinadura egiaztatzeko (gpgv instalaturik al dago?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Waited for %s but it wasn't there" +msgstr "%s espero zen baina ez zegoen han" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Errore ezezaguna gpgv exekutatzean" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Ondorengo sinadurak baliogabeak dira:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Ondorengo sinadurak ezin dira egiaztatu gako publikoa ez bait dago " -"eskuragarri:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Errorea fitxategian idaztean" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Errorea zerbitzaritik irakurtzean" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Errorea fitxategian idaztean" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Hautapenak huts egin du" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Konexioaren denbora muga gainditu da" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Errorea irteerako fitxategian idaztean" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Goiburuen zain" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Okerreko goiburu-lerroa" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "http zerbitzariak erantzun goiburu baliogabe bat bidali du." - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "http zerbitzariak Content-Length buru baliogabe bat bidali du" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "http zerbitzariak Content-Range buru baliogabe bat bidali du" - -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "http zerbitzariak barruti onarpena apurturik du" - -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Datu formatu ezezaguna" - -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Goiburu data gaizki dago" - -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Konexioak huts egin du" - -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Barne errorea" - -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Berriketak kalkulatzen... " - -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du" - -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Eginda" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Mendekotasunak zuzentzen..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " : huts egin du." +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ezin dira mendekotasunak zuzendu" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Ezin da zerrenda direktorioa blokeatu" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Ezin da bertsio berritzeko multzoa minimizatu" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Eginda" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu zuzentzeko." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalatuta]" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalatuta]" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "%s hautapena ez da aurkitu" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" +"Ez da blokeorik erabiltzen ari irakurtzeko soilik den %s blokeo " +"fitxategiarentzat" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalatuta]" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Ezin izan da %s blokeo fitxategia ireki" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalatuta]" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Ez da blokeorik erabiltzen ari nfs %s muntatutako blokeo fitxategiarentzat" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "[upgradable from: %s]" +msgid "Could not get lock %s" +msgstr "Ezin izan da %s blokeoa hartu" + +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "but %s is installed" -msgstr "baina %s instalatuta dago" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "but %s is to be installed" -msgstr "baina %s instalatzeko dago" +msgid "Sub-process %s received a segmentation fault." +msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "baina ez da instalagarria" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "baina pakete birtuala da" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s azpiprozesuak errore kode bat itzuli du (%u)" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "baina ez dago instalatuta" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "%s azpiprozesua ustekabean amaitu da" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "baina ez da instalatuko" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Idazketa errorea" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " edo" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Arazoa fitxategia ixtean" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Ondorengo pakete BERRIAK instalatuko dira:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "%s fitxategia ezin izan da ireki" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Ondorengo paketeak KENDUKO dira:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Ezin izan da %s(r)en kanalizazioa ireki" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Ondorengo paketeak mantendu egin dira:" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Huts egin du IPC azpiprozesua sortzean" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Ondorengo paketeak bertsio-berrituko dira:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Huts egin du konpresorea exekutatzean " -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Irakurketa errorea" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Ondorengo pakete atxikiak aldatu egingo dira:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen" -#: apt-private/private-output.cc:655 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (arrazoia: %s) " +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "idatzita; oraindik %lu idazteke, baina ezin da" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n" -"EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Arazoa fitxategia ixtean" -#: apt-private/private-output.cc:694 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, " +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Arazoa fitxategia sinkronizatzean" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu berrinstalatuta, " +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Arazoa fitxategia desestekatzean" -#: apt-private/private-output.cc:700 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu aurreko bertsiora itzulita, " +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Arazoa fitxategia sinkronizatzean" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Errorea!" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ez erabat instalatuta edo kenduta.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[B/e]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[b/E]" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Eginda" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Adierazpen erregularren konpilazio errorea - %s" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Eginda" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Ezin da fitxategi huts baten mmap egin" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Ezin izan da %s(r)en kanalizazioa ireki" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Ezin izan da %lu byteren mmap egin" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Ezin da %s ireki" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Ezin da deitu " -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago." +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Ezin izan da %lu byteren mmap egin" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Barne errorea, ez da ordenatzeaz amaitu" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Huts fitxategia mozterakoan" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: 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 "" -"Hau bitxia... Tamainak ez dira berdina, idatzi apt@packages.debian.org-ra " -"berri emanez (ingelesez)" +"MMAP dinamikoa memoriaz kanpo. Mesedez handitu APT::Cache-Start muga. Uneko " +"balioa: %lu. (man 5 apt.conf)" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Artxiboetako %sB eskuratu behar dira.\n" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n" +msgid "Unable to stat the mount point %s" +msgstr "Ezin da atzitu %s muntatze puntua" -#. 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 -#: apt-private/private-install.cc:171 -#, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Huts egin du CDROMa atzitzean" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Ez daukazu nahikoa leku libre %s(e)n." +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Mota ezezaguneko laburtzapena: '%c'" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Arazoak daude, eta -y erabili da --force-yes gabe" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "%s konfigurazio fitxategia irekitzen" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat." +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Sintaxi errorea, %s:%u: Blokearen hasieran ez dago izenik." -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Bai, egin esandakoa!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Sintaxi errorea %s:%u: Gaizki eratutako" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Egin nahi duzunak kalte larriak eragin ditzake\n" -"Jarraitzeko, idatzi '%s' esaldia\n" -" ?] " +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria balioaren ondoren" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Abortatu." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Aurrera jarraitu nahi al duzu?" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Fitxategi batzuk ezin izan dira deskargatu" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo " -"--fix-missing aukerarekin saiatu?" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Falta diren paketeak ezin dira zuzendu." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria fitxategi amaieran" -#: apt-private/private-install.cc:329 -msgid "Aborting install." +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." msgstr "Abortatu instalazioa." -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" - -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" - -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Suposatu ez dugun zerbait ezabatuko da, ezin da AutoRemover abiarazi" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Ez da ezagutzen komando lerroko '%c' aukera [%s]." -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n" -"Mesedez programa errore txosten bat bete mesedez." +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Ez da ulertzen komando lerroko %s aukera" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Informazio honek arazoa konpontzen lagun dezake:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Komando lerroko %s aukera ez da boolearra." -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "%s aukerak argumentu bat behar du." -#: apt-private/private-install.cc:512 -#, fuzzy -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] "" -"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " -"behar." -msgstr[1] "" -"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " -"behar." +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"%s aukera: konfigurazio elementuaren zehaztapenak =<val> eduki behar du." -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "" -"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " -"behar." -msgstr[1] "" -"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " -"behar." +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s aukerak osoko argumentu bat behar du, eta ez '%s'" -#: apt-private/private-install.cc:518 -#, 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." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "'%s' aukera luzeegia da" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "%s zentzua ez da ulertzen; probatu egiazkoa edo faltsua." -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " -"zehaztu konponbide bat)." +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Eragiketa baliogabea: %s" -#: apt-private/private-install.cc:628 -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 "" -"Pakete batzuk ezin izan dira instalatu. Beharbada ezinezko egoera \n" -"bat eskatu duzu, edo, banaketa ezegonkorra erabiltzen ari bazara,\n" -"beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n" -"Sarrerakoetan (Incoming) egoten jarraituko dute." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s paketeak (%s bertsioa) mendekotasun arazo bat du:\n" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Hautsitako paketeak" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Pakete Izenak Guztira : " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Ondorengo pakete gehigarriak instalatuko dira:" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Pakete Izenak Guztira : " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Iradokitako paketeak:" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pakete normalak:" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Gomendatutako paketeak:" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pakete birtual puruak:" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Bakanako pakete birtualak: " -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Nahastutako pakete birtualak: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s berriro instalatzea ez da posible; ezin da deskargatu.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Falta direnak: " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s bertsiorik berriena da jada.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Bertsio Ezberdinak Guztira: " -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Azalpen Ezberdinak Guztira: " -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Dependentziak Guztira: " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Guztira Bertsio/fitxategi erlazioak: " -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Fitx/Azalpen erlazioak guztira: " -#: apt-private/private-main.cc:32 -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 "" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Guztira Saltzaile Mapatzea: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Guztira bateratutako kateak: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Egiaztapen abisua gainidazten.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Guztira bertsio dependentzia lekua: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Zenbait pakete ezin dira egiaztatu" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Guztira galdutako tokia:" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Paketeak egiaztapen gabe instalatu?" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Guztira erregistratutako lekua: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Ezin da lortu %s %s\n" +msgid "Package file %s is out of sync." +msgstr "%s pakete fitxategia ez dago sinkronizatuta." -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Huts egin du %s izenaren ordez %s ipintzean" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Ez da paketerik aurkitu" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Zehazki eredu bat eman behar duzu." + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakete Fitxategiak:" + +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" +"Katxea ez dago sinkronizatuta, ezin zaio erreferentziarik (x-ref) egin " +"pakete fitxategi bati" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Atzituta " +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pin duten Paketeak:" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Hartu:" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ez da aurkitu)" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ez ikusi " +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalatuta: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Hautagaia: " -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Lortuta: %sB (%s) (%sB/s)\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(bat ere ez)" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Lanean]" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paketearen pin-a:" -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Medio Aldaketa: Mesedez sar\n" -" '%s'\n" -"izeneko diska '%s' gailuan eta enter sakatu\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Bertsio taula:" -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Unable to read %s" -msgstr "Ezin da %s irakurri" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s %s-rentzat %s %s-ean konpilatua\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Ezin da %s(e)ra aldatu" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Erabilera: apt-cache [aukerak] komandoa\n" +" apt-cache [aukerak] add fitxategia1 [fitxategia2 ...]\n" +" apt-cache [aukerak] showpkg pak1 [pak2 ...]\n" +" apt-cache [aukerak] showsrc pak1 [pak2 ...]\n" +"\n" +"APTren katxe fitxategi bitarrak manipulatzeko eta kontsultatzeko erabiltzen\n" +"den behe-mailako tresna bat da, apt-cache.\n" +"\n" +"Komandoak:\n" +" add - Pakete fitxategi bat gehitzen du iturburuko katxean\n" +" gencaches - Bi katxeak sortzen ditu: paketeena eta iturburuena\n" +" showpkg - Pakete baten informazio orokorra erakusten du\n" +" showsrc - Iturburu erregistroak erakusten ditu\n" +" stats - Oinarrizko estatistika batzuk erakusten ditu\n" +" dump - Fitxategi osoa erakusten du formatu laburrean\n" +" dumpavail - Fitxategi erabilgarri bat irteera estandarrean inprimatu\n" +" unmet - Bete gabeko mendekotasunak erakusten ditu\n" +" search - Adierazpen erregularrak bilatzen ditu pakete zerrendan \n" +" show - Paketearen erregistro irakurgarri bat erakusten du\n" +" depends - Pakete baten mendekotasunak erakusten ditu\n" +" pkgnames - Pakete guztien izenak zerrendatzen ditu\n" +" dotty - GraphViz-ekin erabiltzeko pakete grafikoak sortzen ditu\n" +" xvcg - xvcg-ekin erabiltzeko pakete grafikoak sortzen ditu\n" +" policy - Gidalerroen ezarpenak erakusten ditu\n" +"\n" +"Aukerak:\n" +" -h Laguntza testu hau.\n" +" -p=? Paketearen katxea.\n" +" -s=? Iturburuaren katxea.\n" +" -q Desgaitu progresio adierazlea.\n" +" -i Mendekotasun nagusiak soilik erakutsi.\n" +" -c=? Irakurri konfigurazio fitxategi hau\n" +" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" +"Informazio gehiago nahi izanez gero: ikus apt-cache(8) eta apt.conf(5).\n" -#. 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 " +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" +"Mesedez idatzi izen bat diska honentzat, 'Debian 2.1r1 1 Diska' antzerakoan" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "%s fitxategia ezin izan da ireki" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Mesedez sar diska bat gailuan eta enter sakatu" -#: methods/mirror.cc:315 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "%s fitxategia ezin izan da ireki" +msgid "Failed to mount '%s' to '%s'" +msgstr "Huts egin du %s izenaren ordez %s ipintzean" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Huts egin du azpiprozesuarentzako IPC kanalizazio bat sortzean" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Konexioa behar baino lehenago itxi da" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Okerreko ezarpen lehenetsia!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Jarraitzeko, sakatu Sartu." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Deskargaturiko .deb fitxategi guztiak ezabatu nahi al dituzu?" - -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Errore batzuk gertatu dira deskonprimitzean. Konfiguratu egingo ditut" - -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "instalatutako paketeak. Horrek errore bikoiztuak eragin ditzake" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Prozesu hau bildumako beste CD guztiekin errepikatu." -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "edo falta diren mendekotasunen erroreak. Hori ondo dago; mezu honen" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parekatu gabeko argumentuak" -#: dselect/install:105 +#: cmdline/apt-config.cc:89 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"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 "" -"aurreko erroreak dira garrantzitsuak. Konpondu eta exekutatu [I]nstall " -"berriro" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Eskuragarrien datuak biltzen" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode-ri dei egin zaio oraindik estekatutako nodoan" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Huts egin du hash-elementua lokalizatzean!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Huts egin du desbideratzea lokalizatzean" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion-n barne errorea" - -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Desbideratze bat gainidazten saiatzen: %s -> %s eta %s/%s" +"Erabilera: apt-config [aukerak] komandoa\n" +"\n" +"apt-config APT konfigurazio fitxategia irakurtzeko tresna soil bat da\n" +"\n" +"Komandoak:\n" +" shell - Shell modua\n" +" dump - Konfigurazioa erakusten du\n" +"\n" +"Aukerak:\n" +" -h Laguntza testu hau.\n" +" -c=? Irakurri konfigurazio fitxategi hau\n" +" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Desbideratzearen gehitze bikoitza: %s -> %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Konfigurazio fitxategi bikoiztua: %s/%s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "%s bidea luzeegia da" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "%s behin baino gehiagotan deskonprimitzen" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:423 #, c-format -msgid "The directory %s is diverted" -msgstr "%s direktorioa desbideratuta dago" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:454 #, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Desbideratzearen bidea luzeegia da" +msgid "Couldn't find package %s" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Failed to stat %s" -msgstr "Huts egin du %s(e)tik datuak lortzean" +msgid "%s set to manually installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 -#, c-format -msgid "Failed to rename %s to %s" -msgstr "Huts egin du %s izenaren ordez %s ipintzean" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "%s direktorioa ez-direktorio batekin ordezten ari da" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Huts egin du nodoa bere hash-ontzian lokalizatzean" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Bidea luzeegia da" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Ezin da deskarga direktorioa blokeatu" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Gainidatzi pakete-konkordantzia %s(r)en bertsiorik gabe" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "%s/%s fitxategiak %s paketekoa gainidazten du" +msgid "Unable to find a source package for %s" +msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Unable to stat %s" -msgstr "Ezin da daturik lortu %s(e)tik" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Failed to write file %s" -msgstr "Ezin izan da %s fitxategian idatzi" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Failed to close file %s" -msgstr "Ezin izan da %s fitxategia itxi" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Ez da baliozko DEB artxiboa; '%s' kidea falta da" +msgid "Couldn't determine free space in %s" +msgstr "Ezin da %s(e)n duzun leku librea atzeman." -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Barne Errorea, ezin da %s atala kokatu" +msgid "You don't have enough free space in %s" +msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Kontrol fitxategi ezin analizagarria" +#. 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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Artxibo sinadura baliogabea" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Errorea artxiboko kidearen goiburua irakurtzean" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Eskuratu %s iturburua\n" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Artxiboko kidearen goiburua baliogabea da" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Huts egin du zenbat artxibo lortzean." -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Artxiboko kidearen goiburua baliogabea da" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Deskarga amaituta eta deskarga soileko moduan" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Artxiboa laburregia da" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "" +"%s(e)n dagoeneko deskonprimitutako iturburua deskonprimitzea saltatzen\n" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Huts egin artxibo goiburuak irakurtzean" +#: cmdline/apt-get.cc:962 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Huts egin du kanalizazioak sortzean" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Huts egin du gzip exekutatzean " +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Hondatutako artxiboa" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Prozesu umeak huts egin du" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar egiaztapenak huts egin, hondatutakofitxategia" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Gutxienez pakete bat zehaztu behar duzu eraikitze mendekotasunak egiaztatzeko" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "%u TAR goiburu mota ezezaguna, %s kidea" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Unable to stat %s." -msgstr "Ezin da %s atzitu." +msgid "Unable to get build-dependency information for %s" +msgstr "Ezin izan da %s(r)en eraikitze mendekotasunen informazioa eskuratu" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Progress: [%3i%%]" +msgid "%s has no build depends.\n" +msgstr "%s: ez du eraikitze mendekotasunik.\n" + +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" +"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" +"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "'%s' pakete sistema ez da onartzen" +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" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Ezin da pakete sistemaren mota egokirik zehaztu" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%2$s(r)en %1$s mendekotasuna ezin da bete, ez baitago bertsio-eskakizunak " +"betetzen dituen %3$s paketearen bertsio erabilgarririk" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" + +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Wrote %i records.\n" -msgstr "%i erregistro grabaturik.\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: %3$s" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i erregistro eta %i galdutako fitxategi grabaturik.\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s(r)en eraikitze mendekotasunak ezin izan dira bete." + +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" + +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Konektatzen -> %s.(%s)" + +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Onartutako Moduluak:" + +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Erabilera: apt-get [aukerak] komandoa\n" +" apt-get [aukerak] install|remove pkg1 [pkg2 ...]\n" +" apt-get [aukerak] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get paketeak deskargatu eta instalatzeko komando lerroko interfaze soil\n" +"bat da. Gehien erabiltzen diren komandoak eguneratzekoa eta instalatzekoa \n" +"dira: update eta install.\n" +"\n" +"Komandoak:\n" +" update - Eskuratu pakete zerrenda berriak\n" +" upgrade - Egin bertsio berritzea\n" +" install - Instalatu pakete berriak (paketea libc6 da, eta ez libc6.deb)\n" +" remove - Kendu paketeak\n" +" autoremove - Automatikoki kendu erabiltzen ez diren paketeak\n" +" purge - Paketeak kendu eta garbitu\n" +" source - Deskargatu iturburu artxiboak\n" +" build-dep - Konfiguratu iturburu paketeen eraikitze dependentziak\n" +" dist-upgrade - Banaketaren bertsio berritzea: ikus apt-get(8)\n" +" dselect-upgrade - Jarraitu dselect hautapenak\n" +" clean - Ezabatu deskargatutako artxibo fitxategiak\n" +" autoclean - Ezabatu deskargatutako artxibo fitxategi zaharrak\n" +" check - Egiaztatu ez dagoela hautsitako mendekotasunik\n" +"\n" +"Aukerak:\n" +" -h Laguntza testu hau.\n" +" -q Egunkarian erregistratzeko irteera - progresio adierazlerik gabe\n" +" -qq Irteerarik ez, erroreentzat izan ezik\n" +" -d Deskargatu bakarrik - EZ instalatu edo deskonprimitu artxiboak\n" +" -s Ekintzarik ez. Simulazio bat egiten du\n" +" -y Galdera guztiei Bai erantzun, galdetu gabe\n" +" -f Saiatu jarraitzen, osotasun egiaztapenak huts egiten badu\n" +" -m Saiatu jarraitzen, artxiboak ezin badira lokalizatu\n" +" -u Erakutsi bertsio-berritutako paketeen zerrenda ere\n" +" -b Sortu iturburu paketea lortu ondoren\n" +" -V Erakutsi bertsio-zenbaki xeheak\n" +" -c=? Irakurri konfigurazio fitxategi hau\n" +" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.:-o dir::cache=/tmp\n" +"Informazio eta aukera gehiago nahi izanez gero, ikus apt-get(8), \n" +"sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n" +" APT honek Super Behiaren Ahalmenak ditu.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i erregistro eta %i okerreko fitxategi grabaturik\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"%i erregistro, %i galdutako fitxategi eta %i okerreko fitxategi grabaturik\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Egiaztapena ez dator bat" - -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Ezin izan da %s metodo kontrolatzailea aurkitu." +msgid "%s can not be marked as it is not installed.\n" +msgstr "baina ez dago instalatuta" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "%s metodoa ez da behar bezala abiarazi" +msgid "%s was already set to manually installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Mesedez sa ''%s' izeneko diska '%s' gailuan eta enter sakatu" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Pakete zerrenda edo egoera fitxategia ezin dira analizatu edo ireki." +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s bertsiorik berriena da jada.\n" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Beharbada 'apt-get update' exekutatu nahiko duzu arazoak konpontzeko" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s bertsiorik berriena da jada.\n" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Ezin izan da Iturburu zerrenda irakurri." +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Paketeen katxea hutsik" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Huts egin du %s irekitzean" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Paketeen katxe fitxategia hondatuta dago" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Paketeen katxe fixategiaren bertsioa ez da bateragarria" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Paketeen katxe fitxategia hondatuta dago" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT honek ez du '%s' bertsio sistema onartzen" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Mendekotasuna:" +msgid "Unable to read the cdrom database %s" +msgstr "Ezin da cdrom-eko %s datu-basea irakurri" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Aurremendekotasuna:" +#: 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 "" +"Mesedez erabili apt-cdrom APT-k CD hau ezagutu dezan.\n" +"apt-get update ezin da erabili CD berriak gehitzeko" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Iradokizuna:" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD okerra" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Gomendioa:" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Ezin izan da %s(e)ko CD-ROMa desmuntatu; beharbada erabiltzen ariko da." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Gatazka:" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Ez da diska aurkitu" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Ordeztea:" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Ez da fitxategia aurkitu" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zaharkitzea:" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Huts egin du atzitzean" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Apurturik" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Huts egin du aldaketa ordua ezartzean" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI baliogabea. URI lokalek ezin dute // eduki hasieran" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "garrantzitsua" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Sartzen" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "beharrezkoa" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Ezin izan da peer edo parekoaren izena zehaztu" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estandarra" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Ezin izan da izen lokala zehaztu" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "aukerakoa" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Zerbitzariak gure konexioa ukatu eta hau esan du: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "estra" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USERek huts egin du, eta zerbitzariak hau esan du: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "'%s' motako indize fitxategirik ez da onartzen" +msgid "PASS failed, server said: %s" +msgstr "PASSek huts egin du, eta zerbitzariak hau esan du: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Katxearen bertsio sistema ez da bateragarria" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Proxy zerbitzari bat zehaztu da, baina sarrerako script-ik ez. Acquire::ftp::" +"ProxyLogin hutsik dago." -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Errorea gertatu da %s prozesatzean (FindPkg)" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "" +"Sarrerako script-eko '%s' komandoak huts egin du, eta zerbitzariak hau esan " +"du: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "APT honek maneia dezakeen pakete izenen kopurua gainditu duzu." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPEk huts egin du, eta zerbitzariak hau esan du: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "APT honek maneia dezakeen bertsio kopurua gainditu duzu." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Konexioa denboraz kanpo" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "APT honek maneia dezakeen azalpen kopurua gainditu duzu." +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Zerbitzariak konexioa itxi du" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "APT honek maneia dezakeen mendekotasun muga gainditu duzu." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Erantzun batek bufferrari gainez eragin dio." -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "%s %s paketea ez da aurkitu fitxategi mendekotasunak prozesatzean" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokolo hondatzea" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Ezin izan da socket-a sortu" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Pakete Zerrenda irakurtzen" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Ezin izan da datu-socketa konektatu; konexioak denbora muga gainditu du" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Fitxategiaren erreferentziak biltzen" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Huts egin du" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "%s : ezin da idatzi" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Ezin izan da socket pasibora konektatu." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "S/I errorea iturburu katxea gordetzean" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo-k ezin izan du socket entzule bat eskuratu" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Ezin izan da socket bat lotu" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Ezin izan da socket-ean entzun" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Ezin izan da socket-aren izena zehaztu" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Ezin da PORT komandoa bidali" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Helbide familia ezezagunaa: %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." +msgid "EPRT failed, server said: %s" +msgstr "EPRTek huts egin du, eta zerbitzariak hau esan du: %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Egiaztapena ez dator bat" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Datu-socket konexioak denbora muga gainditu du" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Tamaina ez dator bat" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Ezin da konexioa onartu" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Eragiketa baliogabea: %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Arazoa fitxategiaren hash egitean" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "Ezin da fitxategia lortu; zerbitzariak hau esan du: '%s'" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Ezin da %s pakete fitxategia analizatu (1)" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datu-socketak denbora muga gainditu du" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Ez dago gako publiko erabilgarririk hurrengo gako ID hauentzat:\n" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Datu transferentziak huts egin du, eta zerbitzariak hau esan du: '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Kontsulta" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Ezin da deitu " -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:76 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Konektatzen -> %s.(%s)" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:87 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:94 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +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)" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:100 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Ezin izan da konexioa hasi -> %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:108 #, 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)" +msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " -"beharko duzu paketea. (arkitektura falta delako)" +"Ezin izan da konektatu -> %s:%s (%s). Konexioak denbora muga gainditu du" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:126 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr "Ezin izan da konektatu -> %s:%s (%s)" -#: apt-pkg/acquire-item.cc:1991 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s " -"paketearentzat." +msgid "Connecting to %s" +msgstr "Konektatzen -> %s..." -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "%s saltzaile blokeak ez du egiaztapen markarik" +msgid "Could not resolve '%s'" +msgstr "Ezin izan da '%s' ebatzi" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Aldi baterako akatsa '%s' ebaztean" + +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "%spartial zerrenda-direktorioa falta da." +msgid "System error resolving '%s:%s'" +msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "%spartial artxibo direktorioa falta da." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Ezin da zerrenda direktorioa blokeatu" +msgid "Unable to connect to %s:%s:" +msgstr "Ezin da konektatu -> %s %s:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li fitxategi deskargatzen %li -tik (%s falta da)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Barne errorea: Sinadura zuzena, baina ezin da egiaztapen marka zehaztu" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "%li fitxategia jasotzen %li-tik" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Beintza sinadura baliogabe bat aurkitu da." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo " -"zaharrak erabili dira haien ordez." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "'Iturburu' URI batzuk jarri behar dituzu sources.list-en" +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Ezin da %s abiarazi sinadura egiaztatzeko (gpgv instalaturik al dago?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Erregistro baliogabea hobespenen fitxategian, pakete goibururik ez" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Ez da ulertu %s orratz-mota (pin)" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Errore ezezaguna gpgv exekutatzean" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Ondorengo sinadurak baliogabeak dira:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"Ondorengo sinadurak ezin dira egiaztatu gako publikoa ez bait dago " +"eskuragarri:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "%s fitxategia ezin izan da ireki" - -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"Instalazio hau exekutatzeko, funtsezko %s paketea aldi baterako kendu behar " -"da, Gatazka/Aurre-mendekotasun begizta baten ondorioz. Normalean arriskutsua " -"izaten da, baina hala ere egin nahi baduzu, aktibatu APT::Force-LoopBreak " -"aukera." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "%2$s iturburu zerrendako %1$u lerroa luzeegia da." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM Desmuntatzen...\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "%s CD-ROM muntatze puntua erabiltzen\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Errorea fitxategian idaztean" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Diska itxaroten...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM-a muntatzen...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Errorea zerbitzaritik irakurtzean" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Egiaztatzen... " +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Errorea fitxategian idaztean" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Gordetako Etiketa: %s \n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Hautapenak huts egin du" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Indize fitxategien bila diska arakatzen...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Konexioaren denbora muga gainditu da" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu pakete indize, %zu jatorri indize %zu itzulpen indize eta %zu sinadura " -"aurkitu dira\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Errorea irteerako fitxategian idaztean" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Goiburuen zain" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Aurkitutako Etiketa: '%s' \n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Okerreko goiburu-lerroa" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Hau ez baliozko izen bat, froga berriro.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "http zerbitzariak erantzun goiburu baliogabe bat bidali du." -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Diskaren izen:\n" -"'%s'\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "http zerbitzariak Content-Length buru baliogabe bat bidali du" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Pakete zerrendak kopiatzen..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "http zerbitzariak Content-Range buru baliogabe bat bidali du" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Jatorri zerrenda berria idazten\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "http zerbitzariak barruti onarpena apurturik du" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Diskoarentzako jatorri sarrerak:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Datu formatu ezezaguna" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Goiburu data gaizki dago" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " -"atxikitako paketeek eraginda." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Konexioak huts egin du" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Barne errorea" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Dependentzia zuhaitza eraikitzen" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Berriketak kalkulatzen... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Hautagaien bertsioak" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Eginda" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Dependentzi Sormena" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Egoera argibideak irakurtzen" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Huts egin du %s EgoeraFitxategia irekitzean" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Ezin izan da %s aldiroko EgoeraFitrxategia idatzi" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Mendekotasunak zuzentzen..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Ezin da %s pakete fitxategia analizatu (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " : huts egin du." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Ezin da %s pakete fitxategia analizatu (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ezin dira mendekotasunak zuzendu" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "'%2$s'(r)en '%1$s' banaketa ez da aurkitu" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Ezin da bertsio berritzeko multzoa minimizatu" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Eginda" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Ezin izan da %s zeregina aurkitu" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu zuzentzeko." -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Ezin izan da %s paketea aurkitu" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz." -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Ezin izan da %s paketea aurkitu" +msgid "[installed,upgradable to: %s]" +msgstr " [Instalatuta]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalatuta]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalatuta]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalatuta]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "baina %s instalatuta dago" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "baina %s instalatzeko dago" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Ezin da %s pakete fitxategia analizatu (1)" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "baina ez da instalagarria" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Oharra, %s hautatzen %s(r)en ordez\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "baina pakete birtuala da" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "baina ez dago instalatuta" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Lerro baliogabea desbideratze fitxategian: %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "baina ez da instalatuko" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ezin da %s pakete fitxategia analizatu (1)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " edo" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Ondorengo pakete BERRIAK instalatuko dira:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Ondorengo paketeak KENDUKO dira:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Ondorengo paketeak mantendu egin dira:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Ondorengo paketeak bertsio-berrituko dira:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Ondorengo pakete atxikiak aldatu egingo dira:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" +msgid "%s (due to %s) " +msgstr "%s (arrazoia: %s) " -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n" +"EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Gaizkieratutako %lu lerroa %s iturburu zerrendan (banaketa orokorra)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +msgid "%lu reinstalled, " +msgstr "%lu berrinstalatuta, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "%s irekitzen" +msgid "%lu downgraded, " +msgstr "%lu aurreko bertsiora itzulita, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ez erabat instalatuta edo kenduta.\n" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "%s Instalatzen" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[B/e]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s konfiguratzen" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[b/E]" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s kentzen" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s guztiz ezabatu da" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "'%s' direktorioa falta da" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "%s fitxategia ezin izan da ireki" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s prestatzen" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s irekitzen" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Barne errorea, ez da ordenatzeaz amaitu" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s konfiguratzeko prestatzen" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Hau bitxia... Tamainak ez dira berdina, idatzi apt@packages.debian.org-ra " +"berri emanez (ingelesez)" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s Instalatuta" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s kentzeko prestatzen" +msgid "Need to get %sB of archives.\n" +msgstr "Artxiboetako %sB eskuratu behar dira.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s kendurik" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "%s guztiz ezabatzeko prestatzen" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s guztiz ezabatu da" +msgid "You don't have enough free space in %s." +msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Arazoak daude, eta -y erabili da --force-yes gabe" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "%s : ezin da idatzi" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Bai, egin esandakoa!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Egin nahi duzunak kalte larriak eragin ditzake\n" +"Jarraitzeko, idatzi '%s' esaldia\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abortatu." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Aurrera jarraitu nahi al duzu?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Fitxategi batzuk ezin izan dira deskargatu" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo " +"--fix-missing aukerarekin saiatu?" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Falta diren paketeak ezin dira zuzendu." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Abortatu instalazioa." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Suposatu ez dugun zerbait ezabatuko da, ezin da AutoRemover abiarazi" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" +"Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n" +"Mesedez programa errore txosten bat bete mesedez." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Informazio honek arazoa konpontzen lagun dezake:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" + +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "" +"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " +"behar." +msgstr[1] "" +"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " +"behar." -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Ezin da zerrenda direktorioa blokeatu" +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] "" +"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " +"behar." +msgstr[1] "" +"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " +"behar." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +#, 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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " +"zehaztu konponbide bat)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:638 +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 "" +"Pakete batzuk ezin izan dira instalatu. Beharbada ezinezko egoera \n" +"bat eskatu duzu, edo, banaketa ezegonkorra erabiltzen ari bazara,\n" +"beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n" +"Sarrerakoetan (Incoming) egoten jarraituko dute." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Hautsitako paketeak" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Ondorengo pakete gehigarriak instalatuko dira:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Iradokitako paketeak:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Gomendatutako paketeak:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "%s hautapena ez da aurkitu" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Ez da blokeorik erabiltzen ari irakurtzeko soilik den %s blokeo " -"fitxategiarentzat" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Ezin izan da %s blokeo fitxategia ireki" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s berriro instalatzea ez da posible; ezin da deskargatu.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Ez da blokeorik erabiltzen ari nfs %s muntatutako blokeo fitxategiarentzat" +msgid "%s is already the newest version.\n" +msgstr "%s bertsiorik berriena da jada.\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Ezin izan da %s blokeoa hartu" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Egiaztapen abisua gainidazten.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "%s azpiprozesuak errore kode bat itzuli du (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Zenbait pakete ezin dira egiaztatu" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "%s azpiprozesua ustekabean amaitu da" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Paketeak egiaztapen gabe instalatu?" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Arazoa fitxategia ixtean" +msgid "Failed to parse %s. Edit again? " +msgstr "Huts egin du %s izenaren ordez %s ipintzean" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "%s fitxategia ezin izan da ireki" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Ezin izan da %s(r)en kanalizazioa ireki" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Huts egin du IPC azpiprozesua sortzean" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Huts egin du konpresorea exekutatzean " +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "idatzita; oraindik %lu idazteke, baina ezin da" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atzituta " -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Arazoa fitxategia ixtean" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Hartu:" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Arazoa fitxategia sinkronizatzean" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ez ikusi " -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Arazoa fitxategia desestekatzean" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Arazoa fitxategia sinkronizatzean" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Lortuta: %sB (%s) (%sB/s)\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Errorea!" +msgid " [Working]" +msgstr " [Lanean]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Eginda" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Medio Aldaketa: Mesedez sar\n" +" '%s'\n" +"izeneko diska '%s' gailuan eta enter sakatu\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Eginda" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Ezin da fitxategi huts baten mmap egin" +msgid "Can not read mirror file '%s'" +msgstr "%s fitxategia ezin izan da ireki" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Ezin izan da %s(r)en kanalizazioa ireki" +msgid "No entry found in mirror file '%s'" +msgstr "%s fitxategia ezin izan da ireki" + +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Huts egin du azpiprozesuarentzako IPC kanalizazio bat sortzean" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Konexioa behar baino lehenago itxi da" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Okerreko ezarpen lehenetsia!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Jarraitzeko, sakatu Sartu." -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Ezin izan da %lu byteren mmap egin" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Deskargaturiko .deb fitxategi guztiak ezabatu nahi al dituzu?" -#: apt-pkg/contrib/mmap.cc:146 +#: dselect/install:102 #, fuzzy -msgid "Unable to close mmap" -msgstr "Ezin da %s ireki" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Errore batzuk gertatu dira deskonprimitzean. Konfiguratu egingo ditut" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Ezin da deitu " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Ezin izan da %lu byteren mmap egin" +msgid "will be configured. This may result in duplicate errors" +msgstr "instalatutako paketeak. Horrek errore bikoiztuak eragin ditzake" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Huts fitxategia mozterakoan" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "edo falta diren mendekotasunen erroreak. Hori ondo dago; mezu honen" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"MMAP dinamikoa memoriaz kanpo. Mesedez handitu APT::Cache-Start muga. Uneko " -"balioa: %lu. (man 5 apt.conf)" +"aurreko erroreak dira garrantzitsuak. Konpondu eta exekutatu [I]nstall " +"berriro" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Eskuragarrien datuak biltzen" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode-ri dei egin zaio oraindik estekatutako nodoan" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Ezin da atzitu %s muntatze puntua" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Huts egin du hash-elementua lokalizatzean!" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Huts egin du CDROMa atzitzean" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Huts egin du desbideratzea lokalizatzean" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Mota ezezaguneko laburtzapena: '%c'" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion-n barne errorea" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "%s konfigurazio fitxategia irekitzen" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Desbideratze bat gainidazten saiatzen: %s -> %s eta %s/%s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Sintaxi errorea, %s:%u: Blokearen hasieran ez dago izenik." +msgid "Double add of diversion %s -> %s" +msgstr "Desbideratzearen gehitze bikoitza: %s -> %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Sintaxi errorea %s:%u: Gaizki eratutako" +msgid "Duplicate conf file %s/%s" +msgstr "Konfigurazio fitxategi bikoiztua: %s/%s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria balioaren ondoren" +msgid "The path %s is too long" +msgstr "%s bidea luzeegia da" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" +msgid "Unpacking %s more than once" +msgstr "%s behin baino gehiagotan deskonprimitzen" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi" +msgid "The directory %s is diverted" +msgstr "%s direktorioa desbideratuta dago" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Paketea desbideratze helburuan %s/%s idazten saiatzen ari da" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Desbideratzearen bidea luzeegia da" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba" +msgid "Failed to stat %s" +msgstr "Huts egin du %s(e)tik datuak lortzean" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Huts egin du %s izenaren ordez %s ipintzean" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria fitxategi amaieran" +msgid "The directory %s is being replaced by a non-directory" +msgstr "%s direktorioa ez-direktorio batekin ordezten ari da" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Abortatu instalazioa." +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Huts egin du nodoa bere hash-ontzian lokalizatzean" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Ez da ezagutzen komando lerroko '%c' aukera [%s]." +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Bidea luzeegia da" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "Ez da ulertzen komando lerroko %s aukera" +msgid "Overwrite package match with no version for %s" +msgstr "Gainidatzi pakete-konkordantzia %s(r)en bertsiorik gabe" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Komando lerroko %s aukera ez da boolearra." +msgid "File %s/%s overwrites the one in the package %s" +msgstr "%s/%s fitxategiak %s paketekoa gainidazten du" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "%s aukerak argumentu bat behar du." +msgid "Unable to stat %s" +msgstr "Ezin da daturik lortu %s(e)tik" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"%s aukera: konfigurazio elementuaren zehaztapenak =<val> eduki behar du." +msgid "Failed to write file %s" +msgstr "Ezin izan da %s fitxategian idatzi" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "%s aukerak osoko argumentu bat behar du, eta ez '%s'" +msgid "Failed to close file %s" +msgstr "Ezin izan da %s fitxategia itxi" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "'%s' aukera luzeegia da" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Ez da baliozko DEB artxiboa; '%s' kidea falta da" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s zentzua ez da ulertzen; probatu egiazkoa edo faltsua." +msgid "Internal error, could not locate member %s" +msgstr "Barne Errorea, ezin da %s atala kokatu" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Kontrol fitxategi ezin analizagarria" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Artxibo sinadura baliogabea" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Errorea artxiboko kidearen goiburua irakurtzean" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Artxiboko kidearen goiburua baliogabea da" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Artxiboko kidearen goiburua baliogabea da" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Artxiboa laburregia da" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Huts egin artxibo goiburuak irakurtzean" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Huts egin du kanalizazioak sortzean" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Huts egin du gzip exekutatzean " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Hondatutako artxiboa" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar egiaztapenak huts egin, hondatutakofitxategia" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Eragiketa baliogabea: %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "%u TAR goiburu mota ezezaguna, %s kidea" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3513,7 +3517,7 @@ msgstr "Huts egin du MD5 konputatzean" msgid "Problem unlinking %s" msgstr "Arazoa %s desestekatzean" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3566,6 +3570,10 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib: -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s ez da baliozko DEB pakete bat." diff --git a/po/fi.po b/po/fi.po index 43853e5f1..6712128b4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen <tale@debian.org>\n" "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n" @@ -18,3145 +18,3149 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paketin %s versiossa %s on tyydyttämätön riippuvuus:\n" +msgid "Unable to read %s" +msgstr "Tiedostoa %s ei voi lukea" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Pakettien kokonaismäärä : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Kansioon %s vaihto ei onnistu" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Pakettien kokonaismäärä : " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "stat %s ei onnistu." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Tavallisia paketteja: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Aitoja näennäispaketteja: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Yksinkertaisia näennäispaketteja: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Sekanäennäispaketteja: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Puuttuu: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Kirjoitettiin %i tietuetta.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Eri versioita yhteensä: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa tiedostoa.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Eri kuvauksia yhteensä: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Kirjoitettiin %i tietuetta joissa oli %i paritonta tiedostoa\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Riippuvuuksia yhteensä: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa ja %i paritonta " +"tiedostoa\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Versio/tdsto suhteita yht: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Kuvaus/tdsto suhteita yht: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Kohteen %s tarkistussumma ei täsmää" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Tarjoamiskuvauksia yhteensä: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Menetelmän ajuria %s ei löytynyt" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Erilaisia merkkijonoja yhteensä: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Versioriippuvuustila yhteensä: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Menetelmä %s ei käynnistynyt oikein" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Löysää tilaa yhteensä: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Pistä levy nimeltään: \"%s\" asemaan \"%s\" ja paina Enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Käytetty tila yhteensä: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Pakettiluettelonn tai tilatiedoston avaaminen tai jäsennys epäonnistui." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakettitiedosto %s ei ole ajan tasalla." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Voit haluta suorittaa apt-get update näiden pulmien korjaamiseksi" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Yhtään pakettia ei löytynyt" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Lähteiden luetteloa ei pystynyt lukemaan." -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "On annettava täsmälleen yksi lauseke" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Pakettivarasto on tyhjä" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Pakettivarasto on turmeltunut" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Pakettivaraston versio on yhteensopimaton" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakettivarasto on turmeltunut" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Pakettia %s ei löydy" +msgid "This APT does not support the versioning system '%s'" +msgstr "Tämä APT ei tue versionhallintajärjestelmää \"%s\"" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakettitiedostot:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Pakettivarasto on tehty muulle arkkitehtuurille" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Varasto ei ole ajan tasalla, pakettitiedostoa ei löydy kansiosta" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Riippuvuudet" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paketit joissa tunniste:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Esiriippuvuudet" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ei löydy)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Ehdotukset" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Asennettu: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Suosittelut" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Ehdokas: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Ristiriidat" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ei mitään)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Korvaavuudet" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketin tunnistenumero: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Täydet korvaavuudet" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versiotaulukko:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Rikkoo" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s laitealustalle %s käännöksen päiväys %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Käyttö : apt-cache [valitsimet] komento\n" -" apt-cache [valitsimet] add tdsto1 [tdsto2 ...]\n" -" apt-cache [valitsimet] showpkg pkt1 [pkt2 ...]\n" -" apt-cache [valitsimet] showsrc pkt1 [pkt2 ...]\n" -"\n" -"apt-cache on alemman tason työkalu APT:n konekielisten\n" -"välimuistitiedostojen käsittelyyn ja tutkimiseen\n" -"Komennot:\n" -" add - Lisää paketti lähdevälimuistiin\n" -" gencaches - Tee sekä pakettivarasto että lähdevälimuisti\n" -" showpkg - Näytä joitain perustietoja yhdestä paketista\n" -" showsrc - Näytä lähdetietueet\n" -" stats - Näytä joitain perustilastoja\n" -" dump - Näytä koko tiedosto suppeassa muodossa\n" -" dumpavail - Tulosta saatavissa olevien luettelo oletustulosteeseen\n" -" unmet - Näytä tyydyttymättömät riippuvuudet\n" -" search - Etsi pakettiluettelosta säännöllisellä lausekkeella\n" -" show - Näytä paketin tietue luettavassa muodossa\n" -" depends - Näytä paketin riippuvuustiedot käsittelemättömässä muodossa\n" -" rdepends - Näytä paketin käänteiset riippuvuudet\n" -" pkgnames - Luettele järjestelmän kaikkien pakettien nimet\n" -" dotty - Tee paketeista graafit GraphViz-muodossa\n" -" xvcg - Tee paketeista graafit xvcg-muodossa\n" -" policy - Näytä mistä asennuspaketteja haetaan\n" -"\n" -"Valitsimet:\n" -" -h Tämä ohje\n" -" -p=? Pakettivarasto\n" -" -s=? Lähdevälimuisti\n" -" -q Poista edistymisen ilmaisin\n" -" -i Näytä vain tärkeät riippuvuudet unmet-komennossa\n" -" -c=? Lue tämä asetustiedosto\n" -" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -"Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "tärkeä" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Kirjoita levylle nimi, kuten \"Debian 2.1r1 Levy 1\"" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "välttämätön" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Aseta levy asemaan ja paina Enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "perus" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Nimen muuttaminen %s -> %s ei onnistunut" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "valinnainen" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ylimääräinen" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Toista tämä lopuille rompuille kasassasi." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parametrit eivät ole pareittain" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Käännösvirhe lausekkeessa - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Käyttö: apt-config [valitsimet] komento\n" -"\n" -"apt-config on yksinkertainen työkalu APT:n asetustiedoston lukemiseen\n" -"\n" -"Komennot:\n" -" shell - Muista ohjelmista käytettäväksi\n" -" dump - Näytä asetukset\n" -"\n" -"Valitsimet:\n" -" -h Tämä ohje\n" -" -c=? Lue tämä asetustiedosto\n" -" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Pakettia %s ei löytynyt" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Pakettia %s ei löytynyt" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Jummijammi, annoit enemmän pakettien nimiä kuin tämä APT osaa käsitellä." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Pakettia %s ei löytynyt" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä." -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "stat ei toiminut lähdepakettiluettelolle %s" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Jummijammi, tämä APT ei osaa käsitellä noin montaa kuvausta." -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +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ä." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Pakettia %s ei löytynyt" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Pakettia %s %s ei löytynyt käsiteltäessä tiedostojen riippuvuuksia." -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +msgid "Couldn't stat source package list %s" +msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Luetaan pakettiluetteloita" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Kootaan tiedostojen tarjoamistietoja" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Sisäinen virhe, resolver rikkoi jotain" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Tiedostoon %s kirjoittaminen ei onnistu" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Noutokansiota ei saatu lukittua" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Paketin %s lähdekoodipakettia ei löytynyt" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" +msgid "rename failed, %s (%s -> %s)." +msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)." -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Tarkistussumma ei täsmää" -#. 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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Koko ei täsmää" -#. 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "On noudettava %st lähdekoodiarkistoja.\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Virheellinen toiminto %s" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "Nouda lähdekoodi %s\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Joidenkin arkistojen noutaminen ei onnistunut." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Nouto on valmis ja määrätty vain nouto" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Purkukomento \"%s\" ei onnistunut.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Paketointikomento \"%s\" ei onnistunut.\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Lapsiprosessi kaatui" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan " +"tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-" +"kenttää." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" +msgid "Vendor block %s contains no fingerprint" +msgstr "Toimittajan lohkosta %s puuttuu sormenjälki" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Luettelokansio %spartial puuttuu." -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" +msgid "Archives directory %spartial is missing." +msgstr "Arkistokansio %spartial puuttuu." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Luettelokansiota ei voitu lukita" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)" + +#: apt-pkg/acquire.cc:904 #, c-format +msgid "Retrieving file %li of %li" +msgstr "Noudetaan tiedosto %li / %li" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Tiedoston %s nouto ei onnistunut %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" +"Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai " +"käytetty vanhoja. " -#: cmdline/apt-get.cc:1312 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Tiedostossa sources.list on oltava rivejä joissa \"lähde\"-URI" + +#: apt-pkg/policy.cc:83 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Riippuvutta %s paketille %s ei voi tyydyttää: Asennettu paketti %s on liian " -"uusi" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Asetustiedostossa on virheellinen tietue, Package-otsikko puuttuu" + +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Tunnistetyyppi %s on tuntematon" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " -"ei vastaa versioriippuvuuksia" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Tiedostoa %s ei voitu avata" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" +"Tämän asennusajo vaatii tilapäisesti poistettavaksi välttämättömän paketin " +"%s Conflicts/Pre-Depends -kehämäärittelyn takia. Tämä on usein pahasta, " +"mutta jos varmasti haluat tehdä niin, käytä APT::Force-LoopBreak -valitsinta." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" +msgid "Line %u too long in source list %s." +msgstr "Rivi %u on liian pitkä lähdeluettelossa %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Irrotetaan romppu...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." +msgid "Using CD-ROM mount point %s\n" +msgstr "Käytetään rompun liitoskohtaa %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Odotetaan levyä...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Avataan yhteys %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Liitetään romppu...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Tuetut moduulit:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Tunnistetaan... " -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Tallennettu nimio: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Etsitään levyltä hakemistotiedostoja...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Käyttö: apt-get [valitsimet] komento\n" -" apt-get [valitsimet] install|remove pkt1 [pkt2 ...]\n" -" apt-get [valitsimet] source pkt1 [pkt2 ...]\n" -"\n" -"apt-get on yksinkertainen komentorivityökalu pakettien noutamiseen\n" -"ja asentamiseen. Useimmiten käytetyt komennot ovat update ja \n" -"install.\n" -"Komennot:\n" -" update - Nouda uusi pakettiluettelo\n" -" upgrade - Tee päivitys\n" -" install - Asenna uusia paketteja (esim. libc6 eikä libc6.deb)\n" -" remove - Poista paketteja\n" -" autoremove - Poista kaikki käyttämättömät paketit\n" -" purge - Poista paketit asennustiedostoineen\n" -" source - Nouda lähdekoodiarkistoja\n" -" build-dep - Määritä paketointiriippuvuudet lähdekoodipaketeille\n" -" dist-upgrade - Koko jakelun päivitys, katso apt-get(8)\n" -" dselect-upgrade - Noudata dselect:n valintoja\n" -" clean - Poista noudetut pakettitiedostot\n" -" autoclean - Poista vanhat noudetut tiedostot\n" -" check - Tarkasta ettei ole tyydyttämättömiä riippuvuuksia\n" -"\n" -"Valitsimet:\n" -" -h Tämä ohje\n" -" -q Lokiin sopiva tulostus - edistymisen ilmaisin jätetään pois\n" -" -qq Ei lainkaan tulostusta paitsi virheistä\n" -" -d Vain nouto - paketteja EI asenneta tai pureta\n" -" -s Älä tee mitään. Oikean toiminnan simulaatio\n" -" -y Vastataan Kyllä kaikkiin kysymyksiin eikä kehoitetta näytetä\n" -" -f Yritä jatkaa jos eheystarkastus löysi virheen\n" -" -m Yritä jatkaa jos arkistojen sijainti ei selviä\n" -" -u Näytä luettelo myös päivitetyistä paketeista\n" -" -b Käännä lähdekoodipaketti noudon jälkeen\n" -" -V Näytä pitkät versionumerot\n" -" -c=? Lue tämä asetustiedosto\n" -" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -"Katso apt-get(8), sources.list(5) ja apt.conf(5) käsikirjasivuilta\n" -"lisätietoja ja lisää valitsimia.\n" -" This APT has Super Cow Powers.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Hakemistoja löytyi: Asennuspakettien %zu, lähdekoodipakettien %zu, " +"käännösten %zu ja allekirjoituksia löytyi %zu\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "mutta ei ole asennettu" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s on jo uusin versio.\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Löytyi nimiö: \"%s\"\n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s on jo uusin versio.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Odotettiin %s, mutta sitä ei ollut" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Tämä levy on: \n" +"\"%s\"\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopioidaan pakettiluetteloita..." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Tiedoston %s avaaminen ei onnistunut" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Kirjoitetaan uusi lähdeluettelo\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" +"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." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " +"paketit." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Rompputietokantaa %s ei voi lukea" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." -#: 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 "" -"Käytä komentoa apt-cdrom jotta APT tunnistaa tämän rompun, apt-get update ei " -"osaa lisätä uusia romppuja" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Muodostetaan riippuvuussuhteiden puu" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Väärä romppu" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Mahdolliset versiot" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Rompun %s irrottaminen ei onnistu, se on ehkä käytössä." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Luodaan riippuvuudet" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Levyä ei löydy" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Luetaan tilatiedot" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Tiedostoa ei löydy" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Tilatiedoston %s avaaminen ei onnistunut" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Komento stat ei toiminut" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Tilapäisen tilatiedoston %s kirjoittaminen ei onnistunut" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Tiedoston muutospäivämäärää ei saatu vaihdettua" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Kirjaudutaan sisään" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Vastapään nimeä ei saa selville" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Pakettitiedostoa %s (2) ei voi jäsentää" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Paikallista nimeä ei saa selville" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Palvelin ei huolinut yhteyttä ilmoituksella: %s" +msgid "Version '%s' for '%s' was not found" +msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER ei onnistunut, palvelimen ilmoitus: %s" +msgid "Unable to locate package %s" +msgstr "Pakettia %s ei löydy" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Tehtävää %s ei löytynyt" + +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Pakettia %s ei löytynyt" + +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Pakettia %s ei löytynyt" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:252 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Määritettiin välipalvelin mutta ei komentotiedostoa kirjautumiseen, Acquire::" -"ftp::ProxyLogin on tyhjä." -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE ei toiminut, palvelin ilmoitti: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Yhteys aikakatkaistiin" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Palvelin sulki yhteyden" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Lukuvirhe" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Vastaus aiheutti puskurin ylivuodon." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Yhteyskäytäntö on turmeltunut" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Virhe kirjoitettaessa" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Huomautus, valitaan %s eikä %s\n" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Pistoketta ei voitu luoda" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Virheellinen rivi korvautustiedostossa: %s" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Ei onnistunut" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Passiivista pistoketta ei voitu kytkeä." +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo ei saanut kuuntelupistoketta" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Pistoketta ei voitu nimetä" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Pistoketta ei voitu kuunnella" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Pistokkeen nimeä ei saatu selville" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Komennon PORT lähetys ei onnistu" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Tuntematon osoiteperhe %u (AF_*)" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Pistokkeen kytkeminen aikakatkaistiin" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Yhteyttä ei voitu hyväksyä" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Pulmia tiedoston hajautuksessa" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\"" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Pistoke aikakatkaistiin" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)" -#: methods/ftp.cc:935 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\"" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Kysely" - -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Käynnistys ei onnistu" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (Absoluuttinen dist)" -#: methods/connect.cc:76 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Avataan yhteys %s (%s)" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: methods/connect.cc:87 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Opening %s" +msgstr "Avataan %s" -#: methods/connect.cc:94 +#: apt-pkg/sourcelist.cc:371 #, 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)" +msgid "Malformed line %u in source list %s (type)" +msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)" -#: methods/connect.cc:100 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Yhteyden %s avaus ei onnistu: %s (%s)." +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" -#: 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" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)" +msgid "Installing %s" +msgstr "Asennetaan %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Avataan yhteys %s" - -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nimeä \"%s\" ei voitu selvittää" +msgid "Configuring %s" +msgstr "Tehdään asetukset: %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Tilapäinen häiriö selvitettäessä \"%s\"" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%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)" +msgid "Removing %s" +msgstr "Poistetaan %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:" +msgid "Completely removing %s" +msgstr "%s poistettiin kokonaan" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" msgstr "" -"Sisäinen virhe: Allekirjoitus kelpaa, mutta avaimen sormenjälki tuntematon?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "LÖytyi ainakin yksi kelvoton allekirjoitus." -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Ei käynnistynyt \"%s\" allekirjoitusta tarkistamaan (onko gpgv asennettu?)" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Suoritetaan jälkiasennusliipaisin %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Directory '%s' missing" +msgstr "Kansio \"%s\" puuttuu." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Tapahtui tuntematon virhe suoritettaessa gpgv" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Tiedostoa %s ei voitu avata" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Seuraavat allekirjoitukset eivät olleet kelvollisia:\n" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Valmistellaan %s" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Seuraavia allekirjoituksia ei voinut varmentaa koska julkista avainta ei ole " -"saatavilla:\n" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Puretaan %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Valmistaudutaan tekemään asetukset: %s" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s asennettu" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Valmistaudutaan poistamaan %s" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Tapahtui virhe luettaessa palvelimelta" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s poistettu" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Valmistaudutaan poistamaan %s kokonaan" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Select ei toiminut" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s poistettiin kokonaan" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Yhteys aikakatkaistiin" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Tiedostoon %s kirjoittaminen ei onnistu" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Odotetaan otsikoita" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Virheellinen otsikkorivi" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Odotettiin %s, mutta sitä ei ollut" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP-palvelimen arvoaluetuki on rikki" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Tuntematon päiväysmuoto" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Virheellinen otsikkotieto" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Yhteys ei toiminut" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Sisäinen virhe" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Käsitellään päivitystä ... " +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Valmis" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Luettelokansiota ei voitu lukita" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" -#: apt-private/private-list.cc:164 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Korjataan riippuvuuksia..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ei onnistunut." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Riippuvuuksien korjaus ei onnistu" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Päivitysjoukon minimointi ei onnistu" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Valmis" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä." +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Valintaa %s ei löydy" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Lukkotiedostoa %s ei voitu avata" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Asennettu]" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Asennettu]" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Lukkoa %s ei saada" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Asennettu]" - -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Asennettu]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "[upgradable from: %s]" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Aliprosessi %s aiheutti suojausvirheen." + +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "but %s is installed" -msgstr "mutta %s on asennettu" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Aliprosessi %s palautti virhekoodin (%u)" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "but %s is to be installed" -msgstr "mutta %s on merkitty asennettavaksi" +msgid "Sub-process %s exited unexpectedly" +msgstr "Aliprosessi %s lopetti odottamatta" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "mutta ei ole asennuskelpoinen" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Virhe kirjoitettaessa" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "mutta on näennäispaketti" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Pulmia tiedoston sulkemisessa" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "mutta ei ole asennettu" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Tiedostoa %s ei voitu avata" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "mutta ei ole merkitty asennettavaksi" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Putkea %s ei voitu avata" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " tai" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Seuraavat UUDET paketit asennetaan:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Pakkaajan käynnistäminen ei onnistunut" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Seuraavat paketit POISTETAAN:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Lukuvirhe" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Nämä paketit on jätetty odottamaan:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "read, vielä %lu lukematta mutta tiedosto loppui" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Nämä paketit päivitetään:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Nämä paketit VARHENNETAAN:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Pulmia tiedoston sulkemisessa" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Seuraavat pysytetyt paketit muutetaan:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Pulmia tehtäessä tiedostolle sync" -#: apt-private/private-output.cc:655 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (syynä %s) " +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Pulmia tehtäessä tiedostolle unlink" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n" -"Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Pulmia tehtäessä tiedostolle sync" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu päivitetty, %lu uutta asennusta, " +msgid "%c%s... Error!" +msgstr "%c%s... Virhe!" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu uudelleen asennettua, " +msgid "%c%s... Done" +msgstr "%c%s... Valmis" -#: apt-private/private-output.cc:700 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu varhennettua, " +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:702 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Valmis" -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ei asennettu kokonaan tai poistettiin.\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[K/e]" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Putkea %s ei voitu avata" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Ei voitu tehdä %lu tavun mmap:ia" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "K" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Tiedoston %s avaaminen ei onnistunut" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Käynnistys ei onnistu" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Regex compilation error - %s" -msgstr "Käännösvirhe lausekkeessa - %s" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Ei voitu tehdä %lu tavun mmap:ia" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Komento update ei käytä parametreja" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Tiedoston typistäminen ei onnistunut" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Komento stat ei toiminut liitoskohdalle %s" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Komento stat ei toiminut rompulle" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tuntematon tyypin lyhenne: \"%c\"" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Avataan asetustiedosto %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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Noudettavaa arkistoa %st/%st.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä." -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Noudettavaa arkistoa %st.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa." +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Oli pulmia ja -y käytettiin ilman valitsinta --force-yes" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -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." +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\"" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Kyllä, tee kuten käsketään!" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Olet aikeissa tehdä mahdollisesti vahingollisen toimenpiteen.\n" -"Jatka kirjoittamalla \"%s\"\n" -" ?] " - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Keskeytä." +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Haluatko jatkaa?" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Asennus keskeytetään." -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Joidenkin tiedostojen nouto ei onnistunut" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon." -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai " -"kokeile --fix-missing?" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Komentorivin valitsin %s on tuntematon" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Komentorivin valitsin %s ei ole totuusarvoinen" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Puuttuvia paketteja ei voi korjata." +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Valitsin %s tarvitsee parametrin" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Asennus keskeytetään." +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =<arvo>." -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Valitsin %s tarvitsee kokonaislukuparametrin, ei \"%s\"" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Valitsin \"%s\" on liian pitkä" -#: apt-private/private-install.cc:390 -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ää" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Arvo %s on tuntematon, yritä tosi tai epätosi." -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, nähtävästi AutoRemover tuhosi jotain, mitä ei pitäisi tapahtua.\n" -"Tekisitkö vikailmoituksen apt:sta." +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Virheellinen toiminto %s" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paketin %s versiossa %s on tyydyttämätön riippuvuus:\n" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Pakettien kokonaismäärä : " -#: apt-private/private-install.cc:512 +#: cmdline/apt-cache.cc:279 #, fuzzy -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] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" -msgstr[1] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" +msgid "Total package structures: " +msgstr "Pakettien kokonaismäärä : " -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" -msgstr[1] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Tavallisia paketteja: " -#: apt-private/private-install.cc:518 -#, 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-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Aitoja näennäispaketteja: " -#: apt-private/private-install.cc:612 -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-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Yksinkertaisia näennäispaketteja: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " -"ilmanpaketteja (tai ratkaise itse)." +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Sekanäennäispaketteja: " -#: apt-private/private-install.cc:628 -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 "" -"Joitakin paketteja ei voitu asentaa. On ehkä vaadittu mahdottomia tai,\n" -"jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n" -"vielä luotu tai siirretty Incoming-kansiosta." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Puuttuu: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Rikkinäiset paketit" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Eri versioita yhteensä: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Eri kuvauksia yhteensä: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Ehdotetut paketit:" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Riippuvuuksia yhteensä: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Suositellut paketit:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Versio/tdsto suhteita yht: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Kuvaus/tdsto suhteita yht: " -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Tarjoamiskuvauksia yhteensä: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Erilaisia merkkijonoja yhteensä: " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s on jo uusin versio.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Versioriippuvuustila yhteensä: " -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Valittiin versio %s (%s) paketille %s\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Löysää tilaa yhteensä: " -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Valittiin versio %s (%s) paketille %s\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Käytetty tila yhteensä: " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Pakettitiedosto %s ei ole ajan tasalla." -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Yhtään pakettia ei löytynyt" -#: apt-private/private-main.cc:32 -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!" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "On annettava täsmälleen yksi lauseke" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakettitiedostot:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Varoitus varmistamisesta on ohitettu.\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Varasto ei ole ajan tasalla, pakettitiedostoa ei löydy kansiosta" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paketit joissa tunniste:" + +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ei löydy)" + +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Asennettu: " + +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Ehdokas: " + +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ei mitään)" + +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paketin tunnistenumero: " + +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versiotaulukko:" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s laitealustalle %s käännöksen päiväys %s %s\n" + +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Käyttö : apt-cache [valitsimet] komento\n" +" apt-cache [valitsimet] add tdsto1 [tdsto2 ...]\n" +" apt-cache [valitsimet] showpkg pkt1 [pkt2 ...]\n" +" apt-cache [valitsimet] showsrc pkt1 [pkt2 ...]\n" +"\n" +"apt-cache on alemman tason työkalu APT:n konekielisten\n" +"välimuistitiedostojen käsittelyyn ja tutkimiseen\n" +"Komennot:\n" +" add - Lisää paketti lähdevälimuistiin\n" +" gencaches - Tee sekä pakettivarasto että lähdevälimuisti\n" +" showpkg - Näytä joitain perustietoja yhdestä paketista\n" +" showsrc - Näytä lähdetietueet\n" +" stats - Näytä joitain perustilastoja\n" +" dump - Näytä koko tiedosto suppeassa muodossa\n" +" dumpavail - Tulosta saatavissa olevien luettelo oletustulosteeseen\n" +" unmet - Näytä tyydyttymättömät riippuvuudet\n" +" search - Etsi pakettiluettelosta säännöllisellä lausekkeella\n" +" show - Näytä paketin tietue luettavassa muodossa\n" +" depends - Näytä paketin riippuvuustiedot käsittelemättömässä muodossa\n" +" rdepends - Näytä paketin käänteiset riippuvuudet\n" +" pkgnames - Luettele järjestelmän kaikkien pakettien nimet\n" +" dotty - Tee paketeista graafit GraphViz-muodossa\n" +" xvcg - Tee paketeista graafit xvcg-muodossa\n" +" policy - Näytä mistä asennuspaketteja haetaan\n" +"\n" +"Valitsimet:\n" +" -h Tämä ohje\n" +" -p=? Pakettivarasto\n" +" -s=? Lähdevälimuisti\n" +" -q Poista edistymisen ilmaisin\n" +" -i Näytä vain tärkeät riippuvuudet unmet-komennossa\n" +" -c=? Lue tämä asetustiedosto\n" +" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" +"Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Asennetaanko nämä paketit ilman todennusta?" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Kirjoita levylle nimi, kuten \"Debian 2.1r1 Levy 1\"" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Tiedoston %s nouto ei onnistunut %s\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Aseta levy asemaan ja paina Enter" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " +msgid "Failed to mount '%s' to '%s'" msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Löytyi " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Nouda:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Siv " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Vrhe " - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Noudettiin %st ajassa %s (%st/s)\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Toista tämä lopuille rompuille kasassasi." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Työskennellään]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parametrit eivät ole pareittain" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Taltion vaihto: Pistä levy \n" -"\"%s\"\n" -"asemaan \"%s\" ja paina Enter\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Tiedostoa %s ei voi lukea" +"Käyttö: apt-config [valitsimet] komento\n" +"\n" +"apt-config on yksinkertainen työkalu APT:n asetustiedoston lukemiseen\n" +"\n" +"Komennot:\n" +" shell - Muista ohjelmista käytettäväksi\n" +" dump - Näytä asetukset\n" +"\n" +"Valitsimet:\n" +" -h Tämä ohje\n" +" -c=? Lue tämä asetustiedosto\n" +" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Kansioon %s vaihto ei onnistu" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Pakettia %s ei löytynyt" -#. 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 "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Pakettia %s ei löytynyt" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Tiedostoa %s ei voitu avata" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Pakettia %s ei löytynyt" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Tiedostoa %s ei voitu avata" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:423 #, c-format -msgid "[Mirror: %s]" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "IPC-putken luominen aliprosessiin ei onnistunut" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Yhteys katkesi ennenaikaisesti" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Oletusasetus ei kelpaa!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Jatka painamalla Enter." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Haluatko poistaa aiemmin noudettuja .deb-tiedostoja?" - -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Pakettia %s ei löytynyt" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"tai tyydyttämättömät riippuvuudet aiheuttavat virheitä. Tämä ei haittaa" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"vain tätä viestiä ennen tulleilla virheillä on merkitystä. Korjaa ne ja aja " -"[I]nstall uudestaan" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Yhdistetään saatavuustiedot" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Kutsuttiin DropNode mutta tiedostoon on vielä linkki" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Hajautusalkiota ei löytynyt!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Korvautuksen varaus ei onnistunut" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion: sisäinen virhe" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Sisäinen virhe, resolver rikkoi jotain" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Yritetään kirjoittaa korvautuksen päälle, %s -> %s ja %s/%s" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Noutokansiota ei saatu lukittua" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Korvautuksen kaksoislisäys %s -> %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Asetustiedoston kaksoiskappale %s/%s" +msgid "Unable to find a source package for %s" +msgstr "Paketin %s lähdekoodipakettia ei löytynyt" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:786 #, c-format -msgid "The path %s is too long" -msgstr "Polku %s on liian pitkä" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Unpacking %s more than once" -msgstr "Purettiin %s useammin kuin kerran" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:843 #, c-format -msgid "The directory %s is diverted" -msgstr "Kansio %s on korvautunut" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Paketti yrittää kirjoittaa korvautuksen kohteeseen %s/%s" +msgid "Couldn't determine free space in %s" +msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Korvautuspolku on liian pitkä" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#. 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:891 #, c-format -msgid "Failed to stat %s" -msgstr "Tiedostolle %s ei toimi stat" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. 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:896 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nimen muuttaminen %s -> %s ei onnistunut" +msgid "Need to get %sB of source archives.\n" +msgstr "On noudettava %st lähdekoodiarkistoja.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Kansiota %s ollaan korvaamassa muulla kuin kansiolla" +msgid "Fetch source %s\n" +msgstr "Nouda lähdekoodi %s\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Solmua ei löytynyt sen hajautuslokerosta" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Joidenkin arkistojen noutaminen ei onnistunut." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Polku on liian pitkä" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Nouto on valmis ja määrätty vain nouto" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Päälle kirjoitettava paketti täsmää mutta paketille %s ei ole versiota" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:962 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Tiedosto %s/%s kirjoitetaan paketista %s tulleen päälle" +msgid "Unpack command '%s' failed.\n" +msgstr "Purkukomento \"%s\" ei onnistunut.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to stat %s" -msgstr "Tiedostolle %s ei toimi stat" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Failed to write file %s" -msgstr "Tiedoston %s kirjoittaminen ei onnistunut" +msgid "Build command '%s' failed.\n" +msgstr "Paketointikomento \"%s\" ei onnistunut.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Lapsiprosessi kaatui" + +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" + +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Failed to close file %s" -msgstr "Tiedoston %s sulkeminen ei onnistunut" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Tämä ei ole kelvollinen DEB-arkisto, puuttuu tiedosto \"%s\"" +msgid "Unable to get build-dependency information for %s" +msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Tapahtui sisäinen virhe, tiedostoa %s ei löydy" +msgid "%s has no build depends.\n" +msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ohjaustiedosto ei jäsenny" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Arkiston tarkistussumma on virheellinen" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Tapahtui virhe luettaessa arkiston tiedoston otsikkoa" +#: cmdline/apt-get.cc:1312 +#, 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" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1351 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Arkiston tiedoston otsikko on virheellinen" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Arkiston tiedoston otsikko on virheellinen" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " +"ei vastaa versioriippuvuuksia" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkisto on pienempi kuin pitäisi" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Arkiston otsikoiden luku ei onnistunut" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Putkien luonti ei onnistunut" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "exec gzip ei onnistunut" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arkisto on turmeltunut" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Avataan yhteys %s (%s)" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-ohjelman laskema tarkistussumma ei täsmää, arkisto on turmeltunut" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Tuetut moduulit:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tuntematon TAR-otsikon tyyppi %u, tiedosto %s" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Käyttö: apt-get [valitsimet] komento\n" +" apt-get [valitsimet] install|remove pkt1 [pkt2 ...]\n" +" apt-get [valitsimet] source pkt1 [pkt2 ...]\n" +"\n" +"apt-get on yksinkertainen komentorivityökalu pakettien noutamiseen\n" +"ja asentamiseen. Useimmiten käytetyt komennot ovat update ja \n" +"install.\n" +"Komennot:\n" +" update - Nouda uusi pakettiluettelo\n" +" upgrade - Tee päivitys\n" +" install - Asenna uusia paketteja (esim. libc6 eikä libc6.deb)\n" +" remove - Poista paketteja\n" +" autoremove - Poista kaikki käyttämättömät paketit\n" +" purge - Poista paketit asennustiedostoineen\n" +" source - Nouda lähdekoodiarkistoja\n" +" build-dep - Määritä paketointiriippuvuudet lähdekoodipaketeille\n" +" dist-upgrade - Koko jakelun päivitys, katso apt-get(8)\n" +" dselect-upgrade - Noudata dselect:n valintoja\n" +" clean - Poista noudetut pakettitiedostot\n" +" autoclean - Poista vanhat noudetut tiedostot\n" +" check - Tarkasta ettei ole tyydyttämättömiä riippuvuuksia\n" +"\n" +"Valitsimet:\n" +" -h Tämä ohje\n" +" -q Lokiin sopiva tulostus - edistymisen ilmaisin jätetään pois\n" +" -qq Ei lainkaan tulostusta paitsi virheistä\n" +" -d Vain nouto - paketteja EI asenneta tai pureta\n" +" -s Älä tee mitään. Oikean toiminnan simulaatio\n" +" -y Vastataan Kyllä kaikkiin kysymyksiin eikä kehoitetta näytetä\n" +" -f Yritä jatkaa jos eheystarkastus löysi virheen\n" +" -m Yritä jatkaa jos arkistojen sijainti ei selviä\n" +" -u Näytä luettelo myös päivitetyistä paketeista\n" +" -b Käännä lähdekoodipaketti noudon jälkeen\n" +" -V Näytä pitkät versionumerot\n" +" -c=? Lue tämä asetustiedosto\n" +" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" +"Katso apt-get(8), sources.list(5) ja apt.conf(5) käsikirjasivuilta\n" +"lisätietoja ja lisää valitsimia.\n" +" This APT has Super Cow Powers.\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "stat %s ei onnistu." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Kirjoitettiin %i tietuetta.\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, 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:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Kirjoitettiin %i tietuetta joissa oli %i paritonta tiedostoa\n" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "mutta ei ole asennettu" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa ja %i paritonta " -"tiedostoa\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Kohteen %s tarkistussumma ei täsmää" +msgid "%s was already set on hold.\n" +msgstr "%s on jo uusin versio.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Menetelmän ajuria %s ei löytynyt" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s on jo uusin versio.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" +msgid "%s set on hold.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Menetelmä %s ei käynnistynyt oikein" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Tiedoston %s avaaminen ei onnistunut" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Pistä levy nimeltään: \"%s\" asemaan \"%s\" ja paina Enter." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"Pakettiluettelonn tai tilatiedoston avaaminen tai jäsennys epäonnistui." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Voit haluta suorittaa apt-get update näiden pulmien korjaamiseksi" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Lähteiden luetteloa ei pystynyt lukemaan." +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Rompputietokantaa %s ei voi lukea" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Pakettivarasto on tyhjä" +#: 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 "" +"Käytä komentoa apt-cdrom jotta APT tunnistaa tämän rompun, apt-get update ei " +"osaa lisätä uusia romppuja" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Pakettivarasto on turmeltunut" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Väärä romppu" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Pakettivaraston versio on yhteensopimaton" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Rompun %s irrottaminen ei onnistu, se on ehkä käytössä." -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Pakettivarasto on turmeltunut" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Levyä ei löydy" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Tämä APT ei tue versionhallintajärjestelmää \"%s\"" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Tiedostoa ei löydy" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Pakettivarasto on tehty muulle arkkitehtuurille" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Komento stat ei toiminut" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Riippuvuudet" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Tiedoston muutospäivämäärää ei saatu vaihdettua" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Esiriippuvuudet" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Ehdotukset" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Kirjaudutaan sisään" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Suosittelut" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Vastapään nimeä ei saa selville" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Ristiriidat" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Paikallista nimeä ei saa selville" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Korvaavuudet" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Palvelin ei huolinut yhteyttä ilmoituksella: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Täydet korvaavuudet" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER ei onnistunut, palvelimen ilmoitus: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Rikkoo" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"Määritettiin välipalvelin mutta ei komentotiedostoa kirjautumiseen, Acquire::" +"ftp::ProxyLogin on tyhjä." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "tärkeä" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "välttämätön" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "perus" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE ei toiminut, palvelin ilmoitti: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valinnainen" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Yhteys aikakatkaistiin" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ylimääräinen" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Palvelin sulki yhteyden" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Vastaus aiheutti puskurin ylivuodon." -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Yhteyskäytäntö on turmeltunut" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Pistoketta ei voitu luoda" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Jummijammi, annoit enemmän pakettien nimiä kuin tämä APT osaa käsitellä." +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Ei onnistunut" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Jummijammi, tämä APT ei osaa käsitellä noin montaa kuvausta." +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Passiivista pistoketta ei voitu kytkeä." -#: apt-pkg/pkgcachegen.cc:266 -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ä." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo ei saanut kuuntelupistoketta" -#: apt-pkg/pkgcachegen.cc:576 -#, 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." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Pistoketta ei voitu nimetä" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "stat ei toiminut lähdepakettiluettelolle %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Pistoketta ei voitu kuunnella" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Luetaan pakettiluetteloita" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Pistokkeen nimeä ei saatu selville" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Kootaan tiedostojen tarjoamistietoja" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Komennon PORT lähetys ei onnistu" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr "Tiedostoon %s kirjoittaminen ei onnistu" +msgid "Unknown address family %u (AF_*)" +msgstr "Tuntematon osoiteperhe %u (AF_*)" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Pistokkeen kytkeminen aikakatkaistiin" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Yhteyttä ei voitu hyväksyä" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Pulmia tiedoston hajautuksessa" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\"" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Pistoke aikakatkaistiin" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:935 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Tarkistussumma ei täsmää" +msgid "Data transfer failed, server said '%s'" +msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\"" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Koko ei täsmää" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Kysely" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Virheellinen toiminto %s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Käynnistys ei onnistu" -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" - -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n" +msgid "Connecting to %s (%s)" +msgstr "Avataan yhteys %s (%s)" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:87 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:94 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +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)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:100 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Yhteyden %s avaus ei onnistu: %s (%s)." -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:108 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s), yhteys aikakatkaistiin" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:126 #, 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 "" -"En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan " -"tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)" +msgid "Could not connect to %s:%s (%s)." +msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)" -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "Avataan yhteys %s" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-" -"kenttää." +msgid "Could not resolve '%s'" +msgstr "Nimeä \"%s\" ei voitu selvittää" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Toimittajan lohkosta %s puuttuu sormenjälki" +msgid "Temporary failure resolving '%s'" +msgstr "Tilapäinen häiriö selvitettäessä \"%s\"" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Luettelokansio %spartial puuttuu." +msgid "System error resolving '%s:%s'" +msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkistokansio %spartial puuttuu." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Luettelokansiota ei voitu lukita" +msgid "Unable to connect to %s:%s:" +msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Sisäinen virhe: Allekirjoitus kelpaa, mutta avaimen sormenjälki tuntematon?!" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Noudetaan tiedosto %li / %li" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "LÖytyi ainakin yksi kelvoton allekirjoitus." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai " -"käytetty vanhoja. " - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Tiedostossa sources.list on oltava rivejä joissa \"lähde\"-URI" +"Ei käynnistynyt \"%s\" allekirjoitusta tarkistamaan (onko gpgv asennettu?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Asetustiedostossa on virheellinen tietue, Package-otsikko puuttuu" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Tunnistetyyppi %s on tuntematon" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Tapahtui tuntematon virhe suoritettaessa gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Seuraavat allekirjoitukset eivät olleet kelvollisia:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"Seuraavia allekirjoituksia ei voinut varmentaa koska julkista avainta ei ole " +"saatavilla:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Tiedostoa %s ei voitu avata" - -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"Tämän asennusajo vaatii tilapäisesti poistettavaksi välttämättömän paketin " -"%s Conflicts/Pre-Depends -kehämäärittelyn takia. Tämä on usein pahasta, " -"mutta jos varmasti haluat tehdä niin, käytä APT::Force-LoopBreak -valitsinta." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Rivi %u on liian pitkä lähdeluettelossa %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Irrotetaan romppu...\n" - -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Käytetään rompun liitoskohtaa %s\n" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Odotetaan levyä...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Liitetään romppu...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Tunnistetaan... " +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Tapahtui virhe luettaessa palvelimelta" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Tallennettu nimio: %s \n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Etsitään levyltä hakemistotiedostoja...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Select ei toiminut" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Hakemistoja löytyi: Asennuspakettien %zu, lähdekoodipakettien %zu, " -"käännösten %zu ja allekirjoituksia löytyi %zu\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Yhteys aikakatkaistiin" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Löytyi nimiö: \"%s\"\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Odotetaan otsikoita" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Virheellinen otsikkorivi" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Tämä levy on: \n" -"\"%s\"\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopioidaan pakettiluetteloita..." +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Kirjoitetaan uusi lähdeluettelo\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP-palvelimen arvoaluetuki on rikki" -#: apt-pkg/algorithms.cc:265 -#, c-format -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." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Tuntematon päiväysmuoto" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " -"paketit." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Virheellinen otsikkotieto" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Yhteys ei toiminut" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Muodostetaan riippuvuussuhteiden puu" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Sisäinen virhe" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Mahdolliset versiot" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Käsitellään päivitystä ... " -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Luodaan riippuvuudet" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Valmis" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Luetaan tilatiedot" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Tilatiedoston %s avaaminen ei onnistunut" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Tilapäisen tilatiedoston %s kirjoittaminen ei onnistunut" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Korjataan riippuvuuksia..." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Pakettitiedostoa %s (2) ei voi jäsentää" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " ei onnistunut." -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Riippuvuuksien korjaus ei onnistu" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Päivitysjoukon minimointi ei onnistu" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Tehtävää %s ei löytynyt" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Valmis" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Pakettia %s ei löytynyt" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä." -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Pakettia %s ei löytynyt" +msgid "[installed,upgradable to: %s]" +msgstr " [Asennettu]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Asennettu]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Asennettu]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Asennettu]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "mutta %s on asennettu" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "mutta %s on merkitty asennettavaksi" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mutta ei ole asennuskelpoinen" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Huomautus, valitaan %s eikä %s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mutta on näennäispaketti" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mutta ei ole asennettu" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Virheellinen rivi korvautustiedostossa: %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mutta ei ole merkitty asennettavaksi" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " tai" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Seuraavat UUDET paketit asennetaan:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Seuraavat paketit POISTETAAN:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Nämä paketit on jätetty odottamaan:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Nämä paketit päivitetään:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Nämä paketit VARHENNETAAN:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Seuraavat pysytetyt paketit muutetaan:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" +msgid "%s (due to %s) " +msgstr "%s (syynä %s) " -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n" +"Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (Absoluuttinen dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu päivitetty, %lu uutta asennusta, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +msgid "%lu reinstalled, " +msgstr "%lu uudelleen asennettua, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Avataan %s" +msgid "%lu downgraded, " +msgstr "%lu varhennettua, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ei asennettu kokonaan tai poistettiin.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[K/e]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Asennetaan %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Tehdään asetukset: %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "K" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Poistetaan %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s poistettiin kokonaan" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Komento update ei käytä parametreja" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Suoritetaan jälkiasennusliipaisin %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Kansio \"%s\" puuttuu." +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Tiedostoa %s ei voitu avata" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Valmistellaan %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Puretaan %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Valmistaudutaan tekemään asetukset: %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s asennettu" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Noudettavaa arkistoa %st/%st.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Valmistaudutaan poistamaan %s" +msgid "Need to get %sB of archives.\n" +msgstr "Noudettavaa arkistoa %st.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s poistettu" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Valmistaudutaan poistamaan %s kokonaan" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s poistettiin kokonaan" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "You don't have enough free space in %s." +msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Tiedostoon %s kirjoittaminen ei onnistu" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Oli pulmia ja -y käytettiin ilman valitsinta --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +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." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Kyllä, tee kuten käsketään!" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Olet aikeissa tehdä mahdollisesti vahingollisen toimenpiteen.\n" +"Jatka kirjoittamalla \"%s\"\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Keskeytä." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Haluatko jatkaa?" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Joidenkin tiedostojen nouto ei onnistunut" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai " +"kokeile --fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu" + +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Puuttuvia paketteja ei voi korjata." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Asennus keskeytetään." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#: apt-private/private-install.cc:391 +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ää" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" +"Hmm, nähtävästi AutoRemover tuhosi jotain, mitä ei pitäisi tapahtua.\n" +"Tekisitkö vikailmoituksen apt:sta." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" + +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "" +"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " +"vaadittuja:" +msgstr[1] "" +"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " +"vaadittuja:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Luettelokansiota ei voitu lukita" +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] "" +"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " +"vaadittuja:" +msgstr[1] "" +"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " +"vaadittuja:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +#: apt-private/private-install.cc:519 +#, 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\"." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " +"ilmanpaketteja (tai ratkaise itse)." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: apt-private/private-install.cc:638 +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 "" +"Joitakin paketteja ei voitu asentaa. On ehkä vaadittu mahdottomia tai,\n" +"jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n" +"vielä luotu tai siirretty Incoming-kansiosta." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Rikkinäiset paketit" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Ehdotetut paketit:" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "Valintaa %s ei löydy" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Suositellut paketit:" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:825 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Lukkotiedostoa %s ei voitu avata" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:841 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:846 #, c-format -msgid "Could not get lock %s" -msgstr "Lukkoa %s ei saada" +msgid "%s is already the newest version.\n" +msgstr "%s on jo uusin versio.\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Valittiin versio %s (%s) paketille %s\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Valittiin versio %s (%s) paketille %s\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n" + +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Aliprosessi %s aiheutti suojausvirheen." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Aliprosessi %s aiheutti suojausvirheen." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Varoitus varmistamisesta on ohitettu.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Aliprosessi %s palautti virhekoodin (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Aliprosessi %s lopetti odottamatta" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Asennetaanko nämä paketit ilman todennusta?" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Pulmia tiedoston sulkemisessa" +msgid "Failed to parse %s. Edit again? " +msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Tiedostoa %s ei voitu avata" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Putkea %s ei voitu avata" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Pakkaajan käynnistäminen ei onnistunut" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "read, vielä %lu lukematta mutta tiedosto loppui" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Löytyi " -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Pulmia tiedoston sulkemisessa" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Nouda:" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Pulmia tehtäessä tiedostolle sync" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Siv " -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Pulmia tehtäessä tiedostolle unlink" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Vrhe " -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Pulmia tehtäessä tiedostolle sync" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Noudettiin %st ajassa %s (%st/s)\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Virhe!" +msgid " [Working]" +msgstr " [Työskennellään]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Valmis" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Taltion vaihto: Pistä levy \n" +"\"%s\"\n" +"asemaan \"%s\" ja paina Enter\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Valmis" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia" +msgid "Can not read mirror file '%s'" +msgstr "Tiedostoa %s ei voitu avata" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Putkea %s ei voitu avata" +msgid "No entry found in mirror file '%s'" +msgstr "Tiedostoa %s ei voitu avata" + +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "IPC-putken luominen aliprosessiin ei onnistunut" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Yhteys katkesi ennenaikaisesti" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Oletusasetus ei kelpaa!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Jatka painamalla Enter." -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Ei voitu tehdä %lu tavun mmap:ia" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Haluatko poistaa aiemmin noudettuja .deb-tiedostoja?" -#: apt-pkg/contrib/mmap.cc:146 +#: dselect/install:102 #, fuzzy -msgid "Unable to close mmap" -msgstr "Tiedoston %s avaaminen ei onnistunut" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Käynnistys ei onnistu" - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Ei voitu tehdä %lu tavun mmap:ia" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Tiedoston typistäminen ei onnistunut" +msgid "will be configured. This may result in duplicate errors" +msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan" -#: 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)" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"tai tyydyttämättömät riippuvuudet aiheuttavat virheitä. Tämä ei haittaa" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: dselect/install:105 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"vain tätä viestiä ennen tulleilla virheillä on merkitystä. Korjaa ne ja aja " +"[I]nstall uudestaan" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Yhdistetään saatavuustiedot" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Komento stat ei toiminut liitoskohdalle %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Kutsuttiin DropNode mutta tiedostoon on vielä linkki" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Komento stat ei toiminut rompulle" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Hajautusalkiota ei löytynyt!" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Tuntematon tyypin lyhenne: \"%c\"" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Korvautuksen varaus ei onnistunut" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Avataan asetustiedosto %s" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion: sisäinen virhe" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Yritetään kirjoittaa korvautuksen päälle, %s -> %s ja %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä" +msgid "Double add of diversion %s -> %s" +msgstr "Korvautuksen kaksoislisäys %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa" +msgid "Duplicate conf file %s/%s" +msgstr "Asetustiedoston kaksoiskappale %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla" +msgid "The path %s is too long" +msgstr "Polku %s on liian pitkä" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea" +msgid "Unpacking %s more than once" +msgstr "Purettiin %s useammin kuin kerran" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä" +msgid "The directory %s is diverted" +msgstr "Kansio %s on korvautunut" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\"" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Paketti yrittää kirjoittaa korvautuksen kohteeseen %s/%s" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Korvautuspolku on liian pitkä" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa" +msgid "Failed to stat %s" +msgstr "Tiedostolle %s ei toimi stat" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Asennus keskeytetään." +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:249 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Kansiota %s ollaan korvaamassa muulla kuin kansiolla" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Solmua ei löytynyt sen hajautuslokerosta" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Polku on liian pitkä" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "Komentorivin valitsin %s on tuntematon" +msgid "Overwrite package match with no version for %s" +msgstr "Päälle kirjoitettava paketti täsmää mutta paketille %s ei ole versiota" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Komentorivin valitsin %s ei ole totuusarvoinen" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Tiedosto %s/%s kirjoitetaan paketista %s tulleen päälle" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "Valitsin %s tarvitsee parametrin" +msgid "Unable to stat %s" +msgstr "Tiedostolle %s ei toimi stat" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =<arvo>." +msgid "Failed to write file %s" +msgstr "Tiedoston %s kirjoittaminen ei onnistunut" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Valitsin %s tarvitsee kokonaislukuparametrin, ei \"%s\"" +msgid "Failed to close file %s" +msgstr "Tiedoston %s sulkeminen ei onnistunut" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "Valitsin \"%s\" on liian pitkä" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Tämä ei ole kelvollinen DEB-arkisto, puuttuu tiedosto \"%s\"" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Arvo %s on tuntematon, yritä tosi tai epätosi." +msgid "Internal error, could not locate member %s" +msgstr "Tapahtui sisäinen virhe, tiedostoa %s ei löydy" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ohjaustiedosto ei jäsenny" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Arkiston tarkistussumma on virheellinen" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Tapahtui virhe luettaessa arkiston tiedoston otsikkoa" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Arkiston tiedoston otsikko on virheellinen" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Arkiston tiedoston otsikko on virheellinen" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkisto on pienempi kuin pitäisi" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Arkiston otsikoiden luku ei onnistunut" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Putkien luonti ei onnistunut" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "exec gzip ei onnistunut" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arkisto on turmeltunut" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-ohjelman laskema tarkistussumma ei täsmää, arkisto on turmeltunut" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Virheellinen toiminto %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Tuntematon TAR-otsikon tyyppi %u, tiedosto %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3505,7 +3509,7 @@ msgstr "Lukeminen ei onnistunut laskettaessa MD5:ttä" msgid "Problem unlinking %s" msgstr "Ilmeni pulmia poistettaessa tiedosto %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3558,6 +3562,10 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s ei kelpaa DEB-paketiksi." diff --git a/po/fr.po b/po/fr.po index 5d448334f..cbca53399 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2013-08-17 07:57+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -17,3336 +17,3340 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.5\n" -"Plural-Forms: Plural-Forms: nplurals=2; plural=n > 1;\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Le type de fichier d'index « %s » n'est pas accepté" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Le paquet %s de version %s contient une dépendance absente :\n" +msgid "Unable to read %s" +msgstr "Impossible de lire %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Nombre total de paquets : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Impossible d'accéder à %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Nombre total de structures de paquets : " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Impossible de localiser %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquets ordinaires : " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquets entièrement virtuels : " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Exécution de dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquets virtuels simples : " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Le système de paquet « %s » n'est pas supporté" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquets virtuels mixtes : " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Impossible de déterminer un type du système de paquets adéquat" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Manquants : " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i enregistrements écrits.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Nombre de versions distinctes : " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Nombre de descriptions distinctes : " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Nombre de dépendances : " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Nombre de relations version/fichier : " +#: 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" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Nombre de relations description/fichier : " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Somme de contrôle de hachage incohérente pour %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Nombre de relations « Provides » : " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Le pilote pour la méthode %s n'a pu être trouvé." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Nombre de motifs rationnels : " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espace occupé par les versions des dépendances : " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "La méthode %s n'a pas démarré correctement" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espace disque gaspillé : " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la " +"touche Entrée." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Total de l'espace attribué : " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Les listes de paquets ou le fichier « status » ne peuvent être analysés ou " +"lus." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Fichier %s désynchronisé." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Vous pouvez lancer « apt-get update » pour corriger ces problèmes." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Aucun paquet n'a été trouvé" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "La liste des sources ne peut être lue." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Vous devez fournir au moins un motif de recherche" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache des paquets vide" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Cette commande est obsolète. Veuillez utiliser « apt-mark showauto »." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Le fichier de cache des paquets est corrompu" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Le fichier de cache des paquets a une version incompatible" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Le fichier de cache des paquets est corrompu, il est trop petit." -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Impossible de trouver le paquet %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Cet APT ne supporte pas le système de version « %s »" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Fichiers du paquet :" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Le cache des paquets a été construit pour une architecture différente" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -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" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Dépend" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquets épinglés :" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pré-Dépend" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(non trouvé)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suggère" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installé : " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recommande" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidat : " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Est en conflit avec" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(aucun)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Remplace" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Épinglage de paquet : " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Rend obsolète" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Table de version :" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Casse" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: 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" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Améliore" -#: cmdline/apt-cache.cc:1749 -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 "" -"Usage : apt-cache [options] commande\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache est un outil de bas niveau pour manipuler les fichiers de cache\n" -"pour les binaires, et pour en obtenir des informations.\n" -"\n" -"Commandes :\n" -" gencaches - Construit le cache des sources et celui des binaires\n" -" showpkg - Affiche quelques informations générales pour un unique paquet\n" -" showsrc - Affiche les enregistrements des sources\n" -" stats - Affiche quelques statistiques de base\n" -" dump - Affiche la totalité des fichiers dans un formulaire succinct\n" -" dumpavail - Affiche une liste de fichiers disponibles sur la sortie " -"standard\n" -" unmet - Affiche les dépendances manquantes\n" -" search - Cherche une expression rationnelle dans la liste des paquets\n" -" show - Affiche la description du paquet\n" -" depends - Affiche toutes les dépendances d'un paquet\n" -" rdepends - Affiche les dépendances inverses d'un paquet\n" -" pkgnames - Liste le nom de tous les paquets du système\n" -" dotty - Génère un graphe des paquets pour GraphViz\n" -" xvcg - Génère un graphe des paquets pour xvcg\n" -" policy - Affiche l'épinglage (Pin) en vigueur\n" -"\n" -"Options :\n" -" -h Ce texte d'aide\n" -" -p=? Le cache des paquets\n" -" -s=? Le cache des sources\n" -" -q Enlève l'indicateur de progression\n" -" -i Affiche seulement les dépendances importantes pour la commande " -"« unmet »\n" -" -c=? Lit ce fichier de configuration\n" -" -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" -"Veuillez consulter les pages de manuel de apt-cache(8) et apt.conf(5) pour " -"plus\n" -"d'informations.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "important" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "nécessaire" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "" -"Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "optionnel" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "supplémentaire" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Impossible de monter « %s » sur « %s »" +msgid "Index file type '%s' is not supported" +msgstr "Le type de fichier d'index « %s » n'est pas accepté" -#: cmdline/apt-cdrom.cc:178 -#, fuzzy -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"Aucun CD n'a été détecté sur le point de montage par défaut.\n" -"Vous pouvez utiliser l'option --cdrom pour indiquer le point de montage du " -"CD-ROM. Voir la page de manuel d'apt-cdrom pour plus d'informations sur " -"l'auto-détection des CD et le point de montage." +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Erreur de compilation de l'expression rationnelle - %s" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" -"Veuillez répéter cette opération pour tous les disques de votre jeu de " -"cédéroms." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Le cache possède un système de version incompatible" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Les paramètres ne sont pas appariés" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Erreur apparue lors du traitement de %s (%s%d)" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Usage : apt-config [options] commande\n" -"\n" -"apt-config est un outil simple pour lire le fichier de configuration d'APT\n" -"\n" -"Commandes :\n" -" shell - Mode console\n" -" dump - Affiche la configuration\n" -"\n" -"Options :\n" -" -h Ce texte d'aide\n" -" -c=? Lit ce fichier de configuration\n" -" -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" +"Vous avez dépassé le nombre de noms de paquets que cette version d'APT est " +"capable de traiter." -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +"Vous avez dépassé le nombre de versions que cette version d'APT est capable " +"de traiter." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +"Vous avez dépassé le nombre de descriptions que cette version d'APT est " +"capable de traiter." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +"Vous avez dépassé le nombre de dépendances que cette version d'APT est " +"capable de traiter." -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Choix de « %s » comme paquet source à la place de « %s »\n" - -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "La version « %s » indisponible du paquet « %s » est ignorée" +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" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't find package %s" -msgstr "Impossible de trouver le paquet %s" +msgid "Couldn't stat source package list %s" +msgstr "Impossible de localiser la liste des paquets sources %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s passé en « installé manuellement ».\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lecture des listes de paquets" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Assemblage des fichiers listés dans les champs Provides" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s passé en « installé automatiquement ».\n" +msgid "Unable to write to %s" +msgstr "Impossible d'écrire sur %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" msgstr "" -"Cette commande est obsolète. Veuillez utiliser « apt-mark auto » et « apt-" -"mark manual »." +"Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "" -"Erreur interne, la tentative de résolution du problème a cassé certaines " -"parties" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Envoi du scénario au solveur" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Impossible de verrouiller le répertoire de téléchargement" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Envoi d'une requête au solveur" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Vous devez spécifier au moins un paquet source" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Préparation à la réception de la solution" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Impossible de trouver une source de paquet pour %s" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Échec du solveur externe sans message d'erreur adapté" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"Note : la maintenance du paquet de « %s » est réalisée dans le système de " -"suivi de versions « %s » à l'adresse :\n" -"%s\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Exécu tion du solveur externe" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "impossible de changer le nom, %s (%s -> %s)." + +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Somme de contrôle de hachage incohérente" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Taille incohérente" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "L'opération %s n'est pas valable" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Veuillez utiliser la commande :\n" -"bzr branch %s\n" -"pour récupérer les dernières mises à jour (éventuellement non encore " -"publiées) du paquet.\n" +"Impossible de trouver l'entrée « %s » attendue dans le fichier « Release » : " +" ligne non valable dans sources.list ou fichier corrompu" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Saut du téléchargement du fichier « %s », déjà téléchargé\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "" +"Impossible de trouver la comme de contrôle de « %s » dans le fichier Release" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Impossible de déterminer l'espace disponible sur %s" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Pas assez d'espace disponible sur %s" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Le fichier « Release » pour %s a expiré (plus valable depuis %s). Les mises " +"à jour depuis ce dépôt ne s'effectueront pas." -#. 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:891 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Nécessité de prendre %so/%so dans les sources.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" -#. 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:896 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Nécessité de prendre %so dans les sources.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Une erreur s'est produite lors du contrôle de la signature. Le dépôt n'est " +"pas mis à jour et les fichiers d'index précédents seront utilisés. Erreur de " +"GPG : %s : %s\n" -#: cmdline/apt-get.cc:902 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Fetch source %s\n" -msgstr "Récupération des sources %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Échec lors de la récupération de quelques archives." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Téléchargement achevé et dans le mode téléchargement uniquement" +msgid "GPG error: %s: %s" +msgstr "Erreur de GPG : %s : %s" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, 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" +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 "" +"Impossible de localiser un fichier du paquet %s. Cela signifie que vous " +"devrez corriger ce paquet vous-même (absence d'architecture)." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "La commande de décompactage « %s » a échoué.\n" +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:963 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » " +"pour le paquet %s." -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "La commande de construction « %s » a échoué.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Le bloc de fournisseur %s ne comporte pas d'empreinte" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Échec du processus fils" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Le répertoire %spartial pour les listes n'existe pas." -#: cmdline/apt-get.cc:1029 -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" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Le répertoire d'archive %spartial n'existe pas." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"Aucune information sur l'architecture n'est disponible pour %s. Veuillez " -"consulter la section à propos de APT::Architectures dans la page de manuel " -"apt.conf(5)." +msgid "Unable to lock directory %s" +msgstr "Impossible de verrouiller le répertoire %s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Impossible d'obtenir les dépendances de construction pour %s" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Téléchargement du fichier %li sur %li (%s restant)" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s n'a pas de dépendance de construction.\n" +msgid "Retrieving file %li of %li" +msgstr "Téléchargement du fichier %li sur %li" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Impossible de récupérer %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car %s n'est pas " -"autorisé avec les paquets « %s »." +"Le téléchargement de quelques fichiers d'index a échoué, ils ont été " +"ignorés, ou les anciens ont été utilisés à la place." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"Vous devez insérer quelques adresses « sources » dans votre sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s ne " -"peut être trouvé" +"La valeur « %s » n'est pas valable pour APT::Default-Release car cette " +"version ne fait pas partie des sources disponibles." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"Impossible de satisfaire la dépendance %s pour %s : le paquet installé %s " -"est trop récent" +"Enregistrement non valable dans le fichier de préférences %s, aucune entrée " +"« Package »." -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:444 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -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." +msgid "Did not understand pin type %s" +msgstr "Type d'épinglage %s inconnu" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/policy.cc:452 +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/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s " -"n'a pas de version disponible." +"Impossible d'effectuer la configuration immédiate de « %s ». Veuillez " +"consulter la page de manuel apt.conf(5) et notamment la section à propos de " +"APT::Immediate-Configure, pour plus d'informations. (%d)" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" +msgid "Could not configure '%s'. " +msgstr "Impossible de configurer « %s »." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/packagemanager.cc:583 #, c-format -msgid "Build-dependencies for %s could not be satisfied." +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 "" -"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." - -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Impossible d'activer les dépendances de construction" +"Cette installation va temporairement nécessiter l'enlèvement du paquet " +"essentiel %s en raison d'une boucle entre les champs Conflicts et Pre-" +"Depends. C'est souvent une mauvaise chose, mais si vous souhaitez réellement " +"le faire, activez l'option APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Journal des modifications pour %s (%s)" +msgid "Line %u too long in source list %s." +msgstr "La ligne %u du fichier des listes de sources %s est trop longue." -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Modules reconnus :" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Démontage du cédérom...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:586 +#, 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:599 +msgid "Waiting for disc...\n" +msgstr "Attente du disque...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montage du cédérom...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identification..." + +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Étiquette stockée : %s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Examen du disque à la recherche de fichiers d'index...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Usage : apt-get [options] commandes\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get est une interface simple en ligne de commande servant à\n" -"télécharger et à installer les paquets. Les commandes les plus\n" -"fréquemment employées sont update et install.\n" -"\n" -"Commandes :\n" -" update - Récupère les nouvelles listes de paquets\n" -" upgrade - Réalise une mise à jour\n" -" install - Installe de nouveaux paquets (pkg1 est libc6 et non libc6.deb)\n" -" remove - Supprime des paquets\n" -" autoremove - Supprime tous les paquets installés automatiquement\n" -" purge - Supprime des paquets et leurs fichiers de configuration\n" -" source - Télécharge les archives de sources\n" -" build-dep - Configure build-dependencies pour les paquets sources\n" -" dist-upgrade - Met à jour la distribution, reportez-vous à apt-get(8)\n" -" dselect-upgrade - Suit les sélections de dselect\n" -" clean - Supprime dans le cache local tous les fichiers téléchargés\n" -" autoclean - Supprime dans le cache local les fichiers inutiles\n" -" check - Vérifie qu'il n'y a pas de rupture de dépendances\n" -" changelog - Télécharge et affiche le journal des modifications\n" -" («  changelog ») du paquet indiqué\n" -" download - Télécharge le paquet binaire dans le répertoire courant\n" -"\n" -"Options :\n" -" -h Ce texte d'aide\n" -" -q Message de sortie enregistrable - aucun indicateur de progression\n" -" -qq Aucun message de sortie, exceptés les messages d'erreur\n" -" -d Simple téléchargement - n'installe pas ou ne décompacte pas les " -"archives\n" -" -s N'agit pas. Réalise uniquement une simulation de commande\n" -" -y Répond oui à toutes les questions et n'interroge pas l'utilisateur\n" -" -f Tente de poursuivre si le contrôle d'intégrité échoue\n" -" -m Tente de poursuivre si les archives ne sont pas localisables\n" -" -u Affiche une liste des paquets mis à jour\n" -" -b Construit la source du paquet après l'avoir récupérée\n" -" -V Affiche les numéros des versions de façon détaillée\n" -" -c=? Lit ce fichier de configuration\n" -" -o=? Place une option de configuration arbitraire, ex. -o dir::cache=/tmp\n" -"Reportez-vous aux pages de manuels d'apt-get(8), sources.list(5) et\n" -"apt.conf(5) pour plus d'informations et d'options.\n" -" Cet APT a les « Super Cow Powers »\n" +"%zu index de paquets trouvés, %zu index de sources, %zu index de traductions " +"et %zu signatures\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Vous devez spécifier au moins un paquet source" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian " +"ou bien l'architecture est-elle incorrecte." -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Étiquette « %s » trouvée\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Ce nom n'est pas valable, veuillez recommencer.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Ce disque s'appelle :\n" +"« %s »\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copie des listes de paquets..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Écriture de la nouvelle liste de sources\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Les entrées de listes de sources pour ce disque sont :\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Le paquet %s doit être réinstallé, mais il est impossible de trouver son " +"archive." -#: cmdline/apt-mark.cc:68 +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +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:1088 +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/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Construction de l'arbre des dépendances" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versions possibles" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Génération des dépendances" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lecture des informations d'état" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s ne peut pas être marqué car il n'est pas installé.\n" +msgid "Failed to open StateFile %s" +msgstr "Impossible d'ouvrir le fichier d'état %s" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s était déjà marqué comme installé manuellement.\n" +msgid "Failed to write temporary StateFile %s" +msgstr "Erreur d'écriture du fichier d'état temporaire %s" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s était déjà marqué comme installé automatiquement.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Impossible de traiter le fichier %s (1)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s était déjà marqué comme figé (« hold »).\n" +msgid "Unable to parse package file %s (2)" +msgstr "Impossible de traiter le fichier %s (2)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s était déjà marqué comme non figé.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "La version « %s » de « %s » est introuvable" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "A attendu %s mais il n'était pas présent" +msgid "Version '%s' for '%s' was not found" +msgstr "La version « %s » de « %s » n'a pu être trouvée" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "%s set on hold.\n" -msgstr "%s passé en figé (« hold »).\n" +msgid "Unable to locate package %s" +msgstr "Impossible de trouver le paquet %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Annulation de l'état figé pour %s.\n" +msgid "Couldn't find task '%s'" +msgstr "Impossible de trouver la tâche « %s »" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" msgstr "" -"Échec de l'exécution de dpkg. Possédez-vous les privilèges du " -"superutilisateur ?" +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: cmdline/apt-mark.cc:392 -#, fuzzy -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" msgstr "" -"Utilisation: apt-mark [options] {auto|manual} paquet 1 [paquet2 ...]\n" -"\n" -"apt-mark est une interface simple, en ligne de commande, qui permet\n" -"de marquer des paquets comme installés manuellement ou automatiquement.\n" -"Cette commande permet également d'afficher cet état.\n" -"\n" -"Commandes :\n" -" auto - marquer les paquets indiqués comme installés automatiquement\n" -" manual - marquer les paquets indiqués comme installés manuellement\n" -"\n" -"Options:\n" -" -h Affiche la présente aide.\n" -" -q Affichage journalisable - pas de barre de progression\n" -" -qq Pas d'affichage à part les erreurs\n" -" -s Mode simulation : aucune action effectuée.\n" -" Affiche simplement ce qui serait effectué.\n" -" -f lecture/écriture des états dans le fichier indiqué\n" -" -c=? lecture du fichier de configuration indiqué\n" -" -o=? utilisation d'une option de configuration,\n" -" p. ex. -o dir::cache=/tmp\n" -"Veuillez consulter les pages de manuel apt-mark(8) et apt.conf(5)\n" -"pour plus d'informations." +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/cacheset.cc:626 +#, 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" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Impossible de lire la base de données %s du cédérom" - -#: 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Veuillez utiliser apt-cdrom afin de faire reconnaître ce cédérom par votre " -"APT. apt-get update ne peut être employé pour ajouter de nouveaux cédéroms" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Mauvais cédérom" +"Impossible de choisir une version installée ou candidate du paquet « %s » " +"qui n'en n'a aucune" -#: methods/cdrom.cc:249 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Impossible de démonter le cédérom dans %s, il doit toujours être en cours " -"d'utilisation." +"Impossible de choisir une nouvelle version du paquet « %s » qui n'est qu'un " +"paquet virtuel" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disque non trouvé." +#: apt-pkg/cacheset.cc:655 +#, 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" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fichier non trouvé" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Impossible de choisir la version installée du paquet « %s » qui n'est pas " +"installé" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Impossible de statuer" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Impossible d'analyser le fichier Release %s" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Impossible de modifier l'heure " +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Pas de sections dans le fichier Release %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Liens invalides, les liens locaux ne doivent pas débuter avec //" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Pas d'entrée de hachage dans le fichier Release %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Connexion en cours" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrée « Valid-Until » non valable dans le fichier Release %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Impossible de déterminer le nom de la machine distante" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrée « Date » non valable dans le fichier Release %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Impossible de déterminer le nom local" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de l'URI)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Le serveur a refusé notre connexion et a répondu : %s" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Ligne %lu mal formée dans la liste des sources %s (impossible d'analyser " +"[option])" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER incorrect, le serveur a répondu : %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Ligne %lu mal formée dans la liste de sources %s ([option] trop courte)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS incorrect, le serveur a répondu : %s" - -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -"Un serveur proxy a été spécifié, mais aucun script de connexion, Acquire::" -"ftp::ProxyLogin est vide." +"Ligne %lu mal formée dans la liste des sources %s ([%s] n'est pas une " +"affectation)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -"La commande « %s » du script de connexion a échoué, le serveur a répondu : %s" +"Ligne %lu mal formée dans la liste des sources %s ([%s] n'a pas de clé)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Échec de TYPE, le serveur a répondu : %s" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Ligne %lu mal formée dans la liste des sources %s ([%s] la clé %s n'a pas de " +"valeur)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Dépassement du délai de connexion" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Ligne %lu mal formée dans le fichier de source %s (URI)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Le serveur a fermé la connexion" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Ligne %lu mal formée dans la liste de sources %s (distribution)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Erreur de lecture" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de l'URI)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Une réponse a fait déborder le tampon." +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" +"Ligne %lu mal formée dans la liste des sources %s (distribution absolue)" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corruption du protocole" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Erreur d'écriture" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Ouverture de %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Impossible de créer un connecteur" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Ligne %u mal formée dans la liste des sources %s (type)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -"Impossible de se connecter sur le port de données, délai de connexion dépassé" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Échec" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Impossible de se connecter au port en mode passif." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "gettaddrinfo n'a pu obtenir un port d'écoute" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Impossible de se connecter à un port" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Impossible d'écouter sur le port" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Impossible de déterminer le nom du port" +"Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Impossible d'envoyer la commande PORT" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "" +"Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s" -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Famille d'adresses %u inconnue (AF_*)" +msgid "Installing %s" +msgstr "Installation de %s" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT a échoué, le serveur a répondu : %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Délai de connexion au port de données dépassé" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Impossible d'accepter une connexion" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problème de hachage du fichier" +msgid "Configuring %s" +msgstr "Configuration de %s" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Impossible de récupérer le fichier, le serveur a répondu « %s »" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Pas de réponse du port données dans les délais" +msgid "Removing %s" +msgstr "Suppression de %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Le transfert de données a échoué, le serveur a répondu « %s »" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Requête" - -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Impossible d'invoquer " +msgid "Completely removing %s" +msgstr "Suppression complète de %s" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Connexion à %s (%s)" +msgid "Noting disappearance of %s" +msgstr "Disparition de %s constatée" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP : %s %s]" +msgid "Running post-installation trigger %s" +msgstr "Exécution des actions différées (« trigger ») de %s" -#: methods/connect.cc:94 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, 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)" +msgid "Directory '%s' missing" +msgstr "Répertoire %s inexistant" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Impossible d'initialiser la connexion à %s: %s (%s)." +msgid "Could not open file '%s'" +msgstr "Impossible d'ouvrir le fichier « %s »" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:989 #, 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é" +msgid "Preparing %s" +msgstr "Préparation de %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Connexion à %s: %s (%s) impossible." +msgid "Unpacking %s" +msgstr "Décompression de %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Connecting to %s" -msgstr "Connexion à %s" +msgid "Preparing to configure %s" +msgstr "Préparation de la configuration de %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not resolve '%s'" -msgstr "Ne parvient pas à résoudre « %s »" +msgid "Installed %s" +msgstr "%s installé" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Erreur temporaire de résolution de « %s »" +msgid "Preparing for removal of %s" +msgstr "Préparation de la suppression de %s" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Erreur système lors de la résolution de « %s:%s »" +msgid "Removed %s" +msgstr "%s supprimé" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1009 #, 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)" +msgid "Preparing to completely remove %s" +msgstr "Préparation de la suppression complète de %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Impossible de se connecter à %s:%s :" +msgid "Completely removed %s" +msgstr "%s complètement supprimé" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -"Erreur interne : signature correcte, mais il est impossible de déterminer " -"l'empreinte de la clé." -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Au moins une signature non valable a été rencontrée." +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Impossible d'écrire sur %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -"Impossible d'exécuter « gpgv » pour contrôler la signature (veuillez " -"vérifier si gpgv est installé)." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -"Le fichier signé en clair n'est pas valable, ce qui a été reçu est « %s ». " -"Peut-être le réseau nécessite-t-il une authentification." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Erreur inconnue à l'exécution de gpgv" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "A attendu %s mais il n'était pas présent" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Les signatures suivantes ne sont pas valables :\n" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "L'opération a été interrompue avant de se terminer" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1631 +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:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problème de dépendances : laissé non configuré" + +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Les signatures suivantes n'ont pas pu être vérifiées car la clé publique " -"n'est pas disponible :\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Les fichiers vides ne peuvent être des archives valables" +"Aucun rapport « apport » n'a été créé car le message d'erreur indique une " +"erreur consécutive à un échec précédent." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Erreur d'écriture sur le fichier" +#: apt-pkg/deb/dpkgpm.cc:1644 +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é" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Aucun « apport » n'a été créé car une erreur de dépassement de capacité " +"mémoire a été signalée" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Erreur de lecture du serveur" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Erreur d'écriture sur un fichier" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Sélection défaillante" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Aucun rapport « apport » n'a été créé car un disque plein a été signalé" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Délai de connexion dépassé" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Aucun « apport » n'a été créé car une erreur d'entrée/sortie de dpkg a été " +"signalée" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Erreur d'écriture du fichier de sortie" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Impossible de verrouiller le répertoire d'administration (%s). Il est " +"possible qu'un autre processus l'utilise." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Attente des fichiers d'en-tête" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Impossible de verrouiller le répertoire d'administration (%s). Avez-vous les " +"privilèges du superutilisateur ?" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Mauvaise ligne d'en-tête" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg a été interrompu. Il est nécessaire d'utiliser « %s » pour corriger le " +"problème." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Le serveur http a envoyé une réponse dont l'en-tête est invalide" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non verrouillé" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Le serveur http a envoyé un en-tête « Content-Length » invalide" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Le serveur http a envoyé un en-tête « Content-Range » invalide" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ce serveur http possède un support des limites non-valide" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Format de date inconnu" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Mauvais en-tête de donnée" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "La sélection %s n'a pu être trouvée" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Échec de la connexion" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Verrou non utilisé pour le fichier %s en lecture seule" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Erreur interne" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Impossible d'ouvrir le fichier verrou %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calcul de la mise à jour... " +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Verrou non utilisé pour le fichier %s se situant sur une partition nfs" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Erreur interne, AllUpgrade a cassé le boulot !" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Impossible d'obtenir le verrou %s" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Fait" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" +"La liste des fichiers ne peut pas être créée car « %s » n'est pas un " +"répertoire" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" +"« %s » dans le répertoire « %s » a été ignoré car ce n'est pas un fichier " +"ordinaire" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" +"« %s » dans le répertoire « %s » a été ignoré car il n'utilise pas " +"d'extension" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"« %s » dans le répertoire « %s » a été ignoré car il utilise une extension " +"non valable" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Correction des dépendances..." +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Le sous-processus %s a commis une violation d'accès mémoire" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " a échoué." +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Le sous-processus %s a reçu le signal %u" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Impossible de corriger les dépendances" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Le sous-processus %s a renvoyé un code d'erreur (%u)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Impossible de minimiser le nombre des paquets mis à jour" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Le sous-processus %s s'est arrêté prématurément" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fait" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Erreur d'écriture" -#: apt-private/private-cachefile.cc:108 -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." +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problème de fermeture du fichier gzip %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Impossible d'ouvrir le fichier %s" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Impossible d'ouvrir le descripteur de fichier %d" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installé]" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Impossible de créer un sous-processus IPC" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installé]" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Impossible d'exécuter la compression " -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Erreur de lecture" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installé]" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "lu(s), %llu restant à lire, mais rien n'est disponible" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installé]" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "écrit(s), %llu restant à écrire, mais l'écriture est impossible" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Problem closing the file %s" +msgstr "Problème de fermeture du fichier %s" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problème de renommage du fichier %s en %s" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Les paquets suivants contiennent des dépendances non satisfaites :" - -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "but %s is installed" -msgstr "mais %s est installé" +msgid "Problem unlinking the file %s" +msgstr "Problème de suppression du lien %s" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problème de synchronisation du fichier" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is to be installed" -msgstr "mais %s devra être installé" +msgid "%c%s... Error!" +msgstr "%c%s... Erreur !" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "mais il n'est pas installable" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Fait" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "mais c'est un paquet virtuel" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "mais il n'est pas installé" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "mais ne sera pas installé" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Impossible de mapper un fichier vide en mémoire" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " ou" +#: 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-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Les NOUVEAUX paquets suivants seront installés :" +#: 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-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Les paquets suivants seront ENLEVÉS :" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Impossible de fermer la « mmap »" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Les paquets suivants ont été conservés :" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Impossible de synchroniser la « mmap »" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Les paquets suivants seront mis à jour :" +#: 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-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Échec de la troncature du fichier" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Les paquets retenus suivants seront changés :" +#: 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 "" +"La zone dynamique d'allocation mémoire (« Dynamic MMap ») n'a plus de place. " +"Vous devriez augmenter la taille de APT::Cache-Start, dont la valeur " +"actuelle est de %lu (voir « man 5 apt.conf »)." -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (en raison de %s) " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Impossible d'augmenter la taille de la « mmap » car la limite de %lu octets " +"est déjà atteinte." -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"ATTENTION : Les paquets essentiels suivants vont être enlevés.\n" -"Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n" -"que vous êtes en train de faire." +"Impossible d'augmenter la taille de la « mmap » car l'augmentation " +"automatique a été désactivée par une option utilisateur." -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu mis à jour, %lu nouvellement installés, " +msgid "Unable to stat the mount point %s" +msgstr "Impossible de localiser le point de montage %s" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu réinstallés, " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Impossible d'accéder au cédérom." -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu downgraded, " -msgstr "%lu remis à une version inférieure, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Type d'abréviation non reconnue : « %c »" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu à enlever et %lu non mis à jour.\n" +msgid "Opening configuration file %s" +msgstr "Ouverture du fichier de configuration %s" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu partiellement installés ou enlevés.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[O/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[o/N]" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Erreur syntaxique %s:%u : le bloc commence sans aucun nom." -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "O" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Erreur syntaxique %s:%u : balise mal formée" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Erreur syntaxique %s:%u : valeur suivie de choses illicites" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "Regex compilation error - %s" -msgstr "Erreur de compilation de l'expression rationnelle - %s" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Erreur syntaxique %s:%u : ces directives ne peuvent être appliquées qu'au " +"niveau le plus haut" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "La commande de mise à jour ne prend pas de paramètre" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Erreur syntaxique %s:%u: trop de niveaux d'imbrication d'includes" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Included from here" +msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Erreur syntaxique %s:%u : directive « %s » non tolérée" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" +"Erreur de syntaxe %s:%u : la directive « clear » a besoin d'un arbre " +"d'options comme paramètre" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés." - -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "" -"Les paquets doivent être enlevés mais la désinstallation est désactivée." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Erreur interne. Le tri a été interrompu." +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Pas de porte-clés installé dans %s." -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Étrangement, les tailles ne correspondent pas. Veuillez le signaler par " -"courriel à apt@packages.debian.org." +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "L'option « %c » de la ligne de commande [d'origine %s] est inconnue." -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Il est nécessaire de prendre %so/%so dans les archives.\n" +msgid "Command line option %s is not understood" +msgstr "L'option %s de la ligne de commande n'est pas reconnue" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Il est nécessaire de prendre %so dans les archives.\n" +msgid "Command line option %s is not boolean" +msgstr "L'option %s de la ligne de commande n'est pas une valeur booléenne" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Après cette opération, %so d'espace disque supplémentaires seront utilisés.\n" +msgid "Option %s requires an argument." +msgstr "L'option %s nécessite un paramètre." -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -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" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Option %s : l'item configuration doit être spécifiée avec un =<val>." -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Pas assez d'espace disponible sur %s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "L'option %s prend un nombre entier en paramètre, et non « %s »" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Il y a des problèmes et -y a été employé sans --force-yes" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "L'option « %s » est trop longue" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -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 " -"triviale." +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "La signification %s n'est pas comprise, veuillez essayer vrai ou faux." -# 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. -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Oui, faites ce que je vous dis !" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "L'opération %s n'est pas valable" -#: apt-private/private-install.cc:221 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Vous êtes sur le point de faire quelque chose de potentiellement dangereux\n" -"Pour continuer, tapez la phrase « %s »\n" -" ?]" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Le paquet %s de version %s contient une dépendance absente :\n" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Annulation." +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Nombre total de paquets : " -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Souhaitez-vous continuer ?" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Nombre total de structures de paquets : " -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Certains fichiers n'ont pu être téléchargés." +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquets ordinaires : " -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-" -"get update ou essayer avec --fix-missing ?" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquets entièrement virtuels : " -#: apt-private/private-install.cc:323 -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-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquets virtuels simples : " -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Impossible de corriger le fait que les paquets manquent." +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquets virtuels mixtes : " -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Annulation de l'installation." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Manquants : " -#: apt-private/private-install.cc:365 -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] "" -"Le paquet suivant a disparu du système car tous ses fichiers\n" -"ont été remplacés par d'autres paquets :" -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-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Nombre de versions distinctes : " -#: apt-private/private-install.cc:369 -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-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Nombre de descriptions distinctes : " -#: apt-private/private-install.cc:390 -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-cache.cc:329 +msgid "Total dependencies: " +msgstr "Nombre de dépendances : " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Il semble que l'outil de suppression automatique (« Autoremover ») ait\n" -"supprimé quelque chose, ce qui est inattendu. Veuillez envoyer un\n" -"rapport de bogue pour le paquet « apt »." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Nombre de relations version/fichier : " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "L'information suivante devrait vous aider à résoudre la situation : " +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Nombre de relations description/fichier : " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "" -"Erreur interne, l'outil de suppression automatique a cassé quelque chose." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Nombre de relations « Provides » : " -#: apt-private/private-install.cc:512 -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] "" -"Le paquet suivant a été installé automatiquement et n'est plus nécessaire :" -msgstr[1] "" -"Les paquets suivants ont été installés automatiquement et ne sont plus " -"nécessaires :" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Nombre de motifs rationnels : " -#: apt-private/private-install.cc:516 -#, 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 paquet a été installé automatiquement et n'est plus nécessaire.\n" -msgstr[1] "" -"%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espace occupé par les versions des dépendances : " -#: apt-private/private-install.cc:518 -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-cache.cc:367 +msgid "Total slack space: " +msgstr "Espace disque gaspillé : " -#: apt-private/private-install.cc:612 -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-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Total de l'espace attribué : " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" -"(ou indiquez une solution)." +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Fichier %s désynchronisé." -#: apt-private/private-install.cc:628 -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 "" -"Certains paquets ne peuvent être installés. Ceci peut signifier\n" -"que vous avez demandé l'impossible, ou bien, si vous utilisez\n" -"la distribution unstable, que certains paquets n'ont pas encore\n" -"été créés ou ne sont pas sortis d'Incoming." +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Aucun paquet n'a été trouvé" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Paquets défectueux" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Vous devez fournir au moins un motif de recherche" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Les paquets supplémentaires suivants seront installés : " +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Cette commande est obsolète. Veuillez utiliser « apt-mark showauto »." -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Paquets suggérés :" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Fichiers du paquet :" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Paquets recommandés :" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +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" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Passe %s, il est déjà installé et la mise à jour n'est pas prévue.\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquets épinglés :" -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"%s ignoré : il n'est pas installé et seules des mises à jour ont été " -"demandées.\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(non trouvé)" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"La réinstallation de %s est impossible, il ne peut pas être téléchargé.\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installé : " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s est déjà la plus récente version disponible.\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidat : " -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Version choisie « %s » (%s) pour « %s »\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(aucun)" -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Version choisie « %s » (%s) pour « %s » à cause de « %s »\n" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Épinglage de paquet : " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Le paquet « %s » n'est pas installé, et ne peut donc être supprimé. Peut-" -"être vouliez-vous écrire « %s » ?\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Table de version :" -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Le paquet « %s » n'est pas installé, et ne peut donc être supprimé\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pour %s compilé sur %s %s\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 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!" +"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 "" -"NOTE: Ceci n'est qu'une simulation !\n" -" apt-get a besoin des privilèges du superutilisateur\n" -" pour pouvoir vraiment fonctionner.\n" -" Veuillez aussi noter que le verrouillage est désactivé,\n" -" et la situation n'est donc pas forcément représentative\n" -" de la réalité !" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés." - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avertissement d'authentification ignoré.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Certains paquets n'ont pas pu être authentifiés" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Faut-il installer ces paquets sans vérification ?" - -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Impossible de récupérer %s %s\n" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Impossible de changer le nom %s en %s" +"Usage : apt-cache [options] commande\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache est un outil de bas niveau pour manipuler les fichiers de cache\n" +"pour les binaires, et pour en obtenir des informations.\n" +"\n" +"Commandes :\n" +" gencaches - Construit le cache des sources et celui des binaires\n" +" showpkg - Affiche quelques informations générales pour un unique paquet\n" +" showsrc - Affiche les enregistrements des sources\n" +" stats - Affiche quelques statistiques de base\n" +" dump - Affiche la totalité des fichiers dans un formulaire succinct\n" +" dumpavail - Affiche une liste de fichiers disponibles sur la sortie " +"standard\n" +" unmet - Affiche les dépendances manquantes\n" +" search - Cherche une expression rationnelle dans la liste des paquets\n" +" show - Affiche la description du paquet\n" +" depends - Affiche toutes les dépendances d'un paquet\n" +" rdepends - Affiche les dépendances inverses d'un paquet\n" +" pkgnames - Liste le nom de tous les paquets du système\n" +" dotty - Génère un graphe des paquets pour GraphViz\n" +" xvcg - Génère un graphe des paquets pour xvcg\n" +" policy - Affiche l'épinglage (Pin) en vigueur\n" +"\n" +"Options :\n" +" -h Ce texte d'aide\n" +" -p=? Le cache des paquets\n" +" -s=? Le cache des sources\n" +" -q Enlève l'indicateur de progression\n" +" -i Affiche seulement les dépendances importantes pour la commande " +"« unmet »\n" +" -c=? Lit ce fichier de configuration\n" +" -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" +"Veuillez consulter les pages de manuel de apt-cache(8) et apt.conf(5) pour " +"plus\n" +"d'informations.\n" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" +"Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" msgstr "" +"Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Atteint " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Réception de : " - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%so réceptionnés en %s (%so/s)\n" - -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid " [Working]" -msgstr " [En cours]" +msgid "Failed to mount '%s' to '%s'" +msgstr "Impossible de monter « %s » sur « %s »" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-cdrom.cc:178 +#, fuzzy msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Changement de support : veuillez insérer le disque\n" -"« %s »\n" -"dans le lecteur « %s » et appuyez sur la touche Entrée\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Impossible de lire %s" - -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Impossible d'accéder à %s" - -#. 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 "Aucun fichier miroir « %s » n'a été trouvé" - -#. 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 "Impossible de lire le fichier de miroir « %s »." - -#: methods/mirror.cc:315 -#, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Pas d'entrée trouvée dans le fichier de miroir « %s »." - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Miroir : %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Impossible de créer le tube IPC sur le sous-processus" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Connexion fermée prématurément" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Mauvais paramètre par défaut !" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Veuillez appuyer sur Entrée pour continuer." +"Aucun CD n'a été détecté sur le point de montage par défaut.\n" +"Vous pouvez utiliser l'option --cdrom pour indiquer le point de montage du " +"CD-ROM. Voir la page de manuel d'apt-cdrom pour plus d'informations sur " +"l'auto-détection des CD et le point de montage." -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Voulez-vous effacer les fichiers .deb précédemment téléchargés ?" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "" +"Veuillez répéter cette opération pour tous les disques de votre jeu de " +"cédéroms." -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Quelques erreurs sont apparues lors du décompactage. Les paquets qui" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Les paramètres ne sont pas appariés" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" +#: cmdline/apt-config.cc:89 +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 "" -"ont été installés vont être configurés . Il peut en résulter d'autres erreurs" +"Usage : apt-config [options] commande\n" +"\n" +"apt-config est un outil simple pour lire le fichier de configuration d'APT\n" +"\n" +"Commandes :\n" +" shell - Mode console\n" +" dump - Affiche la configuration\n" +"\n" +"Options :\n" +" -h Ce texte d'aide\n" +" -c=? Lit ce fichier de configuration\n" +" -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" msgstr "" -"ou des erreurs provoquées par les dépendances manquantes. C'est bénin, " -"seules les erreurs." +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" msgstr "" -"précédant ce message sont importantes. Veuillez les corriger et\n" -"démarrer l'[I]nstallation une nouvelle fois." - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Fusion des informations disponibles" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode appelé sur un nœud toujours lié" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Impossible de situer l'élément haché !" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Échec lors de l'allocation de la déviation" +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Erreur interne dans AddDiversion" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "" +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Essaye d'écraser une déviation, %s -> %s et %s/%s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Choix de « %s » comme paquet source à la place de « %s »\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Addition double d'une déviation %s -> %s" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "La version « %s » indisponible du paquet « %s » est ignorée" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Fichier de configuration en double %s/%s" +msgid "Couldn't find package %s" +msgstr "Impossible de trouver le paquet %s" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "The path %s is too long" -msgstr "Le chemin %s est trop long" +msgid "%s set to manually installed.\n" +msgstr "%s passé en « installé manuellement ».\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Unpacking %s more than once" -msgstr "Veuillez décompresser %s plus d'une fois" +msgid "%s set to automatically installed.\n" +msgstr "%s passé en « installé automatiquement ».\n" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Le répertoire %s est détourné" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Cette commande est obsolète. Veuillez utiliser « apt-mark auto » et « apt-" +"mark manual »." -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "" +"Erreur interne, la tentative de résolution du problème a cassé certaines " +"parties" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Le chemin de déviation est trop long" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Impossible de verrouiller le répertoire de téléchargement" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "Impossible de statuer %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Vous devez spécifier au moins un paquet source" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Impossible de changer le nom %s en %s" +msgid "Unable to find a source package for %s" +msgstr "Impossible de trouver une source de paquet pour %s" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:786 #, 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:289 -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:293 -msgid "The path is too long" -msgstr "Le chemin est trop long" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"Note : la maintenance du paquet de « %s » est réalisée dans le système de " +"suivi de versions « %s » à l'adresse :\n" +"%s\n" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Écrase la correspondance de paquet sans version pour %s " +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Veuillez utiliser la commande :\n" +"bzr branch %s\n" +"pour récupérer les dernières mises à jour (éventuellement non encore " +"publiées) du paquet.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:843 #, 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" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Saut du téléchargement du fichier « %s », déjà téléchargé\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Unable to stat %s" -msgstr "Impossible de statuer pour %s." +msgid "Couldn't determine free space in %s" +msgstr "Impossible de déterminer l'espace disponible sur %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Failed to write file %s" -msgstr "Erreur d'écriture du fichier %s" +msgid "You don't have enough free space in %s" +msgstr "Pas assez d'espace disponible sur %s" -#: apt-inst/dirstream.cc:105 +#. 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:891 #, c-format -msgid "Failed to close file %s" -msgstr "Échec de clôture du fichier %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Nécessité de prendre %so/%so dans les sources.\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#. 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:896 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Ce n'est pas une archive DEB valide, partie « %s » manquante" +msgid "Need to get %sB of source archives.\n" +msgstr "Nécessité de prendre %so dans les sources.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Erreur interne, ne peut localiser la partie %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Fichier de contrôle non traitable" +msgid "Fetch source %s\n" +msgstr "Récupération des sources %s\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Signature d'archive invalide" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Échec lors de la récupération de quelques archives." -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Erreur de lecture de l'en-tête du membre d'archive" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Téléchargement achevé et dans le mode téléchargement uniquement" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Invalid archive member header %s" -msgstr "En-tête du membre d'archive %s non valable" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "En-tête du membre d'archive non-valable" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "L'archive est trop petite" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Échec de la lecture des en-têtes d'archive" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Échec de création de tubes" - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Impossible d'exécuter gzip " - -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archive corrompue" +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" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Échec dans la somme de contrôle de tar, l'archive est corrompue" +#: cmdline/apt-get.cc:962 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "La commande de décompactage « %s » a échoué.\n" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Type d'en-tête %u inconnu pour TAR, partie %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Unable to stat %s." -msgstr "Impossible de localiser %s." +msgid "Build command '%s' failed.\n" +msgstr "La commande de construction « %s » a échoué.\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Échec du processus fils" + +#: cmdline/apt-get.cc:1029 +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" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Exécution de dpkg" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Aucune information sur l'architecture n'est disponible pour %s. Veuillez " +"consulter la section à propos de APT::Architectures dans la page de manuel " +"apt.conf(5)." -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Le système de paquet « %s » n'est pas supporté" +msgid "Unable to get build-dependency information for %s" +msgstr "Impossible d'obtenir les dépendances de construction pour %s" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Impossible de déterminer un type du système de paquets adéquat" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s n'a pas de dépendance de construction.\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Wrote %i records.\n" -msgstr "%i enregistrements écrits.\n" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"La dépendance %s vis-à-vis de %s ne peut être satisfaite car %s n'est pas " +"autorisé avec les paquets « %s »." -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s ne " +"peut être trouvé" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n" +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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"%i enregistrements écrits avec %i fichiers manquants et %i qui ne " -"correspondent pas\n" +"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." -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Impossible de trouver l'enregistrement d'authentification pour %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s " +"n'a pas de version disponible." -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Somme de contrôle de hachage incohérente pour %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "The method driver %s could not be found." -msgstr "Le pilote pour la méthode %s n'a pu être trouvé." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "" +"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Impossible d'activer les dépendances de construction" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Method %s did not start correctly" -msgstr "La méthode %s n'a pas démarré correctement" +msgid "Changelog for %s (%s)" +msgstr "Journal des modifications pour %s (%s)" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Modules reconnus :" + +#: cmdline/apt-get.cc:1632 +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 "" -"Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la " -"touche Entrée." +"Usage : apt-get [options] commandes\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get est une interface simple en ligne de commande servant à\n" +"télécharger et à installer les paquets. Les commandes les plus\n" +"fréquemment employées sont update et install.\n" +"\n" +"Commandes :\n" +" update - Récupère les nouvelles listes de paquets\n" +" upgrade - Réalise une mise à jour\n" +" install - Installe de nouveaux paquets (pkg1 est libc6 et non libc6.deb)\n" +" remove - Supprime des paquets\n" +" autoremove - Supprime tous les paquets installés automatiquement\n" +" purge - Supprime des paquets et leurs fichiers de configuration\n" +" source - Télécharge les archives de sources\n" +" build-dep - Configure build-dependencies pour les paquets sources\n" +" dist-upgrade - Met à jour la distribution, reportez-vous à apt-get(8)\n" +" dselect-upgrade - Suit les sélections de dselect\n" +" clean - Supprime dans le cache local tous les fichiers téléchargés\n" +" autoclean - Supprime dans le cache local les fichiers inutiles\n" +" check - Vérifie qu'il n'y a pas de rupture de dépendances\n" +" changelog - Télécharge et affiche le journal des modifications\n" +" («  changelog ») du paquet indiqué\n" +" download - Télécharge le paquet binaire dans le répertoire courant\n" +"\n" +"Options :\n" +" -h Ce texte d'aide\n" +" -q Message de sortie enregistrable - aucun indicateur de progression\n" +" -qq Aucun message de sortie, exceptés les messages d'erreur\n" +" -d Simple téléchargement - n'installe pas ou ne décompacte pas les " +"archives\n" +" -s N'agit pas. Réalise uniquement une simulation de commande\n" +" -y Répond oui à toutes les questions et n'interroge pas l'utilisateur\n" +" -f Tente de poursuivre si le contrôle d'intégrité échoue\n" +" -m Tente de poursuivre si les archives ne sont pas localisables\n" +" -u Affiche une liste des paquets mis à jour\n" +" -b Construit la source du paquet après l'avoir récupérée\n" +" -V Affiche les numéros des versions de façon détaillée\n" +" -c=? Lit ce fichier de configuration\n" +" -o=? Place une option de configuration arbitraire, ex. -o dir::cache=/tmp\n" +"Reportez-vous aux pages de manuels d'apt-get(8), sources.list(5) et\n" +"apt.conf(5) pour plus d'informations et d'options.\n" +" Cet APT a les « Super Cow Powers »\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Vous devez spécifier au moins un paquet source" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Les listes de paquets ou le fichier « status » ne peuvent être analysés ou " -"lus." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Vous pouvez lancer « apt-get update » pour corriger ces problèmes." +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "La liste des sources ne peut être lue." +#: cmdline/apt-mark.cc:68 +#, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s ne peut pas être marqué car il n'est pas installé.\n" + +#: cmdline/apt-mark.cc:74 +#, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s était déjà marqué comme installé manuellement.\n" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache des paquets vide" +#: cmdline/apt-mark.cc:76 +#, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s était déjà marqué comme installé automatiquement.\n" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Le fichier de cache des paquets est corrompu" +#: cmdline/apt-mark.cc:241 +#, c-format +msgid "%s was already set on hold.\n" +msgstr "%s était déjà marqué comme figé (« hold »).\n" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Le fichier de cache des paquets a une version incompatible" +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" +msgstr "%s était déjà marqué comme non figé.\n" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Le fichier de cache des paquets est corrompu, il est trop petit." +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, c-format +msgid "%s set on hold.\n" +msgstr "%s passé en figé (« hold »).\n" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Cet APT ne supporte pas le système de version « %s »" +msgid "Canceled hold on %s.\n" +msgstr "Annulation de l'état figé pour %s.\n" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Le cache des paquets a été construit pour une architecture différente" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" +"Échec de l'exécution de dpkg. Possédez-vous les privilèges du " +"superutilisateur ?" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dépend" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Utilisation: apt-mark [options] {auto|manual} paquet 1 [paquet2 ...]\n" +"\n" +"apt-mark est une interface simple, en ligne de commande, qui permet\n" +"de marquer des paquets comme installés manuellement ou automatiquement.\n" +"Cette commande permet également d'afficher cet état.\n" +"\n" +"Commandes :\n" +" auto - marquer les paquets indiqués comme installés automatiquement\n" +" manual - marquer les paquets indiqués comme installés manuellement\n" +"\n" +"Options:\n" +" -h Affiche la présente aide.\n" +" -q Affichage journalisable - pas de barre de progression\n" +" -qq Pas d'affichage à part les erreurs\n" +" -s Mode simulation : aucune action effectuée.\n" +" Affiche simplement ce qui serait effectué.\n" +" -f lecture/écriture des états dans le fichier indiqué\n" +" -c=? lecture du fichier de configuration indiqué\n" +" -o=? utilisation d'une option de configuration,\n" +" p. ex. -o dir::cache=/tmp\n" +"Veuillez consulter les pages de manuel apt-mark(8) et apt.conf(5)\n" +"pour plus d'informations." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pré-Dépend" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suggère" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Impossible de lire la base de données %s du cédérom" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recommande" +#: 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 "" +"Veuillez utiliser apt-cdrom afin de faire reconnaître ce cédérom par votre " +"APT. apt-get update ne peut être employé pour ajouter de nouveaux cédéroms" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Est en conflit avec" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Mauvais cédérom" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Remplace" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Impossible de démonter le cédérom dans %s, il doit toujours être en cours " +"d'utilisation." -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Rend obsolète" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disque non trouvé." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Casse" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fichier non trouvé" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Améliore" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Impossible de statuer" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "important" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Impossible de modifier l'heure " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "nécessaire" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Liens invalides, les liens locaux ne doivent pas débuter avec //" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Connexion en cours" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optionnel" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Impossible de déterminer le nom de la machine distante" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "supplémentaire" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Impossible de déterminer le nom local" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Le type de fichier d'index « %s » n'est pas accepté" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Le cache possède un système de version incompatible" +msgid "The server refused the connection and said: %s" +msgstr "Le serveur a refusé notre connexion et a répondu : %s" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:225 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Erreur apparue lors du traitement de %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -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:260 -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." +msgid "USER failed, server said: %s" +msgstr "USER incorrect, le serveur a répondu : %s" -#: apt-pkg/pkgcachegen.cc:263 -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." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS incorrect, le serveur a répondu : %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Vous avez dépassé le nombre de dépendances que cette version d'APT est " -"capable de traiter." +"Un serveur proxy a été spécifié, mais aucun script de connexion, Acquire::" +"ftp::ProxyLogin est vide." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, c-format -msgid "Package %s %s was not found while processing file dependencies" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -"Le paquet %s %s n'a pu être trouvé lors du traitement des dépendances des " -"fichiers" +"La commande « %s » du script de connexion a échoué, le serveur a répondu : %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Impossible de localiser la liste des paquets sources %s" +msgid "TYPE failed, server said: %s" +msgstr "Échec de TYPE, le serveur a répondu : %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lecture des listes de paquets" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Dépassement du délai de connexion" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Assemblage des fichiers listés dans les champs Provides" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Le serveur a fermé la connexion" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Impossible d'écrire sur %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Une réponse a fait déborder le tampon." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "" -"Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corruption du protocole" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Envoi du scénario au solveur" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Impossible de créer un connecteur" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Envoi d'une requête au solveur" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Impossible de se connecter sur le port de données, délai de connexion dépassé" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Préparation à la réception de la solution" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Échec" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "Échec du solveur externe sans message d'erreur adapté" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Impossible de se connecter au port en mode passif." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Exécu tion du solveur externe" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "gettaddrinfo n'a pu obtenir un port d'écoute" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "impossible de changer le nom, %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Impossible de se connecter à un port" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Somme de contrôle de hachage incohérente" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Impossible d'écouter sur le port" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Taille incohérente" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Impossible de déterminer le nom du port" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "L'opération %s n'est pas valable" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Impossible d'envoyer la commande PORT" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Impossible de trouver l'entrée « %s » attendue dans le fichier « Release » : " -" ligne non valable dans sources.list ou fichier corrompu" +msgid "Unknown address family %u (AF_*)" +msgstr "Famille d'adresses %u inconnue (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "" -"Impossible de trouver la comme de contrôle de « %s » dans le fichier Release" +msgid "EPRT failed, server said: %s" +msgstr "EPRT a échoué, le serveur a répondu : %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Délai de connexion au port de données dépassé" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Le fichier « Release » pour %s a expiré (plus valable depuis %s). Les mises " -"à jour depuis ce dépôt ne s'effectueront pas." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossible d'accepter une connexion" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problème de hachage du fichier" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Une erreur s'est produite lors du contrôle de la signature. Le dépôt n'est " -"pas mis à jour et les fichiers d'index précédents seront utilisés. Erreur de " -"GPG : %s : %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Impossible de récupérer le fichier, le serveur a répondu « %s »" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "Erreur de GPG : %s : %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Pas de réponse du port données dans les délais" -#: apt-pkg/acquire-item.cc:1867 +#: methods/ftp.cc:935 #, 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 "" -"Impossible de localiser un fichier du paquet %s. Cela signifie que vous " -"devrez corriger ce paquet vous-même (absence d'architecture)." +msgid "Data transfer failed, server said '%s'" +msgstr "Le transfert de données a échoué, le serveur a répondu « %s »" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Requête" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Impossible d'invoquer " -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:76 #, 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 »" +msgid "Connecting to %s (%s)" +msgstr "Connexion à %s (%s)" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:87 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » " -"pour le paquet %s." +msgid "[IP: %s %s]" +msgstr "[IP : %s %s]" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:94 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Le bloc de fournisseur %s ne comporte pas d'empreinte" +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)" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:100 #, c-format -msgid "List directory %spartial is missing." -msgstr "Le répertoire %spartial pour les listes n'existe pas." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Impossible d'initialiser la connexion à %s: %s (%s)." -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:108 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Le répertoire d'archive %spartial n'existe pas." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Connexion à %s: %s (%s) impossible, délai de connexion dépassé" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:126 #, c-format -msgid "Unable to lock directory %s" -msgstr "Impossible de verrouiller le répertoire %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Connexion à %s: %s (%s) impossible." -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Téléchargement du fichier %li sur %li (%s restant)" +msgid "Connecting to %s" +msgstr "Connexion à %s" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Téléchargement du fichier %li sur %li" +msgid "Could not resolve '%s'" +msgstr "Ne parvient pas à résoudre « %s »" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Le téléchargement de quelques fichiers d'index a échoué, ils ont été " -"ignorés, ou les anciens ont été utilisés à la place." +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Erreur temporaire de résolution de « %s »" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "" -"Vous devez insérer quelques adresses « sources » dans votre sources.list" +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s'" +msgstr "Erreur système lors de la résolution de « %s:%s »" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:211 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -"La valeur « %s » n'est pas valable pour APT::Default-Release car cette " -"version ne fait pas partie des sources disponibles." +"Quelque chose d'imprévisible est survenu lors de la détermination de « %s:" +"%s » (%i - %s)" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:258 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "Unable to connect to %s:%s:" +msgstr "Impossible de se connecter à %s:%s :" + +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Enregistrement non valable dans le fichier de préférences %s, aucune entrée " -"« Package »." +"Erreur interne : signature correcte, mais il est impossible de déterminer " +"l'empreinte de la clé." -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Type d'épinglage %s inconnu" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Au moins une signature non valable a été rencontrée." -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Aucune priorité (ou zéro) n'a été spécifiée pour l'épinglage" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Impossible d'exécuter « gpgv » pour contrôler la signature (veuillez " +"vérifier si gpgv est installé)." -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Impossible d'effectuer la configuration immédiate de « %s ». Veuillez " -"consulter la page de manuel apt.conf(5) et notamment la section à propos de " -"APT::Immediate-Configure, pour plus d'informations. (%d)" +"Le fichier signé en clair n'est pas valable, ce qui a été reçu est « %s ». " +"Peut-être le réseau nécessite-t-il une authentification." -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Impossible de configurer « %s »." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Erreur inconnue à l'exécution de gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Les signatures suivantes ne sont pas valables :\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Cette installation va temporairement nécessiter l'enlèvement du paquet " -"essentiel %s en raison d'une boucle entre les champs Conflicts et Pre-" -"Depends. C'est souvent une mauvaise chose, mais si vous souhaitez réellement " -"le faire, activez l'option APT::Force-LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, 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." +"Les signatures suivantes n'ont pas pu être vérifiées car la clé publique " +"n'est pas disponible :\n" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Démontage du cédérom...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Les fichiers vides ne peuvent être des archives valables" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Utilisation du point de montage %s pour le cédérom\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Erreur d'écriture sur le fichier" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Attente du disque...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montage du cédérom...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Erreur de lecture du serveur" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identification..." +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Erreur d'écriture sur un fichier" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Étiquette stockée : %s\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Sélection défaillante" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Examen du disque à la recherche de fichiers d'index...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Délai de connexion dépassé" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu index de paquets trouvés, %zu index de sources, %zu index de traductions " -"et %zu signatures\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Erreur d'écriture du fichier de sortie" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian " -"ou bien l'architecture est-elle incorrecte." +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Attente des fichiers d'en-tête" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Étiquette « %s » trouvée\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Mauvaise ligne d'en-tête" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Ce nom n'est pas valable, veuillez recommencer.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Le serveur http a envoyé une réponse dont l'en-tête est invalide" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Ce disque s'appelle :\n" -"« %s »\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Le serveur http a envoyé un en-tête « Content-Length » invalide" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copie des listes de paquets..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Le serveur http a envoyé un en-tête « Content-Range » invalide" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Écriture de la nouvelle liste de sources\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ce serveur http possède un support des limites non-valide" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Les entrées de listes de sources pour ce disque sont :\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Format de date inconnu" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Le paquet %s doit être réinstallé, mais il est impossible de trouver son " -"archive." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Mauvais en-tête de donnée" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -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." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Échec de la connexion" -#: apt-pkg/algorithms.cc:1088 -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 »." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Erreur interne" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Construction de l'arbre des dépendances" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calcul de la mise à jour... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versions possibles" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fait" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Génération des dépendances" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lecture des informations d'état" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Impossible d'ouvrir le fichier d'état %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Erreur d'écriture du fichier d'état temporaire %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Correction des dépendances..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Impossible de traiter le fichier %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " a échoué." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Impossible de traiter le fichier %s (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Impossible de corriger les dépendances" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "La version « %s » de « %s » est introuvable" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Impossible de minimiser le nombre des paquets mis à jour" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "La version « %s » de « %s » n'a pu être trouvée" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fait" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Impossible de trouver la tâche « %s »" +#: apt-private/private-cachefile.cc:108 +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." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +msgid "[installed,upgradable to: %s]" +msgstr " [Installé]" -#: apt-pkg/cacheset.cc:626 -#, 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-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installé]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Impossible de choisir une version installée ou candidate du paquet « %s » " -"qui n'en n'a aucune" -#: apt-pkg/cacheset.cc:647 -#, 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-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installé]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installé]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Impossible de choisir une version candidate du paquet « %s » qui n'en n'a pas" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Impossible de choisir la version installée du paquet « %s » qui n'est pas " -"installé" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Impossible d'analyser le fichier Release %s" +msgid "but %s is installed" +msgstr "mais %s est installé" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Pas de sections dans le fichier Release %s" +msgid "but %s is to be installed" +msgstr "mais %s devra être installé" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Pas d'entrée de hachage dans le fichier Release %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mais il n'est pas installable" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Entrée « Valid-Until » non valable dans le fichier Release %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mais c'est un paquet virtuel" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Entrée « Date » non valable dans le fichier Release %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mais il n'est pas installé" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de l'URI)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mais ne sera pas installé" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Ligne %lu mal formée dans la liste des sources %s (impossible d'analyser " -"[option])" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ou" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Ligne %lu mal formée dans la liste de sources %s ([option] trop courte)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Les paquets suivants contiennent des dépendances non satisfaites :" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Ligne %lu mal formée dans la liste des sources %s ([%s] n'est pas une " -"affectation)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Les NOUVEAUX paquets suivants seront installés :" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"Ligne %lu mal formée dans la liste des sources %s ([%s] n'a pas de clé)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Les paquets suivants seront ENLEVÉS :" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Les paquets suivants ont été conservés :" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Les paquets suivants seront mis à jour :" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Les paquets retenus suivants seront changés :" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%s (due to %s) " +msgstr "%s (en raison de %s) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Ligne %lu mal formée dans la liste des sources %s ([%s] la clé %s n'a pas de " -"valeur)" +"ATTENTION : Les paquets essentiels suivants vont être enlevés.\n" +"Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n" +"que vous êtes en train de faire." -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Ligne %lu mal formée dans le fichier de source %s (URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu mis à jour, %lu nouvellement installés, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Ligne %lu mal formée dans la liste de sources %s (distribution)" +msgid "%lu reinstalled, " +msgstr "%lu réinstallés, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de l'URI)" +msgid "%lu downgraded, " +msgstr "%lu remis à une version inférieure, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "" -"Ligne %lu mal formée dans la liste des sources %s (distribution absolue)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu à enlever et %lu non mis à jour.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu partiellement installés ou enlevés.\n" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Ouverture de %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[O/n]" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Ligne %u mal formée dans la liste des sources %s (type)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[o/N]" -#: apt-pkg/sourcelist.cc:375 +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "O" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "La commande de mise à jour ne prend pas de paramètre" + +#: apt-private/private-update.cc:90 #, c-format -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" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-show.cc:156 #, c-format -msgid "Installing %s" -msgstr "Installation de %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Configuration de %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Suppression de %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés." -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Suppression complète de %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Les paquets doivent être enlevés mais la désinstallation est désactivée." -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Disparition de %s constatée" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Erreur interne. Le tri a été interrompu." -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Exécution des actions différées (« trigger ») de %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Étrangement, les tailles ne correspondent pas. Veuillez le signaler par " +"courriel à apt@packages.debian.org." -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Directory '%s' missing" -msgstr "Répertoire %s inexistant" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Il est nécessaire de prendre %so/%so dans les archives.\n" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Could not open file '%s'" -msgstr "Impossible d'ouvrir le fichier « %s »" +msgid "Need to get %sB of archives.\n" +msgstr "Il est nécessaire de prendre %so dans les archives.\n" -#: apt-pkg/deb/dpkgpm.cc:989 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Preparing %s" -msgstr "Préparation de %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Après cette opération, %so d'espace disque supplémentaires seront utilisés.\n" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Unpacking %s" -msgstr "Décompression de %s" +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" -#: apt-pkg/deb/dpkgpm.cc:995 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing to configure %s" -msgstr "Préparation de la configuration de %s" +msgid "You don't have enough free space in %s." +msgstr "Pas assez d'espace disponible sur %s" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s installé" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Il y a des problèmes et -y a été employé sans --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Préparation de la suppression de %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +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 " +"triviale." -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s supprimé" +# 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. +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Oui, faites ce que je vous dis !" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: apt-private/private-install.cc:222 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Préparation de la suppression complète de %s" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Vous êtes sur le point de faire quelque chose de potentiellement dangereux\n" +"Pour continuer, tapez la phrase « %s »\n" +" ?]" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s complètement supprimé" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Annulation." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Souhaitez-vous continuer ?" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Impossible d'écrire sur %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Certains fichiers n'ont pu être téléchargés." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-" +"get update ou essayer avec --fix-missing ?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:324 +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." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "L'opération a été interrompue avant de se terminer" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Aucun rapport « apport » écrit car MaxReports a déjà été atteint" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Impossible de corriger le fait que les paquets manquent." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problème de dépendances : laissé non configuré" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Annulation de l'installation." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Aucun rapport « apport » n'a été créé car le message d'erreur indique une " -"erreur consécutive à un échec précédent." +"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] "" +"Le paquet suivant a disparu du système car tous ses fichiers\n" +"ont été remplacés par d'autres paquets :" +msgstr[1] "" +"Les paquets suivants ont disparu du système car tous leurs fichiers\n" +"ont été remplacés par d'autres paquets :" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -"Aucun rapport « apport » n'a été créé car un disque plein a été signalé" +"Note : cette opération volontaire (effectuée par dpkg) est automatique." -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Aucun « apport » n'a été créé car une erreur de dépassement de capacité " -"mémoire a été signalée" +"Aucune suppression n'est censée se produire : impossible de lancer " +"« Autoremover »" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Aucun rapport « apport » n'a été créé car un disque plein a été signalé" +"Il semble que l'outil de suppression automatique (« Autoremover ») ait\n" +"supprimé quelque chose, ce qui est inattendu. Veuillez envoyer un\n" +"rapport de bogue pour le paquet « apt »." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "L'information suivante devrait vous aider à résoudre la situation : " + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -"Aucun « apport » n'a été créé car une erreur d'entrée/sortie de dpkg a été " -"signalée" +"Erreur interne, l'outil de suppression automatique a cassé quelque chose." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Impossible de verrouiller le répertoire d'administration (%s). Il est " -"possible qu'un autre processus l'utilise." +"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] "" +"Le paquet suivant a été installé automatiquement et n'est plus nécessaire :" +msgstr[1] "" +"Les paquets suivants ont été installés automatiquement et ne sont plus " +"nécessaires :" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +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 paquet a été installé automatiquement et n'est plus nécessaire.\n" +msgstr[1] "" +"%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n" + +#: apt-private/private-install.cc:519 +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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Impossible de verrouiller le répertoire d'administration (%s). Avez-vous les " -"privilèges du superutilisateur ?" +"Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"dpkg a été interrompu. Il est nécessaire d'utiliser « %s » pour corriger le " -"problème." +"Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" +"(ou indiquez une solution)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non verrouillé" +#: apt-private/private-install.cc:638 +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 "" +"Certains paquets ne peuvent être installés. Ceci peut signifier\n" +"que vous avez demandé l'impossible, ou bien, si vous utilisez\n" +"la distribution unstable, que certains paquets n'ont pas encore\n" +"été créés ou ne sont pas sortis d'Incoming." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquets défectueux" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Les paquets supplémentaires suivants seront installés : " -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquets suggérés :" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquets recommandés :" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "La sélection %s n'a pu être trouvée" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Passe %s, il est déjà installé et la mise à jour n'est pas prévue.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Verrou non utilisé pour le fichier %s en lecture seule" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"%s ignoré : il n'est pas installé et seules des mises à jour ont été " +"demandées.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Impossible d'ouvrir le fichier verrou %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" +"La réinstallation de %s est impossible, il ne peut pas être téléchargé.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Verrou non utilisé pour le fichier %s se situant sur une partition nfs" +msgid "%s is already the newest version.\n" +msgstr "%s est déjà la plus récente version disponible.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Impossible d'obtenir le verrou %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Version choisie « %s » (%s) pour « %s »\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" -"La liste des fichiers ne peut pas être créée car « %s » n'est pas un " -"répertoire" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Version choisie « %s » (%s) pour « %s » à cause de « %s »\n" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"« %s » dans le répertoire « %s » a été ignoré car ce n'est pas un fichier " -"ordinaire" +"Le paquet « %s » n'est pas installé, et ne peut donc être supprimé. Peut-" +"être vouliez-vous écrire « %s » ?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"« %s » dans le répertoire « %s » a été ignoré car il n'utilise pas " -"d'extension" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Le paquet « %s » n'est pas installé, et ne peut donc être supprimé\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"« %s » dans le répertoire « %s » a été ignoré car il utilise une extension " -"non valable" +"NOTE: Ceci n'est qu'une simulation !\n" +" apt-get a besoin des privilèges du superutilisateur\n" +" pour pouvoir vraiment fonctionner.\n" +" Veuillez aussi noter que le verrouillage est désactivé,\n" +" et la situation n'est donc pas forcément représentative\n" +" de la réalité !" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Le sous-processus %s a commis une violation d'accès mémoire" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés." -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Le sous-processus %s a reçu le signal %u" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Avertissement d'authentification ignoré.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Le sous-processus %s a renvoyé un code d'erreur (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Certains paquets n'ont pas pu être authentifiés" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Le sous-processus %s s'est arrêté prématurément" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Faut-il installer ces paquets sans vérification ?" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problème de fermeture du fichier gzip %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Impossible de changer le nom %s en %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Impossible d'ouvrir le fichier %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Impossible d'ouvrir le descripteur de fichier %d" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Impossible de créer un sous-processus IPC" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atteint " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Impossible d'exécuter la compression " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Réception de : " -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "lu(s), %llu restant à lire, mais rien n'est disponible" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "écrit(s), %llu restant à écrire, mais l'écriture est impossible" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the file %s" -msgstr "Problème de fermeture du fichier %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%so réceptionnés en %s (%so/s)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problème de renommage du fichier %s en %s" +msgid " [Working]" +msgstr " [En cours]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Problème de suppression du lien %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problème de synchronisation du fichier" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Changement de support : veuillez insérer le disque\n" +"« %s »\n" +"dans le lecteur « %s » et appuyez sur la touche Entrée\n" -#: apt-pkg/contrib/progress.cc:148 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Erreur !" +msgid "No mirror file '%s' found " +msgstr "Aucun fichier miroir « %s » n'a été trouvé" -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fait" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "…" +msgid "Can not read mirror file '%s'" +msgstr "Impossible de lire le fichier de miroir « %s »." -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:315 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… %u%%" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Impossible de mapper un fichier vide en mémoire" +msgid "No entry found in mirror file '%s'" +msgstr "Pas d'entrée trouvée dans le fichier de miroir « %s »." -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Impossible de dupliquer le descripteur de fichier %i" +msgid "[Mirror: %s]" +msgstr "[Miroir : %s]" -#: 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" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Impossible de créer le tube IPC sur le sous-processus" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Impossible de fermer la « mmap »" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Connexion fermée prématurément" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Impossible de synchroniser la « mmap »" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Mauvais paramètre par défaut !" -#: 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" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Veuillez appuyer sur Entrée pour continuer." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Échec de la troncature du fichier" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Voulez-vous effacer les fichiers .deb précédemment téléchargés ?" -#: 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)" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Quelques erreurs sont apparues lors du décompactage. Les paquets qui" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -"La zone dynamique d'allocation mémoire (« Dynamic MMap ») n'a plus de place. " -"Vous devriez augmenter la taille de APT::Cache-Start, dont la valeur " -"actuelle est de %lu (voir « man 5 apt.conf »)." +"ont été installés vont être configurés . Il peut en résulter d'autres erreurs" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Impossible d'augmenter la taille de la « mmap » car la limite de %lu octets " -"est déjà atteinte." +"ou des erreurs provoquées par les dépendances manquantes. C'est bénin, " +"seules les erreurs." -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Impossible d'augmenter la taille de la « mmap » car l'augmentation " -"automatique a été désactivée par une option utilisateur." +"précédant ce message sont importantes. Veuillez les corriger et\n" +"démarrer l'[I]nstallation une nouvelle fois." -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Impossible de localiser le point de montage %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Fusion des informations disponibles" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Impossible d'accéder au cédérom." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode appelé sur un nœud toujours lié" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Type d'abréviation non reconnue : « %c »" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Impossible de situer l'élément haché !" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Ouverture du fichier de configuration %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Échec lors de l'allocation de la déviation" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Erreur interne dans AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Erreur syntaxique %s:%u : le bloc commence sans aucun nom." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Essaye d'écraser une déviation, %s -> %s et %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Erreur syntaxique %s:%u : balise mal formée" +msgid "Double add of diversion %s -> %s" +msgstr "Addition double d'une déviation %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Erreur syntaxique %s:%u : valeur suivie de choses illicites" +msgid "Duplicate conf file %s/%s" +msgstr "Fichier de configuration en double %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Erreur syntaxique %s:%u : ces directives ne peuvent être appliquées qu'au " -"niveau le plus haut" +msgid "The path %s is too long" +msgstr "Le chemin %s est trop long" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Erreur syntaxique %s:%u: trop de niveaux d'imbrication d'includes" +msgid "Unpacking %s more than once" +msgstr "Veuillez décompresser %s plus d'une fois" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici" +msgid "The directory %s is diverted" +msgstr "Le répertoire %s est détourné" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Erreur syntaxique %s:%u : directive « %s » non tolérée" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Le chemin de déviation est trop long" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Erreur de syntaxe %s:%u : la directive « clear » a besoin d'un arbre " -"d'options comme paramètre" +msgid "Failed to stat %s" +msgstr "Impossible de statuer %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier" +msgid "Failed to rename %s to %s" +msgstr "Impossible de changer le nom %s en %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "Pas de porte-clés installé dans %s." +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-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +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:293 +msgid "The path is too long" +msgstr "Le chemin est trop long" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "L'option « %c » de la ligne de commande [d'origine %s] est inconnue." +msgid "Overwrite package match with no version for %s" +msgstr "Écrase la correspondance de paquet sans version pour %s " -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "L'option %s de la ligne de commande n'est pas reconnue" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Le fichier %s/%s écrase celui inclus dans le paquet %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "L'option %s de la ligne de commande n'est pas une valeur booléenne" +msgid "Unable to stat %s" +msgstr "Impossible de statuer pour %s." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "L'option %s nécessite un paramètre." +msgid "Failed to write file %s" +msgstr "Erreur d'écriture du fichier %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Option %s : l'item configuration doit être spécifiée avec un =<val>." +msgid "Failed to close file %s" +msgstr "Échec de clôture du fichier %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "L'option %s prend un nombre entier en paramètre, et non « %s »" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Ce n'est pas une archive DEB valide, partie « %s » manquante" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "L'option « %s » est trop longue" +msgid "Internal error, could not locate member %s" +msgstr "Erreur interne, ne peut localiser la partie %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Fichier de contrôle non traitable" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Signature d'archive invalide" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Erreur de lecture de l'en-tête du membre d'archive" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "La signification %s n'est pas comprise, veuillez essayer vrai ou faux." +msgid "Invalid archive member header %s" +msgstr "En-tête du membre d'archive %s non valable" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "En-tête du membre d'archive non-valable" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "L'archive est trop petite" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Échec de la lecture des en-têtes d'archive" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Échec de création de tubes" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Impossible d'exécuter gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Archive corrompue" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Échec dans la somme de contrôle de tar, l'archive est corrompue" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "L'opération %s n'est pas valable" +msgid "Unknown TAR header type %u, member %s" +msgstr "Type d'en-tête %u inconnu pour TAR, partie %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3696,7 +3700,7 @@ msgstr "Impossible de lire lors du calcul de la somme MD5" msgid "Problem unlinking %s" msgstr "Problème en déliant %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3752,6 +3756,10 @@ msgstr "" " -o=? Place une option de configuration arbitraire, p. ex. -o dir::cache=/" "tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Erreur interne, AllUpgrade a cassé le boulot !" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s n'est pas un paquet Debian valide." diff --git a/po/gl.po b/po/gl.po index 1c5e35ecb..e7fe6d30f 100644 --- a/po/gl.po +++ b/po/gl.po @@ -10,11 +10,11 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Language-Team: galician <proxecto@trasno.net>\n" -"Language: \n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,3237 +22,3241 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Poedit-Language: Galician\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "O tipo de ficheiros de índices «%s» non está admitido" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "O paquete %s versión %s ten unha dependencia incumprida:\n" +msgid "Unable to read %s" +msgstr "Non é posíbel ler %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Número total de nomes de paquetes : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Non é posíbel cambiar a %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Estruturas de paquetes totais: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Non é posíbel analizar %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquetes normais: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquetes virtuais puros: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Executando dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquetes virtuais simples: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "O sistema de empaquetado «%s» non está admitido" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquetes virtuais mixtos: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Non é posíbel determinar un tipo de sistema de empaquetado axeitado" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Non atopados: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Escribíronse %i rexistros.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Número total de versións distintas: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Escribíronse %i rexistros con %i ficheiros que faltan.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Número total de descricións distintas: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Escribíronse %i rexistros con %i ficheiros que non coinciden\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Número total de dependencias: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Escribíronse %i rexistros con %i ficheiros que faltan e %i ficheiros que non " +"coinciden\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Número total de relacións versión/ficheiro: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Non é posíbel atopar un rexistro de autenticación para: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Número total de relacións descrición/ficheiro: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Valor de hash non coincidente para: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Número total de asignacións provistas: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Non foi posíbel atopar o controlador de métodos %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Número total de cadeas: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espazo total de versións de dependencias: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "O método %s non se iniciou correctamente" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espazo de reserva total: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Insira o disco etiquetado: «%s» na unidade «%s» e prema Intro." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Espazo total contabilizado: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Non foi posíbel analizar ou abrir as listas de paquetes ou ficheiro de " +"estado." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "O ficheiro de paquete %s está sen sincronizar." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Pode querer executar «apt-get update» para corrixir estes problemas" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Non se atopou ningún paquete" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Non foi posíbel ler a lista de orixes." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Debe fornecer cando menos un patrón de busca" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Caché de paquetes baleira" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "O ficheiro de caché de paquetes está danado" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "O ficheiro de caché de paquetes é unha versión incompatíbel" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "O ficheiro de caché de paquetes está danado" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Non foi posíbel atopar o paquete %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Este APT non admite o sistema de versionado «%s»" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Ficheiros de paquetes:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "A caché de paquetes construíuse para unha arquitectura diferente" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"A caché está sen sincronizar, non se pode facer referencia a un ficheiro de " -"paquetes" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquetes inmobilizados:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "PreDepende" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(non se atopou)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suxire" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalado: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomenda" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Conflitos" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ningún)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Substitúe a" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Inmobilizado: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Fai obsoleto a" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Táboa de versións:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Estraga" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado en %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Mellora" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Uso: apt-cache [opcións] orde\n" -" apt-cache [opcións] showpkg paquete1 [paquete2 ...]\n" -" apt-cache [opcións] showsrc paquete1 [paquete2 ...]\n" -"\n" -"apt-cache é unha ferramenta de baixo nivel usada para consultar\n" -"informacións dos ficheiros binarios da cache do APT\n" -"\n" -"Ordes:\n" -" gencaches - Constrúe as caches de paquete e fonte\n" -" showpkg - Mostra algunhas informacións xerais dun único paquete\n" -" showsrc - Mostra rexistros da fonte\n" -" stats - Mostra algunhas estatísticas básicas\n" -" dump - Mostra o ficheiro enteiro nun formato concreto\n" -" dumpavail - Imprime un ficheiro dispoñíbel para stdout\n" -" unmet - Mostra dependencias non atopadas\n" -" search - Busca na lista de paquetes por unha expresión regular\n" -" show - Mostra un rexistro lexíbel para o paquete\n" -" showauto - Mostra unha lista dos paquetes instalados automaticamente\n" -" depends - Mostra informacións brutas de dependencia para un paquete\n" -" rdepends - Mostra informacións de dependencia inversa para un paquete\n" -" pkgnames - Lista os nomes de todos os paquetes no sistema\n" -" dotty - Xera gráficos de paquete para o GraphViz\n" -" xvcg - Xera gráficos de paquete para o xvcg\n" -" policy - Mostra configuracións da política\n" -"\n" -"Options:\n" -" -h Este texto de axuda.\n" -" -p=? A cache do paquete.\n" -" -s=? A cache da fonte.\n" -" -q Desactiva o indicador de progreso.\n" -" -i Mostra soamente dependencias importantes para a orde unmet.\n" -" -c=? Ler este ficheiro de configuración\n" -" -o=? Define unha opción arbitraria de configuración, ex. -o dir::cache=/" -"tmp\n" -"Vexa a páxina de manual apt-cache(8) e apt.conf(5) para obter mais " -"información.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Forneza un nome para este disco, como «Debian 5.0.3 Disco 1»" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requirido" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Insira un disco na unidade e prema Intro" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estándar" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Produciuse un fallo ao montar «%s» en «%s»" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repita este proceso para o resto de CD do seu conxunto." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "O tipo de ficheiros de índices «%s» non está admitido" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Os argumentos non van en parellas" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Produciuse un erro na compilación da expresión regular - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Uso: apt-config [opcións] orde\n" -"\n" -"apt-config é unha ferramenta simple para ler a configuración de APT\n" -"\n" -"Ordes:\n" -" shell - Modo de intérprete de ordes\n" -" dump - Amosa a configuración\n" -"\n" -"Opcións:\n" -" -h Este texto de axuda.\n" -" -c=? Le este ficheiro de configuración\n" -" -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/" -"tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "A caché ten un sistema de versionado incompatíbel" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Produciuse un erro ao procesar %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Vaites!, superou o número de nomes de paquetes que este APT pode manexar." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Vaites!, superou o número de versións que este APT pode manexar." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Tome «%s» como paquete fonte no canto de «%s»\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Vaites!, superou o número de descricións que este APT pode manexar." -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorar a versión non dispoñíbel «%s» do paquete «%s»" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Non foi posíbel atopar o paquete %s" +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" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s cambiado a instalado manualmente.\n" +msgid "Couldn't stat source package list %s" +msgstr "Non foi posíbel atopar a lista de paquetes fonte %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s está estabelecido para a súa instalación automática.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lendo as listas de paquetes" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Recollendo as provisións de ficheiros" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Produciuse un erro interno, o solucionador interno estragou cousas" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Non é posíbel escribir en %s" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Non é posíbel bloquear o directorio de descargas" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Produciuse un erro de E/S ao gravar a caché de fontes" -#: cmdline/apt-get.cc:726 -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" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Non sé posíbel atopar un paquete fonte para %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -"AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n" -"%s\n" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -"Empregue:\n" -"bzr get %s\n" -"para obter as últimas actualizacións (posibelmente non publicadas) do " -"paquete.\n" -#: cmdline/apt-get.cc:843 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Omítese o ficheiro xa descargado «%s»\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "non foi posíbel cambiar o nome, %s (%s -> %s)." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "A sumas «hash» non coinciden" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Os tamaños non coinciden" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operación incorrecta: %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Non foi posíbel determinar o espazo libre en %s" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Non é posíbel atopar a entrada agardada «%s» no ficheiro de publicación " +"(entrada sources.list incorrecta ou ficheiro con formato incorrecto)" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Non hai espazo libre abondo en %s" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "" +"Non é posíbel ler a suma de comprobación para «%s» no ficheiro de publicació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:891 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Non hai unha chave pública dispoñíbel para os seguintes ID de chave:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +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:896 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Ten que recibir %sB de arquivos de fonte.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Fetch source %s\n" -msgstr "Obter fonte %s\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Produciuse un erro durante a verificación da sinatura. O repositorio non foi " +"actualizado, empregaranse os ficheiros de índice anteriores. Erro de GPG: " +"%s: %s\n" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Non se puideron obter algúns arquivos." +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Produciuse un erro de GPG: %s %s" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Completouse a descarga no modo de só descargas" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que " +"ten que arranxar este paquete a man. (Falta a arquitectura)" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1925 #, 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" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Fallou a orde de desempaquetado «%s».\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Os ficheiros de índices de paquetes están danados. Non hai un campo " +"Filename: para o paquete %s." -#: cmdline/apt-get.cc:963 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "O bloque de provedor %s non contén unha pegada dixital" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Fallou a orde de construción de «%s».\n" +msgid "List directory %spartial is missing." +msgstr "Non se atopa a lista de directorios %sparcial." -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "O proceso fillo fallou" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Non se atopa a lista de arquivos %sparcial." -#: cmdline/apt-get.cc:1029 -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" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Non é posíbel bloquear o directorio %s" -#: cmdline/apt-get.cc:1054 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Obtendo o ficheiro %li de %li (restan %s)" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/acquire.cc:904 #, 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" +msgid "Retrieving file %li of %li" +msgstr "Obtendo o ficheiro %li de %li" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s non ten dependencias de compilación.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Non foi posíbel obter %s %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " -"paquete %s" +"Algúns ficheiros de índice fallaron durante a descarga. Ignoráronse, ou " +"foron utilizados algúns antigos no seu lugar" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Debe introducir algúns URI «orixe» no seu ficheiro sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " -"paquete %s" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"Non foi posíbel satisfacer a dependencia «%s» de %s: O paquete instalado %s " -"é novo de máis" +"Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Non se entendeu o tipo de inmobilización %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "" +"Non se indicou unha prioridade (ou indicouse cero) para a inmobilización" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" 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" +"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)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Non foi posíbel abrir o ficheiro «%s»" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " -"paquete %s" +"Esta instalación requirirá que se retire temporalmente o paquete esencial %s " +"por mor dun bucle de Conflitos e Pre-dependencias. Isto adoita ser malo, " +"pero se o quere facer, active a opción APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Liña %u longa de máis na lista de orixes %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando o CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Non se puideron satisfacer as dependencias de construción de %s." +msgid "Using CD-ROM mount point %s\n" +msgstr "Empregando o punto de montaxe de CD-ROM %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Non se puideron procesar as dependencias de construción" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Agardando polo disco...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando o CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Rexistro de cambios de %s (%s)" +msgid "Stored label: %s\n" +msgstr "Etiqueta almacenada: %s\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos admitidos:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Buscando os ficheiros de índices no disco...\n" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Uso: apt-get [opcións] orde\n" -" apt-get [opcións] install|remove paquete1 [paquete2 ...]\n" -" apt-get [opcións] source paquete1 [paquete2 ...]\n" -"\n" -"apt-get é unha sinxela interface de liña de ordes para a descarga e\n" -"instalación de paquetes. As ordes empregadas con máis frecuencia\n" -"son actualizadas e instaladas. \n" -"\n" -"Ordes:\n" -" update - Recupera unha nova lista de paquetes\n" -" upgrade - Executa unha actualización\n" -" install - Instala novos paquetes (o paquete é libc6 non libc6.deb)\n" -" remove - Retira paquetes\n" -" autoremove - Retira automaticamente todos os paquetes sen uso\n" -" purge - Retira paquetes e ficheiros de configuración\n" -" source - Descarga os arquivos de fontes\n" -" build-dep - Configura as dependencias para paquetes de fontes\n" -" dist-upgrade - Actualiza a distribución, vexa apt-get(8)\n" -" dselect-upgrade - Segue as seleccións de dselect\n" -" clean - Borra os arquivos de ficheiros\n" -" autoclean - Borra os arquivos de ficheiros antigos\n" -" check - Comproba que non haxa dependencias sen cumprir\n" -" markauto - Marca os paquetes como instalados automaticamente\n" -" unmarkauto - Marca os paquetes como instalados manualmente\n" -" changelog - Descarga e mostra o rexistro de cambios para o paquete " -"proposto\n" -" download - Descarga o paquete binario no directorio actual\n" -"\n" -"Opçións:\n" -" -h Este texto de axuda\n" -" -q Saída rexistrábel - sen indicador de progreso\n" -" -qq Sen saída, agás para os erros \n" -" -d Só descarga - NON instala ou desempaqueta os arquivos\n" -" -s Sen acción. Fai unha simulación\n" -" -y Asume Si para todas as preguntas e non as presenta\n" -" -f Tenta corrixir un sistema con dependencias non cumpridas\n" -" -m Tenta continuar se os arquivos non son localizados\n" -" -u Mostra tamén unha lista de paquetes actualizados\n" -" -b Constrúe o paquete fonte despois de descargalo\n" -" -V Mostra os números detallados da versión\n" -" -c=? Ler este ficheiro de configuración\n" -" -o=? Define unha opción arbitraria de configuración, p.ex. -o dir::cache=/" -"tmp\n" -"Vexa as páxinas do manual sobre apt-get(8), sources.list(5) e apt.conf(5) \n" -"para obter mais información e opcións\n" -" Este APT ten poderes da Super Vaca.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Ten que especificar polo menos un paquete para obter o código fonte" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Atopáronse %zu índices de paquetes, %zu índices de orixes, %zu índices de " +"traducións e %zu sinaturas\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Non é posíbel localizar ningún ficheiro de paquetes. É posíbel que non sexa " +"un disco de Debian ou que a arquitectura sexa incorrecta." -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "mais non está instalado" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s cambiado a instalado manualmente.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s está estabelecido para a súa instalación automática.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s xa é a versión máis recente.\n" - -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s xa é a versión máis recente.\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Agardouse por %s pero non estaba alí" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s cambiado a instalado manualmente.\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Non foi posíbel abrir %s" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" - -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" +msgid "Found label '%s'\n" +msgstr "Atopouse a etiqueta «%s»\n" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Ese non é un nome correcto, volva tentalo.\n" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Non é posíbel ler a base de datos do CD-ROM %s" - -#: 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" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Empregue apt-cdrom para que APT poida recoñecer este CD-ROM. Non foi posíbel " -"empregar apt-get update para engadir un CD-ROM" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM incorrecto" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Non é posíbel desmontar o CD-ROM de %s, pode estarse empregando aínda." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Non se atopou o disco" - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Non se atopou o ficheiro" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Non foi posíbel determinar o estado" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Non foi posíbel estabelecer a hora de modificación" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI incorrecto, os URI locais non deben comezar por //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Identificándose" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Non é posíbel determinar o nome do outro extremo" +"Este disco chámase: \n" +"«%s»\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Non é posíbel determinar o nome local" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando as listas de paquetes..." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "O servidor rexeitou a conexión e dixo: %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Escribindo a nova lista de orixes\n" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "Fallou a orde USER, o servidor dixo: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "As entradas da lista de orixes deste disco son:\n" -#: methods/ftp.cc:232 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Fallou a orde PASS, o servidor dixo: %s" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Especificouse un servidor proxy pero non un script de conexión, Acquire::" -"ftp::ProxyLogin está baleiro." - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Fallou a orde do script de acceso «%s», o servidor dixo: %s" - -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "Fallou a orde TYPE, o servidor dixo: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Esgotouse o tempo para a conexión" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "O servidor pechou a conexión" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Produciuse un erro de lectura" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Unha resposta desbordou o búfer." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Dano no protocolo" - -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Produciuse un erro de escritura" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Non é posíbel crear un socket" +"O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu " +"arquivo." -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Non é posíbel conectar o socket de datos, o tempo esgotouse para a conexión" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Fallou" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Non é posíbel conectar o socket pasivo." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo non puido obter un socket no que atender" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Non é posíbel ligar un socket" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Non é posíbel escoitar no socket" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Non é posíbel determinar o nome do socket" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Non é posíbel enviar a orde PORT" - -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Familia de enderezos %u (AF_*) descoñecida" - -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Produciuse un fallou na orde EPRT, o servidor dixo: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "A conexión do socket de datos esgotou o tempo" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Non é posíbel aceptar a conexión" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Xurdiu un problema ao calcular o hash do ficheiro" - -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Non é posíbel obter o ficheiro, o servidor dixo «%s»" +"Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar " +"causado por paquetes retidos." -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "O socket de datos esgotou o tempo" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos." -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Produciuse un fallou na transferencia de datos, o servidor dixo «%s»" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Construindo a árbore de dependencias" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Petición" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versións candidatas" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Non é posíbel chamar a " +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Xeración de dependencias" -#: methods/connect.cc:76 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lendo a información do estado" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectando a %s (%s)" +msgid "Failed to open StateFile %s" +msgstr "Non foi posíbel abrir o ficheiro de estado %s" -#: methods/connect.cc:87 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Failed to write temporary StateFile %s" +msgstr "Non foi posíbel gravar o ficheiro de estado temporal %s" -#: methods/connect.cc:94 +#: apt-pkg/tagfile.cc:140 #, 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)" +msgid "Unable to parse package file %s (1)" +msgstr "Non é posíbel analizar o ficheiro de paquetes %s (1)" -#: methods/connect.cc:100 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Non é posíbel iniciar a conexión a %s:%s (%s)." +msgid "Unable to parse package file %s (2)" +msgstr "Non é posíbel analizar o ficheiro de paquetes %s (2)" -#: methods/connect.cc:108 +#: apt-pkg/cacheset.cc:489 #, 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" +msgid "Release '%s' for '%s' was not found" +msgstr "Non se atopou a publicación «%s» de «%s»" -#: methods/connect.cc:126 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Non foi posíbel conectar a %s:%s (%s)." +msgid "Version '%s' for '%s' was not found" +msgstr "Non se atopou a versión «%s» de «%s»" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Connecting to %s" -msgstr "Conectando a %s" +msgid "Unable to locate package %s" +msgstr "Non foi posíbel atopar o paquete %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Could not resolve '%s'" -msgstr "Non foi posíbel atopar «%s»" +msgid "Couldn't find task '%s'" +msgstr "Non foi posíbel atopar a tarefa «%s»" -#: methods/connect.cc:205 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Produciuse un fallo temporal ao buscar «%s»" +msgid "Couldn't find any package by regex '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: methods/connect.cc:209 +#: apt-pkg/cacheset.cc:615 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" +msgid "Couldn't find any package by glob '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: methods/connect.cc:211 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Non é posíbel seleccionar distintas versións do paquete «%s» xa que é " +"puramente virtual" -#: methods/connect.cc:258 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Non é posíbel conectar %s:%s:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Erro interno: Sinatura correcta, pero non foi posíbel determinar a pegada " -"dixital da chave" +"Non é posíbel seleccionar nin a versión instalada nin a candidata do paquete " +"«%s» xa que non ten ningunha delas" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Atopouse polo menos unha sinatura incorrecta." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Non é posíbel seleccionar a versión máis recente do paquete «%s» xa que é " +"puramente virtual" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Non é posíbel executar «gpgv» para verificar a sinatura (Está instalado " -"gpgv?)" +"Non é posíbel seleccionar a versión candidata do paquete %s xa que non ten " +"candidata" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Can't select installed version from package %s as it is not installed" msgstr "" +"Non é posíbel seleccionar a versión instalada do paquete %s xa que non está " +"instalado" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Produciuse un erro descoñecido ao executar gpgv" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Non se puido analizar o ficheiro de publicación %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "As seguintes sinaturas non eran correctas:\n" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Non hai seccións no ficheiro de publicación %s" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Non se puideron verificar as seguintes sinaturas porque a chave pública non " -"está dispoñíbel:\n" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Non hai entrada de Hash no ficheiro de publicación %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Os ficheiros baleiros non poden ser arquivadores válidos" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "A entrada «Valid-Until» no ficheiro de publicación %s non é válida" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Produciuse un erro ao escribir no ficheiro" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "A entrada «Date» no ficheiro de publicación %s non é válida" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)" + +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -"Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión" +"Liña %lu mal construída na lista de fontes %s ([opción] non analizábel)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Produciuse un erro ao ler do servidor" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Liña %lu mal construída na lista de fontes %s ([opción] demasiado curta)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Produciuse un erro ao escribir nun ficheiro" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Liña %lu mal construída na lista de fontes %s ([%s] non é unha asignación)" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Fallou a chamada a select" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Liña %lu mal construída na lista de fontes %s ([%s] non ten chave)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "A conexión esgotou o tempo" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Liña %lu mal construída na lista de fontes %s ([%s] a chave %s non ten valor)" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Produciuse un erro ao escribir no ficheiro de saída" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Liña %lu mal construída na lista de orixes %s (URI)" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Agardando polas cabeceiras" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Liña %lu mal construída na lista de orixes %s (dist)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Liña de cabeceira incorrecta" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "O servidor HTTP enviou unha cabeceira de resposta incorrecta" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Liña %lu mal construída na lista de orixes %s (dist absoluta)" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "" -"O servidor HTTP enviou unha cabeceira cunha lonxitude de contido incorrecta" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Liña %lu mal construída na lista de orixes %s (análise de dist)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "O servidor HTTP enviou unha cabeceira cun rango de contido incorrecto" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Abrindo %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada" +#: apt-pkg/sourcelist.cc:371 +#, 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:375 +#, 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" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de datos descoñecido" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Datos da cabeceira incorrectos" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Instalando %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Produciuse un fallo na conexión" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Configurando %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Produciuse un erro interno" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Retirando %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando a anovación... " +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s completamente retirado" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Produciuse un erro interno, AllUpgrade estragou cousas" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Tomando nota da desaparición de %s" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Feito" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Executando o disparador de post-instalación %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Falta o directorio «%s»" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Non foi posíbel abrir o ficheiro «%s»" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Preparing %s" +msgstr "Preparando %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corrixindo as dependencias..." +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Desempaquetando %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " fallou." +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Preparandose para configurar %s" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Non foi posíbel corrixir as dependencias." +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Instalouse %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Non foi posíbel minimizar o conxunto de anovacións" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Preparándose para o retirado de %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Feito" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Retirouse %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Pode querer executar «apt-get -f install» para corrixilos." +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Preparándose para retirar %s completamente" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependencias incumpridas. Probe a empregar -f." +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Retirouse %s completamente" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-private/private-output.cc:233 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +msgid "Can not write log (%s)" +msgstr "Non é posíbel escribir en %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" - -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-private/private-output.cc:248 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "[upgradable from: %s]" +msgid "Waited for %s but it wasn't there" +msgstr "Agardouse por %s pero non estaba alí" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" +"Non se escribiu ningún informe de Apport porque xa se acadou o nivel " +"MaxReports" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Os seguintes paquetes teñen dependencias sen cumprir:" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemas de dependencias - déixase sen configurar" -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "mais %s está instalado" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica que " +"é un error provinte dun fallo anterior." -#: apt-private/private-output.cc:444 -#, c-format -msgid "but %s is to be installed" -msgstr "mais vaise instalar %s" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " +"erro de disco cheo." -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "mais non é instalábel" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Non se escribiu un informe de contribución porque a mensaxe de erro indica " +"un erro de falta de memoria" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "mais é un paquete virtual" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " +"erro de disco cheo." -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "mais non está instalado" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " +"erro de E/S en dpkg" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "mais non se vai a instalar" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Non é posíbel bloquear o directorio de administración (%s). Esta usandoo " +"algún outro proceso?" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " ou" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Non é posíbel bloquear o directorio de administración (%s). É o " +"administrador?" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Os seguintes paquetes NOVOS hanse instalar:" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg interrompeuse, debe executar manualmente «%s» para corrixir o problema. " -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Vanse RETIRAR os paquetes seguintes:" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non está bloqueado" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Consérvanse os seguintes paquetes:" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" + +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Vanse anovar os paquetes seguintes:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Vanse REVERTER os seguintes paquetes :" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Vanse modificar os paquetes retidos seguintes:" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Non se atopou a selección %s" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "%s (due to %s) " -msgstr "%s (por mor de %s) " +msgid "Not using locking for read only lock file %s" +msgstr "Non se empregan bloqueos para o ficheiro de bloqueo de só lectura %s" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"AVISO: Retiraranse os seguintes paquetes esenciais.\n" -"Isto NON se debe facer a menos que saiba exactamente o que está a facer!" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Non foi posíbel abrir o ficheiro de bloqueo %s" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu anovados, %lu instalados, " +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Non se empregan bloqueos para o ficheiro de bloqueo montado por NFS %s" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +msgid "Could not get lock %s" +msgstr "Non foi posíbel obter o bloqueo %s" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "%lu downgraded, " -msgstr "%lu revertidos, " +msgid "List of files can't be created as '%s' is not a directory" +msgstr "A lista de ficheiros non pode ser creada como «%s» non é un directorio" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n" +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignorando «%s» no directorio «%s» xa que non é un ficheiro regular" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu non instalados ou retirados de todo.\n" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" +"Ignorando o ficheiro «%s» no directorio «%s» xa que non ten extensión de nome" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"Ignorando o ficheiro «%s» no directorio «%s» xa que ten unha extensión de " +"nome incorrecta" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "O subproceso %s recibiu un fallo de segmento." -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "O subproceso %s recibiu o sinal %u." -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "O subproceso %s devolveu un código de erro (%u)" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Regex compilation error - %s" -msgstr "Produciuse un erro na compilación da expresión regular - %s" +msgid "Sub-process %s exited unexpectedly" +msgstr "O subproceso %s saíu de xeito inesperado" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "A orde «update» non toma argumentos" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Produciuse un erro de escritura" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Problem closing the gzip file %s" +msgstr "Produciuse un problema ao pechar o arquivo gzip %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Could not open file %s" +msgstr "Non foi posíbel abrir o ficheiro %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Non foi posíbel abrir o descritor de ficheiro %d" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"Produciuse un erro interno, chamouse a InstallPackages con paquetes " -"estragados." +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Non foi posíbel crear o IPC do subproceso" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Hai que retirar paquetes mais o retirado está desactivado." +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Non foi posíbel executar o compresor " -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Produciuse un erro interno; non rematou a ordenación" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Produciuse un erro de lectura" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Que estraño... Os tamaños non coinciden; envíe un correo-e a apt@packages." -"debian.org" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "lectura, aínda hai %lu para ler pero non queda ningú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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escritura, aínda hai %lu para escribir pero non se puido" + +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Ten que recibir %sB/%sB de arquivos.\n" +msgid "Problem closing the file %s" +msgstr "Produciuse un problema ao pechar o ficheiro %s" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Ten que recibir %sB de arquivos.\n" +msgid "Problem renaming the file %s to %s" +msgstr "Produciuse un problema ao renomear o ficheiro %s a %s" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Despois desta operación ocuparanse %sB de disco adicionais.\n" +msgid "Problem unlinking the file %s" +msgstr "Produciuse un problema ao desligar o ficheiro %s" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Produciuse un problema ao sincronizar o ficheiro" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Despois desta operación liberaranse %sB de espazo de disco.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Erro!" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Non hai espazo libre abondo en %s." +msgid "%c%s... Done" +msgstr "%c%s... Feito" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Xurdiron problemas e empregouse -y sen --force-yes" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial." +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Feito" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Si, fai o que digo!" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Non é posíbel facer mmap sobre un ficheiro baleiro" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Está a piques de facer algo perigoso.\n" -"Para continuar escriba a frase «%s»\n" -" ?] " +msgid "Couldn't duplicate file descriptor %i" +msgstr "Non foi posíbel duplicar o descritor de ficheiro %i" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Interromper." +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Non foi posíbel facer mmap de %lu bytes" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Quere continuar?" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Non é posíbel pechar mmap" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Non foi posíbel descargar algúns ficheiros" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Non é posíbel sincronizar mmap" + +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Non foi posíbel facer mmap de %lu bytes" + +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Non foi posíbel truncar o ficheiro" -#: apt-private/private-install.cc:319 +#: apt-pkg/contrib/mmap.cc:341 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-" -"missing." +"Dynamic MMap executouse fora do lugar. Incremente o tamaño de APT::Cache-" +"Start. O valor actual é : %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"O emprego conxunto de --fix-missing e intercambio de discos non está admitido" +"Non é posíbel aumentar o tamaño de MMap xa que o límite de %lu bytes xa foi " +"acadado." -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis." +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Non é posíbel aumentar o tamaño de MMap xa que o crecemento automático foi " +"desactivado polo usuario." -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Interrompendo a instalación." +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Non é posíbel analizar o punto de montaxe %s" -#: apt-private/private-install.cc:365 -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] "" -"O seguinte paquete desapareceu do seu sistema e todos os \n" -"ficheiros serán sobrescritos por outros paquetes:" -msgstr[1] "" -"Os seguintes paquetes desapareceron do seu sistema e todos os \n" -"ficheiros serán sobrescritos por outros paquetes:" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Non foi posíbel analizar o CD-ROM" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: Isto será feito automaticamente por dpkg." +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviatura de tipo «%c» descoñecida" -#: apt-private/private-install.cc:390 -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" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Abrindo o ficheiro de configuración %s" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Vaia, semella que o Retirado automático destruíu algo que realmente\n" -"non debería ter feito. Informe deste erro de apt." +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Produciuse un erro de sintaxe %s:%u: O bloque comeza sen un nome." -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "A seguinte información pode axudar a solucionar a situación:" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Produciuse un erro de sintaxe %s:%u: Etiqueta mal formada" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Produciuse un erro interno, o Retirado automático estragou cousas" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra despois do valor" -#: apt-private/private-install.cc:512 -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] "" -"O seguinte paquete foi instalado automaticamente e xa non é necesario:" -msgstr[1] "" -"Os seguintes paquetes foron instalados automaticamente e xa non son " -"necesarios:" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Produciuse un erro de sintaxe %s:%u: Só se poden facer directivas no nivel " +"superior" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:884 #, 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 paquete foi instalado automaticamente e xa non é necesario.\n" -msgstr[1] "" -"%lu paquetes foron instalados automaticamente e xa non son necesarios.\n" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Produciuse un erro de sintaxe %s:%u: Includes aniñados de máis" -#: apt-private/private-install.cc:518 -#, 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." +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Produciuse un erro de sintaxe %s:%u: Incluído de aquí" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Pode querer executar «apt-get -f install» para corrixir isto:" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Produciuse un erro de sintaxe %s:%u: Non se admite a directiva «%s»" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou " -"especifique unha solución)." +"Produciuse un erro de sintaxe %s:%u: a directiva «clear» require unha árbore " +"de opción como argumento" -#: apt-private/private-install.cc:628 -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 "" -"Non foi posíbel instalar algúns paquetes. Isto pode significar que " -"solicitou\n" -"unha situación imposíbel ou, se emprega a distribución inestábel, que\n" -"algúns paquetes solicitados aínda non se creasen ou que se movesen da " -"entrada." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra á fin da liña" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Paquetes estragados" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Non ha ningún chaveiro instalado en %s." -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Instalaranse os seguintes paquetes extra:" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Non se coñece a opción de liña de ordes «%c» [de %s]." -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Paquetes suxeridos:" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Non se entende a opción de liña de ordes %s" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Paquetes recomendados:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "A opción de liña de ordes %s non é booleana" -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Omítese %s, xa está instalado e non se especificou a anovación.\n" +msgid "Option %s requires an argument." +msgstr "A opción %s precisa dun argumento." -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Omitindo %s, non está instalado e só se solicitaron as anovacións.\n" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Opción %s: A especificación de elemento de configuración debe ter un =<val>." -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "A reinstalación de %s non é posíbel, non se pode descargar.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "A opción %s precisa dun argumento enteiro, non «%s»" -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s xa é a versión máis recente.\n" +msgid "Option '%s' is too long" +msgstr "A opción «%s» é longa de máis" -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s»\n" +msgid "Sense %s is not understood, try true or false." +msgstr "O senso %s non se entende, probe «true» ou «false»." -#: apt-private/private-install.cc:889 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s» xa que «%s»\n" +msgid "Invalid operation %s" +msgstr "Operación incorrecta: %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "O paquete %s non está instalado, así que non foi retirado\n" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "O paquete %s versión %s ten unha dependencia incumprida:\n" -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "O paquete %s non está instalado, así que non foi retirado\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Número total de nomes de paquetes : " -#: apt-private/private-main.cc:32 -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 "" -"NOTA: Isto é só unha simulación!\n" -" apt-get precisa de privilexios de administrador para executarse " -"realmente.\n" -" Lembre tamén que o bloqueo está desactivado,\n" -" polo que non debe depender da relevancia da situación actual real." +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Estruturas de paquetes totais: " + +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquetes normais: " + +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquetes virtuais puros: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: Non se poden autenticar os seguintes paquetes!" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquetes virtuais simples: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Ignórase o aviso de autenticación.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquetes virtuais mixtos: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Non foi posíbel autenticar algúns paquetes" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Non atopados: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalar estes paquetes sen verificación?" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Número total de versións distintas: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Non foi posíbel obter %s %s\n" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Número total de descricións distintas: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Non foi posíbel cambiar o nome de %s a %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Número total de dependencias: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Número total de relacións versión/ficheiro: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Número total de relacións descrición/ficheiro: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Teño " +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Número total de asignacións provistas: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Rcb:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Número total de cadeas: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espazo total de versións de dependencias: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Espazo de reserva total: " -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Obtivéronse %sB en %s (%sB/s)\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Espazo total contabilizado: " -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid " [Working]" -msgstr " [Traballando]" +msgid "Package file %s is out of sync." +msgstr "O ficheiro de paquete %s está sen sincronizar." -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Non se atopou ningún paquete" + +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Debe fornecer cando menos un patrón de busca" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Cambio de soporte: introduza o disco etiquetado\n" -" «%s»\n" -"na unidade «%s» e prema Intro\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Non é posíbel ler %s" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Ficheiros de paquetes:" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Non é posíbel cambiar a %s" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"A caché está sen sincronizar, non se pode facer referencia a un ficheiro de " +"paquetes" -#. 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 "Non se atopou ningún ficheiro de replica «%s» " +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquetes inmobilizados:" -#. 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 "Non é posíbel ler o ficheiro de replica «%s»" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(non se atopou)" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Non é posíbel ler o ficheiro de replica «%s»" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalado: " -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Replica: %s]" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Non foi posíbel crear a canle IPC ao subproceso" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ningún)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "A conexión pechouse prematuramente" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Inmobilizado: " + +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Táboa de versións:" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado en %s %s\n" + +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Uso: apt-cache [opcións] orde\n" +" apt-cache [opcións] showpkg paquete1 [paquete2 ...]\n" +" apt-cache [opcións] showsrc paquete1 [paquete2 ...]\n" +"\n" +"apt-cache é unha ferramenta de baixo nivel usada para consultar\n" +"informacións dos ficheiros binarios da cache do APT\n" +"\n" +"Ordes:\n" +" gencaches - Constrúe as caches de paquete e fonte\n" +" showpkg - Mostra algunhas informacións xerais dun único paquete\n" +" showsrc - Mostra rexistros da fonte\n" +" stats - Mostra algunhas estatísticas básicas\n" +" dump - Mostra o ficheiro enteiro nun formato concreto\n" +" dumpavail - Imprime un ficheiro dispoñíbel para stdout\n" +" unmet - Mostra dependencias non atopadas\n" +" search - Busca na lista de paquetes por unha expresión regular\n" +" show - Mostra un rexistro lexíbel para o paquete\n" +" showauto - Mostra unha lista dos paquetes instalados automaticamente\n" +" depends - Mostra informacións brutas de dependencia para un paquete\n" +" rdepends - Mostra informacións de dependencia inversa para un paquete\n" +" pkgnames - Lista os nomes de todos os paquetes no sistema\n" +" dotty - Xera gráficos de paquete para o GraphViz\n" +" xvcg - Xera gráficos de paquete para o xvcg\n" +" policy - Mostra configuracións da política\n" +"\n" +"Options:\n" +" -h Este texto de axuda.\n" +" -p=? A cache do paquete.\n" +" -s=? A cache da fonte.\n" +" -q Desactiva o indicador de progreso.\n" +" -i Mostra soamente dependencias importantes para a orde unmet.\n" +" -c=? Ler este ficheiro de configuración\n" +" -o=? Define unha opción arbitraria de configuración, ex. -o dir::cache=/" +"tmp\n" +"Vexa a páxina de manual apt-cache(8) e apt.conf(5) para obter mais " +"información.\n" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configuración predeterminada incorrecta!" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Forneza un nome para este disco, como «Debian 5.0.3 Disco 1»" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Prema Intro para continuar." +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Insira un disco na unidade e prema Intro" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Quere borrar os ficheiros .deb descargados anteriormente?" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Produciuse un fallo ao montar «%s» en «%s»" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Ocorreron algúns erros ao desempaquetar, Os paquetes que se instalaron" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "serán configurados, Isto pode dar erros de duplicación" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repita este proceso para o resto de CD do seu conxunto." -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"ou erros causados por dependencias incumpridas. Isto é normal, só os erros" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Os argumentos non van en parellas" -#: dselect/install:105 +#: cmdline/apt-config.cc:89 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"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 "" -"que hai enriba desta mensaxe son importantes. Arránxeos e volva a instalar." - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Mesturando a información sobre paquetes dispoñíbeis" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Chamouse a DropNode nun nodo aínda ligado" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Non foi posíbel atopar o elemento hash" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Non foi posíbel reservar un desvío" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Produciuse un erro interno en AddDiversion" - -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Téntase sobrescribir un desvío, %s -> %s e %s/%s" - -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Desvío %s -> %s engadido dúas veces" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Ficheiro de configuración %s/%s duplicado" +"Uso: apt-config [opcións] orde\n" +"\n" +"apt-config é unha ferramenta simple para ler a configuración de APT\n" +"\n" +"Ordes:\n" +" shell - Modo de intérprete de ordes\n" +" dump - Amosa a configuración\n" +"\n" +"Opcións:\n" +" -h Este texto de axuda.\n" +" -c=? Le este ficheiro de configuración\n" +" -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/" +"tmp\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "A ruta %s é longa de máis" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Desempaquetando %s máis dunha vez" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "O directorio %s está desviado" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:367 #, 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" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Tome «%s» como paquete fonte no canto de «%s»\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "A ruta do desvío é longa de máis" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorar a versión non dispoñíbel «%s» do paquete «%s»" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Failed to stat %s" -msgstr "Non foi posíbel determinar o estado %s" +msgid "Couldn't find package %s" +msgstr "Non foi posíbel atopar o paquete %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Non foi posíbel cambiar o nome de %s a %s" +msgid "%s set to manually installed.\n" +msgstr "%s cambiado a instalado manualmente.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, 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:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Non foi posíbel atopar o nodo no seu contedor hash" +msgid "%s set to automatically installed.\n" +msgstr "%s está estabelecido para a súa instalación automática.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "A ruta é longa de máis" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Coincidencia na sobrescritura sen versión para %s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Produciuse un erro interno, o solucionador interno estragou cousas" -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "O ficheiro %s/%s sobrescribe o do paquete %s" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Non é posíbel bloquear o directorio de descargas" -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Non é posíbel determinar o estado %s" +#: cmdline/apt-get.cc:726 +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" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to write file %s" -msgstr "Non foi posíbel escribir no ficheiro «%s»" +msgid "Unable to find a source package for %s" +msgstr "Non sé posíbel atopar un paquete fonte para %s" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Failed to close file %s" -msgstr "Non foi posíbel pechar o ficheiro %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n" +"%s\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 -#, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Este non é un arquivo DEB correcto, falta o membro «%s»" +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Empregue:\n" +"bzr get %s\n" +"para obter as últimas actualizacións (posibelmente non publicadas) do " +"paquete.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Produciuse un erro interno, non foi posíbel atopar o membro %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ficheiro de control non analizábel" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Sinatura de arquivo incorrecta" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Produciuse un erro ao ler a cabeceira do membro do arquivo" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Omítese o ficheiro xa descargado «%s»\n" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Invalid archive member header %s" -msgstr "Cabeceira do membro do arquivo incorrecta %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabeceira do membro do arquivo incorrecta" +msgid "Couldn't determine free space in %s" +msgstr "Non foi posíbel determinar o espazo libre en %s" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "O arquivo é curto de máis" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Non hai espazo libre abondo en %s" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Non foi posíbel ler as cabeceiras dos arquivos" +#. 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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Non foi posíbel crear as canles" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Ten que recibir %sB de arquivos de fonte.\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Non foi posíbel executar gzip " +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Obter fonte %s\n" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arquivo danado" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Non se puideron obter algúns arquivos." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "A suma de comprobación do arquivo tar non coincide, está danado" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Completouse a descarga no modo de só descargas" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tipo de cabeceira TAR %u descoñecido, membro %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Omítese o desempaquetado do código fonte xa desempaquetado en %s\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to stat %s." -msgstr "Non é posíbel analizar %s." +msgid "Unpack command '%s' failed.\n" +msgstr "Fallou a orde de desempaquetado «%s».\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Executando dpkg" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "O sistema de empaquetado «%s» non está admitido" +msgid "Build command '%s' failed.\n" +msgstr "Fallou a orde de construción de «%s».\n" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Non é posíbel determinar un tipo de sistema de empaquetado axeitado" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "O proceso fillo fallou" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "Wrote %i records.\n" -msgstr "Escribíronse %i rexistros.\n" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Escribíronse %i rexistros con %i ficheiros que faltan.\n" +msgid "Unable to get build-dependency information for %s" +msgstr "Non é posíbel obter a información de dependencias de compilación de %s" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Escribíronse %i rexistros con %i ficheiros que non coinciden\n" +msgid "%s has no build depends.\n" +msgstr "%s non ten dependencias de compilación.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " +"paquete %s" + +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Escribíronse %i rexistros con %i ficheiros que faltan e %i ficheiros que non " -"coinciden\n" +"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " +"paquete %s" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Non é posíbel atopar un rexistro de autenticación para: %s" +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" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +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:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " +"paquete %s" + +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Valor de hash non coincidente para: %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "The method driver %s could not be found." -msgstr "Non foi posíbel atopar o controlador de métodos %s." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Non se puideron satisfacer as dependencias de construción de %s." -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Non se puideron procesar as dependencias de construción" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Method %s did not start correctly" -msgstr "O método %s non se iniciou correctamente" +msgid "Changelog for %s (%s)" +msgstr "Rexistro de cambios de %s (%s)" + +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Módulos admitidos:" + +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Uso: apt-get [opcións] orde\n" +" apt-get [opcións] install|remove paquete1 [paquete2 ...]\n" +" apt-get [opcións] source paquete1 [paquete2 ...]\n" +"\n" +"apt-get é unha sinxela interface de liña de ordes para a descarga e\n" +"instalación de paquetes. As ordes empregadas con máis frecuencia\n" +"son actualizadas e instaladas. \n" +"\n" +"Ordes:\n" +" update - Recupera unha nova lista de paquetes\n" +" upgrade - Executa unha actualización\n" +" install - Instala novos paquetes (o paquete é libc6 non libc6.deb)\n" +" remove - Retira paquetes\n" +" autoremove - Retira automaticamente todos os paquetes sen uso\n" +" purge - Retira paquetes e ficheiros de configuración\n" +" source - Descarga os arquivos de fontes\n" +" build-dep - Configura as dependencias para paquetes de fontes\n" +" dist-upgrade - Actualiza a distribución, vexa apt-get(8)\n" +" dselect-upgrade - Segue as seleccións de dselect\n" +" clean - Borra os arquivos de ficheiros\n" +" autoclean - Borra os arquivos de ficheiros antigos\n" +" check - Comproba que non haxa dependencias sen cumprir\n" +" markauto - Marca os paquetes como instalados automaticamente\n" +" unmarkauto - Marca os paquetes como instalados manualmente\n" +" changelog - Descarga e mostra o rexistro de cambios para o paquete " +"proposto\n" +" download - Descarga o paquete binario no directorio actual\n" +"\n" +"Opçións:\n" +" -h Este texto de axuda\n" +" -q Saída rexistrábel - sen indicador de progreso\n" +" -qq Sen saída, agás para os erros \n" +" -d Só descarga - NON instala ou desempaqueta os arquivos\n" +" -s Sen acción. Fai unha simulación\n" +" -y Asume Si para todas as preguntas e non as presenta\n" +" -f Tenta corrixir un sistema con dependencias non cumpridas\n" +" -m Tenta continuar se os arquivos non son localizados\n" +" -u Mostra tamén unha lista de paquetes actualizados\n" +" -b Constrúe o paquete fonte despois de descargalo\n" +" -V Mostra os números detallados da versión\n" +" -c=? Ler este ficheiro de configuración\n" +" -o=? Define unha opción arbitraria de configuración, p.ex. -o dir::cache=/" +"tmp\n" +"Vexa as páxinas do manual sobre apt-get(8), sources.list(5) e apt.conf(5) \n" +"para obter mais información e opcións\n" +" Este APT ten poderes da Super Vaca.\n" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Insira o disco etiquetado: «%s» na unidade «%s» e prema Intro." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Ten que especificar polo menos un paquete para obter o código fonte" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Non foi posíbel analizar ou abrir as listas de paquetes ou ficheiro de " -"estado." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Pode querer executar «apt-get update» para corrixir estes problemas" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Non foi posíbel ler a lista de orixes." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Caché de paquetes baleira" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "O ficheiro de caché de paquetes está danado" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "O ficheiro de caché de paquetes é unha versión incompatíbel" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "O ficheiro de caché de paquetes está danado" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "mais non está instalado" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Este APT non admite o sistema de versionado «%s»" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s cambiado a instalado manualmente.\n" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "A caché de paquetes construíuse para unha arquitectura diferente" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s está estabelecido para a súa instalación automática.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s xa é a versión máis recente.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PreDepende" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s xa é a versión máis recente.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suxire" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s cambiado a instalado manualmente.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomenda" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Non foi posíbel abrir %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Conflitos" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Substitúe a" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Fai obsoleto a" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Estraga" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Non é posíbel ler a base de datos do CD-ROM %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Mellora" +#: 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 "" +"Empregue apt-cdrom para que APT poida recoñecer este CD-ROM. Non foi posíbel " +"empregar apt-get update para engadir un CD-ROM" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM incorrecto" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requirido" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Non é posíbel desmontar o CD-ROM de %s, pode estarse empregando aínda." -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estándar" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Non se atopou o disco" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Non se atopou o ficheiro" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Non foi posíbel determinar o estado" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "O tipo de ficheiros de índices «%s» non está admitido" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Non foi posíbel estabelecer a hora de modificación" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "A caché ten un sistema de versionado incompatíbel" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI incorrecto, os URI locais non deben comezar por //" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Produciuse un erro ao procesar %s (FindPkg)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Identificándose" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Vaites!, superou o número de nomes de paquetes que este APT pode manexar." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Non é posíbel determinar o nome do outro extremo" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Vaites!, superou o número de versións que este APT pode manexar." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Non é posíbel determinar o nome local" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Vaites!, superou o número de descricións que este APT pode manexar." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "O servidor rexeitou a conexión e dixo: %s" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Fallou a orde USER, o servidor dixo: %s" -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:232 #, c-format -msgid "Package %s %s was not found while processing file dependencies" +msgid "PASS failed, server said: %s" +msgstr "Fallou a orde PASS, o servidor dixo: %s" + +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Non foi posíbel atopar o paquete %s %s ao procesar as dependencias de " -"ficheiros" +"Especificouse un servidor proxy pero non un script de conexión, Acquire::" +"ftp::ProxyLogin está baleiro." -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:280 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Non foi posíbel atopar a lista de paquetes fonte %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Fallou a orde do script de acceso «%s», o servidor dixo: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lendo as listas de paquetes" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "Fallou a orde TYPE, o servidor dixo: %s" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Recollendo as provisións de ficheiros" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Esgotouse o tempo para a conexión" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Non é posíbel escribir en %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "O servidor pechou a conexión" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Produciuse un erro de E/S ao gravar a caché de fontes" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Unha resposta desbordou o búfer." -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Dano no protocolo" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Non é posíbel crear un socket" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" +"Non é posíbel conectar o socket de datos, o tempo esgotouse para a conexión" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Fallou" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Non é posíbel conectar o socket pasivo." -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "non foi posíbel cambiar o nome, %s (%s -> %s)." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo non puido obter un socket no que atender" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "A sumas «hash» non coinciden" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Non é posíbel ligar un socket" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Os tamaños non coinciden" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Non é posíbel escoitar no socket" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operación incorrecta: %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Non é posíbel determinar o nome do socket" + +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Non é posíbel enviar a orde PORT" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Non é posíbel atopar a entrada agardada «%s» no ficheiro de publicación " -"(entrada sources.list incorrecta ou ficheiro con formato incorrecto)" +msgid "Unknown address family %u (AF_*)" +msgstr "Familia de enderezos %u (AF_*) descoñecida" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "" -"Non é posíbel ler a suma de comprobación para «%s» no ficheiro de publicación" +msgid "EPRT failed, server said: %s" +msgstr "Produciuse un fallou na orde EPRT, o servidor dixo: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Non hai unha chave pública dispoñíbel para os seguintes ID de chave:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "A conexión do socket de datos esgotou o tempo" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Non é posíbel aceptar a conexión" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Xurdiu un problema ao calcular o hash do ficheiro" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Produciuse un erro durante a verificación da sinatura. O repositorio non foi " -"actualizado, empregaranse os ficheiros de índice anteriores. Erro de GPG: " -"%s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Non é posíbel obter o ficheiro, o servidor dixo «%s»" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "Produciuse un erro de GPG: %s %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "O socket de datos esgotou o tempo" -#: apt-pkg/acquire-item.cc:1867 +#: methods/ftp.cc:935 #, 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 "" -"Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que " -"ten que arranxar este paquete a man. (Falta a arquitectura)" +msgid "Data transfer failed, server said '%s'" +msgstr "Produciuse un fallou na transferencia de datos, o servidor dixo «%s»" -#: apt-pkg/acquire-item.cc:1933 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Petición" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Non é posíbel chamar a " -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:76 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Os ficheiros de índices de paquetes están danados. Non hai un campo " -"Filename: para o paquete %s." +msgid "Connecting to %s (%s)" +msgstr "Conectando a %s (%s)" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:87 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "O bloque de provedor %s non contén unha pegada dixital" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:94 #, c-format -msgid "List directory %spartial is missing." -msgstr "Non se atopa a lista de directorios %sparcial." +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)" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:100 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Non se atopa a lista de arquivos %sparcial." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Non é posíbel iniciar a conexión a %s:%s (%s)." -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:108 #, c-format -msgid "Unable to lock directory %s" -msgstr "Non é posíbel bloquear o directorio %s" +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" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:126 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Obtendo o ficheiro %li de %li (restan %s)" +msgid "Could not connect to %s:%s (%s)." +msgstr "Non foi posíbel conectar a %s:%s (%s)." -#: apt-pkg/acquire.cc:901 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Obtendo o ficheiro %li de %li" +msgid "Connecting to %s" +msgstr "Conectando a %s" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Algúns ficheiros de índice fallaron durante a descarga. Ignoráronse, ou " -"foron utilizados algúns antigos no seu lugar" +#: methods/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" +msgstr "Non foi posíbel atopar «%s»" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Debe introducir algúns URI «orixe» no seu ficheiro sources.list" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Produciuse un fallo temporal ao buscar «%s»" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:258 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "Unable to connect to %s:%s:" +msgstr "Non é posíbel conectar %s:%s:" + +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package" +"Erro interno: Sinatura correcta, pero non foi posíbel determinar a pegada " +"dixital da chave" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Non se entendeu o tipo de inmobilización %s" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Atopouse polo menos unha sinatura incorrecta." -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Non se indicou unha prioridade (ou indicouse cero) para a inmobilización" +"Non é posíbel executar «gpgv» para verificar a sinatura (Está instalado " +"gpgv?)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" 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:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Non foi posíbel abrir o ficheiro «%s»" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Produciuse un erro descoñecido ao executar gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "As seguintes sinaturas non eran correctas:\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Esta instalación requirirá que se retire temporalmente o paquete esencial %s " -"por mor dun bucle de Conflitos e Pre-dependencias. Isto adoita ser malo, " -"pero se o quere facer, active a opción APT::Force-LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Liña %u longa de máis na lista de orixes %s." +"Non se puideron verificar as seguintes sinaturas porque a chave pública non " +"está dispoñíbel:\n" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando o CD-ROM...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Os ficheiros baleiros non poden ser arquivadores válidos" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Empregando o punto de montaxe de CD-ROM %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Produciuse un erro ao escribir no ficheiro" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Agardando polo disco...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" +"Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando o CD-ROM...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Produciuse un erro ao ler do servidor" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Produciuse un erro ao escribir nun ficheiro" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etiqueta almacenada: %s\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Fallou a chamada a select" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Buscando os ficheiros de índices no disco...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "A conexión esgotou o tempo" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Atopáronse %zu índices de paquetes, %zu índices de orixes, %zu índices de " -"traducións e %zu sinaturas\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Produciuse un erro ao escribir no ficheiro de saída" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Non é posíbel localizar ningún ficheiro de paquetes. É posíbel que non sexa " -"un disco de Debian ou que a arquitectura sexa incorrecta." +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Agardando polas cabeceiras" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Atopouse a etiqueta «%s»\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Liña de cabeceira incorrecta" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Ese non é un nome correcto, volva tentalo.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "O servidor HTTP enviou unha cabeceira de resposta incorrecta" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -"Este disco chámase: \n" -"«%s»\n" +"O servidor HTTP enviou unha cabeceira cunha lonxitude de contido incorrecta" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiando as listas de paquetes..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "O servidor HTTP enviou unha cabeceira cun rango de contido incorrecto" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Escribindo a nova lista de orixes\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "As entradas da lista de orixes deste disco son:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de datos descoñecido" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu " -"arquivo." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Datos da cabeceira incorrectos" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar " -"causado por paquetes retidos." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Produciuse un fallo na conexión" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Produciuse un erro interno" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Construindo a árbore de dependencias" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando a anovación... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versións candidatas" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Feito" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Xeración de dependencias" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lendo a información do estado" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Non foi posíbel abrir o ficheiro de estado %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Non foi posíbel gravar o ficheiro de estado temporal %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Corrixindo as dependencias..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Non é posíbel analizar o ficheiro de paquetes %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " fallou." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Non é posíbel analizar o ficheiro de paquetes %s (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Non foi posíbel corrixir as dependencias." -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Non se atopou a publicación «%s» de «%s»" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Non foi posíbel minimizar o conxunto de anovacións" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Non se atopou a versión «%s» de «%s»" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Feito" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Non foi posíbel atopar a tarefa «%s»" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Pode querer executar «apt-get -f install» para corrixilos." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependencias incumpridas. Probe a empregar -f." -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +msgid "[installed,upgradable to: %s]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Non é posíbel seleccionar distintas versións do paquete «%s» xa que é " -"puramente virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Non é posíbel seleccionar nin a versión instalada nin a candidata do paquete " -"«%s» xa que non ten ningunha delas" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Non é posíbel seleccionar a versión máis recente do paquete «%s» xa que é " -"puramente virtual" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Non é posíbel seleccionar a versión candidata do paquete %s xa que non ten " -"candidata" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Non é posíbel seleccionar a versión instalada do paquete %s xa que non está " -"instalado" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Non se puido analizar o ficheiro de publicación %s" +msgid "but %s is installed" +msgstr "mais %s está instalado" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Non hai seccións no ficheiro de publicación %s" +msgid "but %s is to be installed" +msgstr "mais vaise instalar %s" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Non hai entrada de Hash no ficheiro de publicación %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mais non é instalábel" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "A entrada «Valid-Until» no ficheiro de publicación %s non é válida" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mais é un paquete virtual" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "A entrada «Date» no ficheiro de publicación %s non é válida" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mais non está instalado" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mais non se vai a instalar" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Liña %lu mal construída na lista de fontes %s ([opción] non analizábel)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ou" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Liña %lu mal construída na lista de fontes %s ([opción] demasiado curta)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Os seguintes paquetes teñen dependencias sen cumprir:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Liña %lu mal construída na lista de fontes %s ([%s] non é unha asignación)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Os seguintes paquetes NOVOS hanse instalar:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Liña %lu mal construída na lista de fontes %s ([%s] non ten chave)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Vanse RETIRAR os paquetes seguintes:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Liña %lu mal construída na lista de fontes %s ([%s] a chave %s non ten valor)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Consérvanse os seguintes paquetes:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Liña %lu mal construída na lista de orixes %s (URI)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Vanse anovar os paquetes seguintes:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Liña %lu mal construída na lista de orixes %s (dist)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Vanse REVERTER os seguintes paquetes :" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Vanse modificar os paquetes retidos seguintes:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)" +msgid "%s (due to %s) " +msgstr "%s (por mor de %s) " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"AVISO: Retiraranse os seguintes paquetes esenciais.\n" +"Isto NON se debe facer a menos que saiba exactamente o que está a facer!" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Liña %lu mal construída na lista de orixes %s (dist absoluta)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu anovados, %lu instalados, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Liña %lu mal construída na lista de orixes %s (análise de dist)" +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Abrindo %s" +msgid "%lu downgraded, " +msgstr "%lu revertidos, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Liña %u mal construída na lista de orixes %s (tipo)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu non instalados ou retirados de todo.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instalando %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Retirando %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s completamente retirado" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "A orde «update» non toma argumentos" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" -msgstr "Tomando nota da desaparición de %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Executando o disparador de post-instalación %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-private/private-show.cc:156 #, c-format -msgid "Directory '%s' missing" -msgstr "Falta o directorio «%s»" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Non foi posíbel abrir o ficheiro «%s»" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"Produciuse un erro interno, chamouse a InstallPackages con paquetes " +"estragados." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Desempaquetando %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Hai que retirar paquetes mais o retirado está desactivado." -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Preparandose para configurar %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Produciuse un erro interno; non rematou a ordenación" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Que estraño... Os tamaños non coinciden; envíe un correo-e a apt@packages." +"debian.org" + +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "Instalouse %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Ten que recibir %sB/%sB de arquivos.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparándose para o retirado de %s" +msgid "Need to get %sB of archives.\n" +msgstr "Ten que recibir %sB de arquivos.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "Retirouse %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Despois desta operación ocuparanse %sB de disco adicionais.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparándose para retirar %s completamente" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Despois desta operación liberaranse %sB de espazo de disco.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "Retirouse %s completamente" +msgid "You don't have enough free space in %s." +msgstr "Non hai espazo libre abondo en %s." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Xurdiron problemas e empregouse -y sen --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Non é posíbel escribir en %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Si, fai o que digo!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Está a piques de facer algo perigoso.\n" +"Para continuar escriba a frase «%s»\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Interromper." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Non se escribiu ningún informe de Apport porque xa se acadou o nivel " -"MaxReports" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Quere continuar?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemas de dependencias - déixase sen configurar" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Non foi posíbel descargar algúns ficheiros" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica que " -"é un error provinte dun fallo anterior." +"Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-" +"missing." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" -"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " -"erro de disco cheo." +"O emprego conxunto de --fix-missing e intercambio de discos non está admitido" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Non se escribiu un informe de contribución porque a mensaxe de erro indica " -"un erro de falta de memoria" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Interrompendo a instalación." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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] "" +"O seguinte paquete desapareceu do seu sistema e todos os \n" +"ficheiros serán sobrescritos por outros paquetes:" +msgstr[1] "" +"Os seguintes paquetes desapareceron do seu sistema e todos os \n" +"ficheiros serán sobrescritos por outros paquetes:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Isto será feito automaticamente por dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " -"erro de disco cheo." +"Non se agarda que eliminemos cousas, non se pode iniciar o Retirado " +"automático" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " -"erro de E/S en dpkg" +"Vaia, semella que o Retirado automático destruíu algo que realmente\n" +"non debería ter feito. Informe deste erro de apt." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "A seguinte información pode axudar a solucionar a situación:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Produciuse un erro interno, o Retirado automático estragou cousas" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Non é posíbel bloquear o directorio de administración (%s). Esta usandoo " -"algún outro proceso?" +"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] "" +"O seguinte paquete foi instalado automaticamente e xa non é necesario:" +msgstr[1] "" +"Os seguintes paquetes foron instalados automaticamente e xa non son " +"necesarios:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +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 paquete foi instalado automaticamente e xa non é necesario.\n" +msgstr[1] "" +"%lu paquetes foron instalados automaticamente e xa non son necesarios.\n" + +#: apt-private/private-install.cc:519 +#, 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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Pode querer executar «apt-get -f install» para corrixir isto:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Non é posíbel bloquear o directorio de administración (%s). É o " -"administrador?" +"Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou " +"especifique unha solución)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"dpkg interrompeuse, debe executar manualmente «%s» para corrixir o problema. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non está bloqueado" +"Non foi posíbel instalar algúns paquetes. Isto pode significar que " +"solicitou\n" +"unha situación imposíbel ou, se emprega a distribución inestábel, que\n" +"algúns paquetes solicitados aínda non se creasen ou que se movesen da " +"entrada." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquetes estragados" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Instalaranse os seguintes paquetes extra:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquetes suxeridos:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquetes recomendados:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Non se atopou a selección %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Omítese %s, xa está instalado e non se especificou a anovación.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Non se empregan bloqueos para o ficheiro de bloqueo de só lectura %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Omitindo %s, non está instalado e só se solicitaron as anovacións.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Non foi posíbel abrir o ficheiro de bloqueo %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "A reinstalación de %s non é posíbel, non se pode descargar.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Non se empregan bloqueos para o ficheiro de bloqueo montado por NFS %s" +msgid "%s is already the newest version.\n" +msgstr "%s xa é a versión máis recente.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Non foi posíbel obter o bloqueo %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versión seleccionada «%s» (%s) para «%s»\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "A lista de ficheiros non pode ser creada como «%s» non é un directorio" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versión seleccionada «%s» (%s) para «%s» xa que «%s»\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignorando «%s» no directorio «%s» xa que non é un ficheiro regular" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "O paquete %s non está instalado, así que non foi retirado\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"Ignorando o ficheiro «%s» no directorio «%s» xa que non ten extensión de nome" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "O paquete %s non está instalado, así que non foi retirado\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"Ignorando o ficheiro «%s» no directorio «%s» xa que ten unha extensión de " -"nome incorrecta" +"NOTA: Isto é só unha simulación!\n" +" apt-get precisa de privilexios de administrador para executarse " +"realmente.\n" +" Lembre tamén que o bloqueo está desactivado,\n" +" polo que non debe depender da relevancia da situación actual real." -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "O subproceso %s recibiu un fallo de segmento." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISO: Non se poden autenticar os seguintes paquetes!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "O subproceso %s recibiu o sinal %u." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Ignórase o aviso de autenticación.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "O subproceso %s devolveu un código de erro (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Non foi posíbel autenticar algúns paquetes" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "O subproceso %s saíu de xeito inesperado" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalar estes paquetes sen verificación?" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Produciuse un problema ao pechar o arquivo gzip %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Non foi posíbel cambiar o nome de %s a %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Non foi posíbel abrir o ficheiro %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Non foi posíbel abrir o descritor de ficheiro %d" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Non foi posíbel crear o IPC do subproceso" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Teño " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Non foi posíbel executar o compresor " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Rcb:" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lectura, aínda hai %lu para ler pero non queda ningún" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escritura, aínda hai %lu para escribir pero non se puido" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the file %s" -msgstr "Produciuse un problema ao pechar o ficheiro %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Obtivéronse %sB en %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Produciuse un problema ao renomear o ficheiro %s a %s" +msgid " [Working]" +msgstr " [Traballando]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Produciuse un problema ao desligar o ficheiro %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Produciuse un problema ao sincronizar o ficheiro" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Cambio de soporte: introduza o disco etiquetado\n" +" «%s»\n" +"na unidade «%s» e prema Intro\n" -#: apt-pkg/contrib/progress.cc:148 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Erro!" +msgid "No mirror file '%s' found " +msgstr "Non se atopou ningún ficheiro de replica «%s» " -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Feito" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "Can not read mirror file '%s'" +msgstr "Non é posíbel ler o ficheiro de replica «%s»" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Feito" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Non é posíbel facer mmap sobre un ficheiro baleiro" +msgid "No entry found in mirror file '%s'" +msgstr "Non é posíbel ler o ficheiro de replica «%s»" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Non foi posíbel duplicar o descritor de ficheiro %i" +msgid "[Mirror: %s]" +msgstr "[Replica: %s]" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Non foi posíbel facer mmap de %lu bytes" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Non foi posíbel crear a canle IPC ao subproceso" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Non é posíbel pechar mmap" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "A conexión pechouse prematuramente" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Non é posíbel sincronizar mmap" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configuración predeterminada incorrecta!" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Non foi posíbel facer mmap de %lu bytes" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Prema Intro para continuar." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Non foi posíbel truncar o ficheiro" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Quere borrar os ficheiros .deb descargados anteriormente?" -#: 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)" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Dynamic MMap executouse fora do lugar. Incremente o tamaño de APT::Cache-" -"Start. O valor actual é : %lu. (man 5 apt.conf)" +"Ocorreron algúns erros ao desempaquetar, Os paquetes que se instalaron" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "serán configurados, Isto pode dar erros de duplicación" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Non é posíbel aumentar o tamaño de MMap xa que o límite de %lu bytes xa foi " -"acadado." +"ou erros causados por dependencias incumpridas. Isto é normal, só os erros" -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Non é posíbel aumentar o tamaño de MMap xa que o crecemento automático foi " -"desactivado polo usuario." +"que hai enriba desta mensaxe son importantes. Arránxeos e volva a instalar." -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Non é posíbel analizar o punto de montaxe %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Mesturando a información sobre paquetes dispoñíbeis" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Non foi posíbel analizar o CD-ROM" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Chamouse a DropNode nun nodo aínda ligado" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreviatura de tipo «%c» descoñecida" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Non foi posíbel atopar o elemento hash" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Abrindo o ficheiro de configuración %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Non foi posíbel reservar un desvío" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Produciuse un erro interno en AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Produciuse un erro de sintaxe %s:%u: O bloque comeza sen un nome." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Téntase sobrescribir un desvío, %s -> %s e %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Produciuse un erro de sintaxe %s:%u: Etiqueta mal formada" +msgid "Double add of diversion %s -> %s" +msgstr "Desvío %s -> %s engadido dúas veces" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra despois do valor" +msgid "Duplicate conf file %s/%s" +msgstr "Ficheiro de configuración %s/%s duplicado" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Produciuse un erro de sintaxe %s:%u: Só se poden facer directivas no nivel " -"superior" +msgid "The path %s is too long" +msgstr "A ruta %s é longa de máis" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Produciuse un erro de sintaxe %s:%u: Includes aniñados de máis" +msgid "Unpacking %s more than once" +msgstr "Desempaquetando %s máis dunha vez" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Produciuse un erro de sintaxe %s:%u: Incluído de aquí" +msgid "The directory %s is diverted" +msgstr "O directorio %s está desviado" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Produciuse un erro de sintaxe %s:%u: Non se admite a directiva «%s»" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "A ruta do desvío é longa de máis" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Produciuse un erro de sintaxe %s:%u: a directiva «clear» require unha árbore " -"de opción como argumento" +msgid "Failed to stat %s" +msgstr "Non foi posíbel determinar o estado %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra á fin da liña" +msgid "Failed to rename %s to %s" +msgstr "Non foi posíbel cambiar o nome de %s a %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "Non ha ningún chaveiro instalado en %s." +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-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +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:293 +msgid "The path is too long" +msgstr "A ruta é longa de máis" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Non se coñece a opción de liña de ordes «%c» [de %s]." +msgid "Overwrite package match with no version for %s" +msgstr "Coincidencia na sobrescritura sen versión para %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Non se entende a opción de liña de ordes %s" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "O ficheiro %s/%s sobrescribe o do paquete %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "A opción de liña de ordes %s non é booleana" +msgid "Unable to stat %s" +msgstr "Non é posíbel determinar o estado %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "A opción %s precisa dun argumento." +msgid "Failed to write file %s" +msgstr "Non foi posíbel escribir no ficheiro «%s»" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Opción %s: A especificación de elemento de configuración debe ter un =<val>." +msgid "Failed to close file %s" +msgstr "Non foi posíbel pechar o ficheiro %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "A opción %s precisa dun argumento enteiro, non «%s»" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Este non é un arquivo DEB correcto, falta o membro «%s»" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "A opción «%s» é longa de máis" +msgid "Internal error, could not locate member %s" +msgstr "Produciuse un erro interno, non foi posíbel atopar o membro %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ficheiro de control non analizábel" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Sinatura de arquivo incorrecta" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Produciuse un erro ao ler a cabeceira do membro do arquivo" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "O senso %s non se entende, probe «true» ou «false»." +msgid "Invalid archive member header %s" +msgstr "Cabeceira do membro do arquivo incorrecta %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Cabeceira do membro do arquivo incorrecta" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "O arquivo é curto de máis" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Non foi posíbel ler as cabeceiras dos arquivos" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Non foi posíbel crear as canles" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Non foi posíbel executar gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arquivo danado" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "A suma de comprobación do arquivo tar non coincide, está danado" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Operación incorrecta: %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Tipo de cabeceira TAR %u descoñecido, membro %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3601,7 +3605,7 @@ msgstr "Non foi posíbel ler ao calcular o MD5" msgid "Problem unlinking %s" msgstr "Xurdiu un problema ao desligar %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3656,6 +3660,10 @@ msgstr "" " -o=? Estabelece unha opción de configuración; por exemplo, -o dir::cache=/" "tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Produciuse un erro interno, AllUpgrade estragou cousas" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s non é un paquete DEB válido." diff --git a/po/he.po b/po/he.po index b70ae3b34..adc738bec 100644 --- a/po/he.po +++ b/po/he.po @@ -6,10 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.25\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" "POT-Creation-Date: 2010-01-01 19:13+0100\n" "PO-Revision-Date: 2004-06-10 19:58+0300\n" "Last-Translator: Lior Kaplan <webmaster@guides.co.il>\n" +"Language: he\n" "Language-Team: Hebrew\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/po/hu.po b/po/hu.po index b5ce3f95f..70925afaa 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-06-25 17:09+0200\n" -"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n" -"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n" +"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n" +"Language-Team: Hungarian <gnome-hu-list@gnome.org>\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,3237 +21,3241 @@ msgstr "" "X-Poedit-Country: HUNGARY\n" "X-Poedit-Language: Hungarian\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "A(z) „%s” indexfájltípus nem támogatott" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "%s csomag %s verziójának teljesítetlen függősége van:\n" +msgid "Unable to read %s" +msgstr "%s nem olvasható" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Csomagnevek összesen : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Nem sikerült ide váltani: %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Csomagstruktúrák összesen: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s nem érhető el." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normális csomagok: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Teljesen virtuális csomagok: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "A dpkg futtatása" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Egyedi virtuális csomagok: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "A(z) „%s” csomagrendszer nem támogatott" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Vegyes virtuális csomagok: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "A megfelelő csomagrendszertípus nem határozható meg" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Hiányzik: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i rekord kiírva.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Különböző verziók összesen: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i rekord kiírva, %i hiányzó fájllal.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Összes különböző leírás: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i rekord kiírva %i eltérő fájllal\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Függőségek összesen: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Verzió/Fájl kapcsolatok összesen: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "%s hitelesítési rekordja nem található" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Leírás/Fájl kapcsolatok összesen: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "%s ellenőrzőösszege nem megfelelő" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "„Biztosítja” kapcsolatok összesen: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "A(z) %s metódusvezérlő nem található." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Minták összesen: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Függőségiverzió-terület összesen: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "A(z) %s metódus nem indult el megfelelően" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Slack terület összesen: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Helyezze be a(z) „%s” címkéjű lemezt a(z) „%s” meghajtóba, és nyomja meg az " +"Entert." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Nyilvántartott terület összesen: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"A csomaglisták vagy az állapotfájl nem dolgozhatók fel vagy nem nyithatók " +"meg." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "%s csomagfájl nincs szinkronban." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Próbálja futtatni az „apt-get update” parancsot ezen hibák javításához" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nem találhatók csomagok" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "A források listája olvashatatlan." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Legalább egy keresési mintát meg kell adnia" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Üres csomaggyorsítótár" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Ez a parancs elavult. Használja helyette az „apt-mark showauto”-t." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "A csomaggyorsítótár fájl megsérült" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "A csomaggyorsítótár-fájl inkompatibilis verziójú" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "A csomaggyorsítótár-fájl sérült, túl kicsi" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Ez a csomag nem található: %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Ez az APT nem támogatja a(z) „%s” verziórendszert" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Csomagfájlok:" +#: apt-pkg/pkgcache.cc:179 +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" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"A gyorsítótár nincs szinkronban, nem lehet kereszthivatkozni a csomagfájlra" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Függ ettől" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Rögzített csomagok:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Függ ettől (előfüggés)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nem található)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Javasolja" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Telepítve: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Ajánlja" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Jelölt: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Ütközik" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nincs)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Kicseréli" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Csomagrögzítés: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Elavulttá teszi" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Verziótáblázat:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Töri" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s erre: %s lefordítva ekkor: %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Bővíti" -#: cmdline/apt-cache.cc:1749 -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 "" -"Használat: apt-cache [kapcsolók] parancs\n" -" apt-cache [kapcsolók] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [kapcsolók] showsrc pkg1 [pkg2 ...]\n" -"\n" -"Az apt-cache egy alacsony szintű eszköz információk lekérdezésére\n" -"az APT bináris gyorsítótár-fájljaiból\n" -"\n" -"Parancsok: \n" -" gencaches - Felépíti a csomag- és a forrás-gyorsítótárat \n" -" showpkg - Megjeleníti az általános információkat egy csomagról \n" -" showsrc - Megjeleníti a forrásrekordokat\n" -" stats - Alapvető statisztikákat jelenít meg\n" -" dump - A teljes fájlt megjeleníti tömör formában\n" -" dumpavail - Kiír egy elérhető fájlt az stdoutra\n" -" unmet - Megjeleníti a teljesítetlen függőségeket\n" -" search - A csomaglistában keres reguláris kifejezéseket\n" -" show - Megjeleníti a csomag leírását\n" -" depends - Nyers függőségi információt mutat a csomagról\n" -" rdepends - Fordított függőségi információkat jelenít meg a csomagról\n" -" pkgnames - Kilistázza az összes csomag nevét\n" -" dotty - GraphVizhez való csomaggrafikonokat generál\n" -" xvcg - xvcg-hez való csomaggrafikonokat generál\n" -" policy - Megjeleníti a policy beállításokat\n" -"\n" -"Kapcsolók:\n" -" -h Ez a súgó szöveg. \n" -" -p=? A csomag-gyorsítótár.\n" -" -s=? A forrás-gyorsítótár.\n" -" -q Letiltja az állapotjelzőt.\n" -" -i Csak a fontos függőségeket jeleníti meg az unmet parancsnál.\n" -" -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" -"Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további " -"információkért.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "fontos" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Adja meg a lemez nevét, mint például „Debian 5.0.3 1. lemez”" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "szükséges" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Helyezzen be egy lemezt a meghajtóba, és nyomja meg az Entert" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "szabványos" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcionális" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "„%s” csatolása a(z) „%s” könyvtárba meghiúsult" +msgid "Index file type '%s' is not supported" +msgstr "A(z) „%s” indexfájltípus nem támogatott" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex fordítási hiba - %s" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Ismételje meg a folyamatot készlete többi CD-jével is." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "A gyorsítótárnak inkompatibilis verziórendszere van" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Az argumentumok nincsenek párban" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Hiba történt a(z) %s feldolgozása során (%s%d)" -#: cmdline/apt-config.cc:89 -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 "" -"Használat: apt-config [kapcsolók] parancs\n" -"\n" -"Az apt-config egy egyszerű eszköz az APT konfigurációs fájl olvasására\n" -"\n" -"Parancsok:\n" -" shell - Shell mód\n" -" dump - Megmutatja a konfigurációt\n" -"Kapcsolók:\n" -" -h Ez a súgó szöveg\n" -" -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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Az APT által kezelhető csomagnevek száma túllépve." -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Az APT által kezelhető csomagverziók száma túllépve." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Az APT által kezelhető csomagleírások száma túllépve." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "„%s” kiválasztása forráscsomagként „%s” helyett\n" - -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -"A(z) „%2$s” csomag el nem érhető „%1$s” verziójának figyelmen kívül hagyása" +"A(z) %s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása " +"közben" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't find package %s" -msgstr "Az alábbi csomag nem található: %s" +msgid "Couldn't stat source package list %s" +msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s kézi telepítésűre állítva.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Csomaglisták olvasása" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +# FIXME +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "„Biztosítja” kapcsolatok összegyűjtése" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s megjelölve automatikusan telepítettként.\n" +msgid "Unable to write to %s" +msgstr "Nem lehet írni ebbe: %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Ez a parancs elavult. Használja helyette az „apt-mark auto” és az „apt-mark " -"auto” parancsokat." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO hiba a forrás-gyorsítótár mentésekor" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Belső hiba, a problémamegoldó hibát okozott" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "A helyzet elküldése a solvernek" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nem lehet zárolni a letöltési könyvtárat" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Kérés küldése a solvernek" -#: cmdline/apt-get.cc:726 -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" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Felkészülés megoldás fogadására" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Nem található forráscsomag ehhez: %s" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "A külső solver megfelelő hibaüzenet nélkül hibázott" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"MEGJEGYZÉS: a(z) „%s” csomagolása a(z) „%s” verziókövető rendszerben van " -"karbantartva:\n" -"%s\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Külső solver végrehajtása" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Használja a következő parancsot:\n" -"bzr branch %s\n" -"a csomag legújabb (esetleg kiadatlan) frissítéseinek letöltéséhez.\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "sikertelen átnevezés, %s (%s -> %s)." -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "A már letöltött „%s” fájl kihagyása\n" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "A Hash Sum nem megfelelő" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nem határozható meg a szabad hely mennyisége itt: %s" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "A méret nem megfelelő" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "%s érvénytelen művelet" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Nincs elég szabad hely itt: %s" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"A várt „%s” bejegyzés nem található a Release fájlban (Rossz sources.list " +"bejegyzés vagy helytelenül formázott fájl)" -#. 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:891 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Letöltendő forrásadat-mennyiség: %sB/%sB.\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nem található a(z) „%s” ellenőrzőösszege a Release fájlban" -#. 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:896 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Nem érhető el nyilvános kulcs az alábbi kulcsazonosítókhoz:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Letöltendő forrásadat-mennyiség: %sB.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"A Release fájl elavult ehhez: %s (érvénytelen ez óta: %s). A tároló " +"frissítései nem kerülnek alkalmazásra." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "Forrás letöltése: %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nem sikerült néhány archívumot letölteni." +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Hiba történt az aláírás ellenőrzése közben. A tároló nem frissült, és az " +"előző indexfájl lesz használva. GPG hiba: %s: %s\n" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "A letöltés befejeződött a „csak letöltés” módban" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG hiba: %s: %s" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, 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" +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 "" +"Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel " +"kell kijavítani a csomagot. (hiányzó arch. miatt)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "„%s” kibontási parancs nem sikerült.\n" +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:963 +#: apt-pkg/acquire-item.cc:1983 #, 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" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"A csomagindexfájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz." -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "„%s” elkészítési parancs nem sikerült.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "A(z) %s terjesztőblokk nem tartalmaz ujjlenyomatot" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Hiba a gyermekfolyamatnál" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "A(z) %spartial listakönyvtár hiányzik." -#: cmdline/apt-get.cc:1029 -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" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "A(z) %spartial archívumkönyvtár hiányzik." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -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." +msgid "Unable to lock directory %s" +msgstr "%s könyvtár zárolása sikertelen" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, 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" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li/%li fájl letöltése (%s marad)" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "%s has no build depends.\n" -msgstr "Nincs fordítási függősége a következőnek: %s.\n" +msgid "Retrieving file %li of %li" +msgstr "%li/%li fájl letöltése" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Sikertelen letöltés: %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." 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" +"Néhány indexfájlt nem sikerült letölteni. Figyelmen kívül lettek hagyva, " +"vagy régebbiek lettek felhasználva." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Néhány „source” URI-t el kell helyezni a sources.list fájlban" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag nem " -"található" +"A(z) „%s” érték érvénytelen az APT::Default-Release beállításhoz, mert nincs " +"ilyen kiadás a forrásokban" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, 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" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Érvénytelen rekord a(z) %s beállításfájlban, nincs Package fejléc" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "A(z) %s rögzítéstípus nem értelmezhető" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nincs prioritás (vagy nulla) megadva a rögzítéshez" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" 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" +"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)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, c-format +msgid "Could not configure '%s'. " +msgstr "A(z) „%s” beállítása sikertelen" + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"%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" +"Ez a telepítési lépés átmenetileg megköveteli a(z) %s alapvető csomag " +"eltávolítását, ami ütközési/előfüggőségi hurkot okoz. Ez gyakran rossz, de " +"ha tényleg ezt akarja tenni, aktiválja az APT::Force-LoopBreak opciót." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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" +msgid "Line %u too long in source list %s." +msgstr "A(z) %u. sor túl hosszú a(z) %s forráslistában." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM leválasztása...\n" + +#: apt-pkg/cdrom.cc:586 #, 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." +msgid "Using CD-ROM mount point %s\n" +msgstr "%s CD-ROM csatolási pont használata\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Nem sikerült az építési függőségeket feldolgozni" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Várakozás a lemezre...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM csatolása...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Azonosítás... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Változási napló ehhez: %s (%s)" +msgid "Stored label: %s\n" +msgstr "Tárolt címke: %s\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Támogatott modulok:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Indexfájlok keresése a lemezen...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Használat: apt-get [kapcsolók] parancs\n" -" apt-get [kapcsolók] install|remove pkg1 [pkg2 ...]\n" -" apt-get [kapcsolók] source pkg1 [pkg2 ...]\n" -"\n" -"Az apt-get egy egyszerű parancssori felület csomagok letöltéséhez és\n" -"telepítéséhez. A leggyakrabban használt parancsok az update és az install. \n" -"\n" -"Parancsok:\n" -" update - Frissíti a csomaglistákat\n" -" upgrade - Frissítés végrehajtása\n" -" install - Új csomagok telepítése (csomag a libc6 és nem a libc6.deb)\n" -" remove - Csomagok eltávolítása\n" -" autoremove - Automatikusan eltávolítja a nem használt csomagokat \n" -" purge - Eltávolítja és teljesen törli a csomagokat\n" -" source - Forrásarchívumok letöltése\n" -" build-dep - Forráscsomagok építési függőségét konfigurálja\n" -" dist-upgrade - Disztribúciófrissítés, lásd apt-get(8)\n" -" dselect-upgrade - Követi a dselect kijelöléseit\n" -" clean - Törli a letöltött archívumfájlokat\n" -" autoclean - Törli a régi letöltött archívumfájlokat\n" -" check - Ellenőrzi, hogy nincsenek-e törött függőségek\n" -" changelog - Adott csomag változási naplójának letöltése és megjelenítése\n" -" download - Bináris csomag letöltése a jelenlegi mappába\n" -"\n" -"Opciók:\n" -" -h Ez a súgó szöveg.\n" -" -q Naplózható kimenet - nincs folyamatjelző\n" -" -qq Nincs kimenet, kivéve a hibákat\n" -" -d Csak letöltés - NEM telepíti vagy bontja ki az archívokat\n" -" -s Szimulációs mód.\n" -" -y Felteszi, hogy minden kérdésre igen a válasz, és nem kérdez\n" -" -f Próbálja folytatni, akkor is ha a sértetlenségi teszt hibát jelez\n" -" -m Próbálja folytatni, akkor is ha egyes archívumok nem találhatók\n" -" -u Megjeleníti a frissített csomagok listáját is\n" -" -b Megépíti a forráscsomagot miután letöltötte\n" -" -V Részletes verziószámok\n" -" -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" -"Lásd még az apt-get(8), sources.list(5) és apt.conf(5) kézikönyvlapokat " -"további\n" -"információkért és opciókért.\n" -" Ez az APT a SzuperTehén Hatalmával rendelkezik.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"%zu csomagindex, %zu forrásindex, %zu fordításindex és %zu aláírás " +"megtalálva\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Nem találhatók csomagfájlok, lehet hogy ez nem Debian lemez, vagy nem " +"megfelelő az architektúra?" -#: cmdline/apt-mark.cc:68 -#, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s nem jelölhető meg, mivel nincs telepítve.\n" - -#: cmdline/apt-mark.cc:74 -#, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s már be van állítva kézi telepítésűre.\n" - -#: cmdline/apt-mark.cc:76 -#, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s már meg van jelölve automatikusan telepítettként.\n" - -#: cmdline/apt-mark.cc:241 -#, c-format -msgid "%s was already set on hold.\n" -msgstr "%s már be van állítva visszafogásra.\n" - -#: cmdline/apt-mark.cc:243 -#, c-format -msgid "%s was already not hold.\n" -msgstr "%s eddig sem volt visszafogva.\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Nem található a(z) %s, a várakozás után sem" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, c-format -msgid "%s set on hold.\n" -msgstr "%s beállítva visszafogásra.\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Visszafogás törölve ezen: %s.\n" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "A dpkg futtatása sikertelen. Van root jogosultsága?" - -#: cmdline/apt-mark.cc:392 -#, fuzzy -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" -"Használat: apt-mark [kapcsolók] {auto|manual} csom1 [csom2 ...]\n" -"\n" -"Az apt-mark egy egyszerű parancssori felület csomagok megjelölésére\n" -"kézileg vagy automatikusan telepítettként. Képes felsorolni a jelöléseket " -"is.\n" -"\n" -"Parancsok:\n" -" auto -Az adott csomagok megjelölése automatikusan telepítettként\n" -" manual - Az adott csomagok megjelölése kézzel telepítettként\n" -"\n" -"Kapcsolók:\n" -" -h Ez a súgó szöveg.\n" -" -q Naplózható kimenet - nincs folyamatjelző\n" -" -qq Nincs kimenet, kivéve a hibákat\n" -" -s Szimulációs mód. Csak kiírja, mi történne.\n" -" -f auto/kézi megjelölés olvasása/írása az adott fájlból/fájlba\n" -" -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" -"Lásd még az apt-mark(8) és apt.conf(5) kézikönyvlapokat további\n" -"információkért." +msgid "Found label '%s'\n" +msgstr "Talált címke: „%s”\n" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "A név érvénytelen, próbálja újra.\n" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "%s CD-ROM adatbázis nem olvasható" - -#: 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 "" -"Használja az apt-cdrom parancsot a CD felismertetésére. Az apt-get update " -"nem használható új CD-k hozzáadására." - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Hibás CD" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +"This disc is called: \n" +"'%s'\n" msgstr "" -"Nem lehet leválasztani az itt lévő CD-ROM-ot: %s, még használatban lehet." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "A lemez nem található." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "A fájl nem található" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Nem érhető el" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "A módosítási idő beállítása sikertelen" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Érvénytelen URI, helyi URI-k nem kezdődhetnek //-rel" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Bejelentkezés" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nem lehet a partner nevét megállapítani" +"A lemez neve: \n" +"„%s”\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nem lehet a helyi nevet megállapítani" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Csomaglisták másolása..." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "A kiszolgáló visszautasította a kapcsolatot: %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Új forráslista írása\n" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "Hibás USER, a kiszolgáló üzenete: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "A lemezhez tartozó forráslistabejegyzések a következők:\n" -#: methods/ftp.cc:232 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Hibás PASS, a kiszolgáló üzenete: %s" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Meg lett adva proxy kiszolgáló, de nincs bejelentkezési parancsfájl és az " -"Acquire::ftp::ProxyLogin üres." - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"A bejelentkezési parancsfájl „%s” parancsa sikertelen, a kiszolgáló üzenete: " -"%s" - -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "Hibás TYPE, a kiszolgáló üzenete: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Időtúllépés a kapcsolatban" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "A kiszolgáló lezárta a kapcsolatot" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Olvasási hiba" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "A válasz túlcsordította a puffert." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokollhiba" - -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Írási hiba" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nem lehet létrehozni a foglalatot" +"A(z) %s csomagot újra kell telepíteni, de nem található hozzá archívum." -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Nem lehet kapcsolódni az adatfoglalathoz, a kapcsolat túllépte az időkorlátot" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Sikertelen" +"Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " +"csomagok okozhatják." -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nem lehet kapcsolódni a passzív foglalathoz." +#: apt-pkg/algorithms.cc:1088 +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." -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "A getaddrinfo nem talált figyelőfoglalatot" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Függőségi fa építése" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nem lehet összekapcsolódni a foglalattal" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Lehetséges verziók" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nem lehet figyelni a foglalaton" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Függőséggenerálás" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nem lehet megállapítani a foglalat nevét" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Állapotinformációk olvasása" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nem lehet PORT parancsot küldeni" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "%s állapotfájl megnyitása sikertelen" -#: methods/ftp.cc:802 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ismeretlen címcsalád: %u (AF_*)" +msgid "Failed to write temporary StateFile %s" +msgstr "%s átmeneti állapotfájl írása sikertelen" -#: methods/ftp.cc:811 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Hibás EPRT, a kiszolgáló üzenete: %s" +msgid "Unable to parse package file %s (1)" +msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (1)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Az adatfoglalathoz kapcsolódás túllépte az időkorlátot" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (2)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nem lehet elfogadni a kapcsolatot" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "„%s” kiadás nem található ehhez: „%s”" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Probléma a fájl hash értékének meghatározásakor" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "„%s” verzió nem található ehhez: „%s”" -#: methods/ftp.cc:890 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: „%s”" +msgid "Unable to locate package %s" +msgstr "Ez a csomag nem található: %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Az adatfoglalat túllépte az időkorlátot" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "„%s” feladat nem található" -#: methods/ftp.cc:935 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Az adatátvitel sikertelen, a kiszolgáló üzenete: „%s”" +msgid "Couldn't find any package by regex '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Lekérdezés" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nem lehet meghívni " +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "„%s” csomagból nem választható verzió, mert teljesen virtuális" -#: methods/connect.cc:76 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Csatlakozás: %s (%s)" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"„%s” csomagból nem választható sem telepített, sem kiadásra jelölt verzió, " +"mert egyikkel sem rendelkezik" -#: methods/connect.cc:87 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"„%s” csomag legújabb verziója nem választható ki, mert teljesen virtuális" -#: methods/connect.cc:94 +#: apt-pkg/cacheset.cc:655 #, 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)" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"„%s” csomag kiadásra jelölt verziója nem választható ki, mert nincs jelöltje" -#: methods/connect.cc:100 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)." +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"„%s” csomag telepített verziója nem választható ki, mert nincs telepítve" -#: methods/connect.cc:108 +#: apt-pkg/indexrecords.cc:78 #, 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)" +msgid "Unable to parse Release file %s" +msgstr "A(z) %s Release fájl nem dolgozható fel" -#: methods/connect.cc:126 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nem lehet kapcsolódni ehhez: %s: %s (%s)." +msgid "No sections in Release file %s" +msgstr "A(z) %s Release fájl nem tartalmaz szakaszokat" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Connecting to %s" -msgstr "Kapcsolódás: %s" +msgid "No Hash entry in Release file %s" +msgstr "Nincs Hash bejegyzés a(z) %s Release fájlban" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/indexrecords.cc:130 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nem lehet feloldani a következőt: „%s”" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Érvénytelen „Valid-Until” bejegyzés a(z) %s Release fájlban" -#: methods/connect.cc:205 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Átmeneti hiba „%s” feloldása közben" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Érvénytelen „Date” bejegyzés a(z) %s Release fájlban" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] " +"feldolgozhatatlan)" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nem lehet csatlakozni ehhez: %s:%s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Belső hiba: Jó aláírás, de nem állapítható meg a kulcs ujjlenyomata." +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] túl " +"rövid)" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Legalább egy aláírás érvénytelen." +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " +"érvényes hozzárendelés)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -"Nem indítható el a „gpgv” az aláírás ellenőrzéséhez (telepítve van a gpgv?)" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " +"tartalmaz kulcsot)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] %s kulcsnak " +"nincs értéke)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Ismeretlen gpgv futtatási hiba" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Az alábbi aláírások érvénytelenek voltak:\n" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist)" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Az alábbi aláírások nem ellenőrizhetők, mert a nyilvános kulcs nem érhető " -"el:\n" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Az üres fájlok biztosan nem érvényes csomagok" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (Abszolút dist)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Hiba a fájl írásakor" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist feldolgozás)" -#: methods/http.cc:523 -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" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s megnyitása" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Hiba a kiszolgálóról olvasáskor" +#: apt-pkg/sourcelist.cc:371 +#, 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)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Hiba a fájl írásakor" +#: apt-pkg/sourcelist.cc:375 +#, 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" + +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" + +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "%s telepítése" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s konfigurálása" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "A kiválasztás sikertelen" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s eltávolítása" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Időtúllépés a kapcsolatban" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s teljes eltávolítása" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Hiba a kimeneti fájl írásakor" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "„%s” eltűnése feljegyezve" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Várakozás a fejlécekre" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "A(z) %s telepítés utáni trigger futtatása" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Rossz fejlécsor" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "A(z) „%s” könyvtár hiányzik" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "A HTTP-kiszolgáló érvénytelen válaszfejlécet küldött" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "A(z) „%s” fájl megnyitása sikertelen" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "A HTTP-kiszolgáló érvénytelen Content-Length fejlécet küldött" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s előkészítése" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "A HTTP-kiszolgáló érvénytelen Content-Range fejlécet küldött" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "%s kicsomagolása" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "A HTTP-kiszolgáló tartománytámogatása sérült" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "%s konfigurálásának előkészítése" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ismeretlen dátumformátum" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s telepítve" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Rossz fejlécadatok" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "%s eltávolításának előkészítése" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Sikertelen kapcsolódás" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s eltávolítva" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Belső hiba" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "%s teljes eltávolításának előkészítése" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Frissítés kiszámítása... " +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s teljesen eltávolítva" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Belső hiba, az AllUpgrade megsértett valamit" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Kész" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nem lehet írni ebbe: %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Függőségek javítása..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " sikertelen." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nem lehet javítani a függőségeket" - -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét" +msgid "Waited for %s but it wasn't there" +msgstr "Nem található a(z) %s, a várakozás után sem" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Kész" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "A művelet megszakadt, mielőtt befejeződhetett volna" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Próbálja futtatni az „apt-get -f install” parancsot ezek javításához." +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Nem került írásra apport jelentés, mivel a MaxReports már elérve" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Teljesítetlen függőségek. Próbálja a -f használatával." +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "függőségi hibák - a csomag beállítatlan maradt" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" +"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint ez a hiba " +"egy korábbi hiba következménye." -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Telepítve]" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint megtelt a " +"lemez" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Telepítve]" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Nem került kiírásra apport jelentés, mivel a hibaüzenet memóriaelfogyási " +"hibát jelez" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" +"Nem került kiírásra apport jelentés, mert a hibaüzenet a helyi rendszeren " +"lévő hibát jelez" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Telepítve]" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Nem került kiírásra apport jelentés, mert a hibaüzenet dpkg I/O hibát jelez" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Telepítve]" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Az adminisztrációs könyvtár (%s) nem zárolható, lehet hogy másik folyamat " +"használja?" -#: apt-private/private-output.cc:248 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "[upgradable from: %s]" +msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" +"Az adminisztrációs könyvtár (%s) nem zárolható, rendszergazdaként próbálja?" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" +"A dpkg megszakadt, saját kezűleg kell futtatnia a(z) „%s” parancsot a " +"probléma megoldásához. " -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Nincs zárolva" -#: apt-private/private-output.cc:442 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "but %s is installed" -msgstr "de %s van telepítve" +msgid "%lid %lih %limin %lis" +msgstr "%lin %lió %lip %limp" -#: apt-private/private-output.cc:444 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "but %s is to be installed" -msgstr "de csak %s telepíthető" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "de az nem telepíthető" - -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "de az egy virtuális csomag" +msgid "%lih %limin %lis" +msgstr "%lió %lip %limp" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "de az nincs telepítve" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%lip %limp" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "de az nincs telepítésre megjelölve" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%limp" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " vagy" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "%s kiválasztás nem található" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Az alábbi ÚJ csomagok lesznek telepítve:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Nem lesz zárolva a(z) „%s” csak olvasható zárolási fájl" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Az alábbi csomagok el lesznek TÁVOLÍTVA:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "%s zárolási fájl nem nyitható meg" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Az alábbi csomagok vissza lesznek tartva:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Nem lesz zárolva a(z) %s NFS-csatolású zárolási fájl" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Az alábbi csomagok frissítve lesznek:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Nem sikerült zárolni: %s" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "A fájlok listáját nem lehetett létrehozni, mert „%s” nem könyvtár" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Az alábbi visszafogott csomagokat cserélem:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" +"„%s” figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nem szabályos fájl" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "%s (due to %s) " -msgstr "%s (%s miatt) " +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" +"„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nincs " +"fájlkiterjesztése" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"FIGYELMEZTETÉS: Az alábbi alapvető csomagok el lesznek távolítva.\n" -"NE tegye ezt, hacsak nem tudja pontosan, mit csinál!" +"„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert érvénytelen " +"fájlkiterjesztése van" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu frissített, %lu újonnan telepített, " +msgid "Sub-process %s received a segmentation fault." +msgstr "%s alfolyamat szegmentálási hibát okozott." -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu újratelepítendő, " +msgid "Sub-process %s received signal %u." +msgstr "A(z) %s alfolyamat %u számú szignált kapott." -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%lu downgraded, " -msgstr "%lu visszafejlesztendő, " +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s alfolyamat hibakóddal tért vissza (%u)" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu eltávolítandó és %lu nem frissített.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "%s alfolyamat váratlanul kilépett" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Írási hiba" + +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nincs teljesen telepítve/eltávolítva.\n" +msgid "Problem closing the gzip file %s" +msgstr "Hiba a(z) %s gzip fájl bezárásakor" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[I/n]" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nem lehet megnyitni a(z) %s fájlt" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[i/N]" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nem lehet megnyitni a(z) %d fájlleírót" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "I" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nem sikerült az alfolyamat IPC-t létrehozni" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nem sikerült elindítani a tömörítőt " -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Olvasási hiba" + +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "Regex compilation error - %s" -msgstr "Regex fordítási hiba - %s" +msgid "read, still have %llu to read but none left" +msgstr "olvasás, még kellene %llu, de már az összes elfogyott" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Az update parancsnak nincsenek argumentumai" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "írás, még kiírandó %llu, de ez nem lehetséges" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Problem closing the file %s" +msgstr "Hiba a(z) %s fájl bezárásakor" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Problem renaming the file %s to %s" +msgstr "Hiba a(z) %s fájl átnevezésekor erre: %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Hiba a(z) %s fájl törlésekor" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Belső hiba, az InstallPackages törött csomagokkal lett meghívva!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Hiba a fájl szinkronizálásakor" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Csomagokat kellene eltávolítani, de az eltávolítás nem engedélyezett." +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Hiba!" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Belső hiba, a rendezés nem fejeződött be" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Kész" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "A méretek nem egyeznek, írjon az apt@packages.debian.org címre" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Letöltendő adatmennyiség: %sB/%sB.\n" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Kész" -#. 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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Letöltendő adatmennyiség: %sB.\n" +# FIXME +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nem lehet mmap-olni egy üres fájlt" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "A művelet után %sB lemezterület kerül felhasználásra.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nem lehetett kettőzni a(z) %i fájlleírót" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "A művelet után %sB lemezterület szabadul fel.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nem sikerült %llu bájtot mmap-olni" -#: apt-private/private-install.cc:199 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Nincs elég szabad hely itt: %s." +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nem lehet bezárni az mmapot" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Problémák vannak, és a -y kapcsolót használta --force-yes nélkül" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nem lehet szinkronizálni az mmapot" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -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." +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nem sikerült %lu bájtot mmap-olni" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Igen, tedd amit mondok!" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "A fájl csonkítása meghiúsult" + +#: 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 "" +"A dinamikus MMap helye elfogyott. Növelje az APT::Cache-Start méretét. A " +"jelenlegi érték: %lu. (lásd: man 5 apt.conf)" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Ártalmasnak tűnő műveletet készül végrehajtani.\n" -"A folytatáshoz írja be ezt a mondatot: „%s”\n" -" ?] " - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Megszakítva." - -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Folytatni akarja?" - -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Néhány fájlt nem sikerült letölteni" +"Nem lehet növelni az MMap méretét, mert a(z) %lu bájt korlátot már elérte." -#: apt-private/private-install.cc:319 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Unable to increase size of the MMap as automatic growing is disabled by user." 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." - -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "A --fix-missing és az adathordozó-csere jelenleg nem támogatott" - -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Nem lehet javítani a hiányzó csomagokat." - -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Telepítés megszakítása." +"Nem lehet növelni az MMap méretét, mert a felhasználó letiltotta az " +"automatikus emelést." -#: apt-private/private-install.cc:365 -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] "" -"A következő csomag eltűnt a rendszerből, mivel\n" -"az összes fájlt más csomagok fölülírták:" -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:" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "%s csatolási pont nem érhető el" -#: apt-private/private-install.cc:369 -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." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nem sikerült elérni a CD-ROM-ot." -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nem kellene semmit törölni, az AutoRemover nem indítható" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ismeretlen típusrövidítés: „%c”" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Úgy tűnik, az AutoRemover hibát okozott, ez nem történhetne meg.\n" -"Küldjön hibajelentést az apt csomaghoz." +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "%s konfigurációs fájl megnyitása" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Az alábbi információk segíthetnek megoldani a problémát:" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdődik." -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Belső hiba, az AutoRemover sérült" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Szintaktikai hiba %s: %u: rosszul formázott címke" -#: apt-private/private-install.cc:512 -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 következő csomag automatikusan lett telepítve, és már nincs rá szükség:" -msgstr[1] "" -"A következő csomagok automatikusan lettek telepítve, és már nincs rájuk " -"szükség:" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Szintaktikai hiba %s: %u: fölösleges szemét az érték után" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:877 #, 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 csomag automatikusan lett telepítve, és már nincs rá szükség.\n" -msgstr[1] "" -"%lu csomag automatikusan lett telepítve, és már nincs rájuk szükség.\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Szintaktikai hiba %s: %u: Csak legfelső szinten használhatók előírások" -#: apt-private/private-install.cc:518 -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." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include" -#: apt-private/private-install.cc:612 -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:" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -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!)." +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Szintaktikai hiba %s:%u: „%s” nem támogatott előírás" -#: apt-private/private-install.cc:628 -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." +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Néhány csomagot nem lehetett telepíteni. Ez azt jelentheti, hogy\n" -"egy lehetetlen állapotot kért, vagy ha az unstable disztribúciót\n" -"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." +"Szintaktikai hiba %s:%u: a törlési parancs egy beállítási fát vár " +"argumentumként" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Törött csomagok" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Szintaktikai hiba %s: %u: fölösleges szemét a fájl végén" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Az alábbi extra csomagok kerülnek telepítésre:" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Nincs kulcstartó telepítve ide: %s." -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Javasolt csomagok:" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "A(z) „%c” parancssori kapcsoló [a következőből: %s] ismeretlen." -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Ajánlott csomagok:" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "%s parancssori kapcsoló értelmezhetetlen" -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s kihagyása, ez már telepítve van, és a frissítés nincs beállítva.\n" +msgid "Command line option %s is not boolean" +msgstr "%s parancssori kapcsoló nem logikai" -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "„%s” kihagyása, nincs telepítve, és csak frissítések lettek kérve.\n" +msgid "Option %s requires an argument." +msgstr "%s kapcsolóhoz argumentum szükséges." -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s újratelepítése nem lehetséges, mert nem lehet letölteni.\n" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"%s kapcsoló: a konfigurációs elem megadásához szükséges egy =<érték> rész." -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s már a legújabb verzió.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s kapcsoló egész, és nem „%s” típusú argumentumot követel meg" -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”\n" +msgid "Option '%s' is too long" +msgstr "Túl hosszú „%s” kapcsoló" -#: apt-private/private-install.cc:889 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”, a(z) „%s” miatt\n" +msgid "Sense %s is not understood, try true or false." +msgstr "%s jelentés nem értelmezhető, próbálja a true vagy false értékeket." -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"A(z) „%s” csomag nincs telepítve, így nem lett törölve. Erre gondolt: „%s”?\n" +msgid "Invalid operation %s" +msgstr "%s érvénytelen művelet" -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "A(z) „%s” csomag nincs telepítve, így nem lett törölve\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s csomag %s verziójának teljesítetlen függősége van:\n" -#: apt-private/private-main.cc:32 -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 "" -"NE FELEDJE: Ez csak szimuláció!\n" -" Az apt-get rendszergazdai jogokat igényel a tényleges végrehajtáshoz.\n" -" Ne feledje, hogy a zárolás is ki van kapcsolva,\n" -" így ne számítson a jelenlegi helyzet valósságára!" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Csomagnevek összesen : " + +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Csomagstruktúrák összesen: " + +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normális csomagok: " + +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Teljesen virtuális csomagok: " + +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Egyedi virtuális csomagok: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "FIGYELMEZTETÉS: Az alábbi csomagok nem hitelesíthetők!" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Vegyes virtuális csomagok: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "A hitelesítési figyelmeztetés felülbírálva.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Hiányzik: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Néhány csomag nem hitelesíthető" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Különböző verziók összesen: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Valóban ellenőrzés nélkül telepíti a csomagokat?" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Összes különböző leírás: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Sikertelen letöltés: %s %s\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Függőségek összesen: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "„%s” átnevezése sikertelen erre: %s" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Verzió/Fájl kapcsolatok összesen: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Leírás/Fájl kapcsolatok összesen: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "„Biztosítja” kapcsolatok összesen: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Találat " +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Minták összesen: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Letöltés:" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Függőségiverzió-terület összesen: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Mellőz " +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Slack terület összesen: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Hiba " +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Nyilvántartott terület összesen: " -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Letöltve %sB %s alatt (%sB/s)\n" +msgid "Package file %s is out of sync." +msgstr "%s csomagfájl nincs szinkronban." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Folyamatban]" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nem találhatók csomagok" -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Helyezze be a(z)\n" -" „%s”\n" -"címkéjű lemezt a(z) %s meghajtóba, és nyomja meg az Entert\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Legalább egy keresési mintát meg kell adnia" -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "%s nem olvasható" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Ez a parancs elavult. Használja helyette az „apt-mark showauto”-t." -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Nem sikerült ide váltani: %s" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Csomagfájlok:" -#. 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 "Nem található a(z) „%s” tükörfájl " +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"A gyorsítótár nincs szinkronban, nem lehet kereszthivatkozni a csomagfájlra" -#. 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 "A(z) „%s” tükörfájl nem olvasható" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Rögzített csomagok:" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "A(z) „%s” tükörfájl nem olvasható" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nem található)" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Tükör: %s]" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Telepítve: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Nem sikerült IPC-adatcsatornát létrehozni az alfolyamathoz" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Jelölt: " -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "A kapcsolat idő előtt lezárult" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nincs)" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Hibás alapértelmezett beállítás!" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Csomagrögzítés: " -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Nyomja meg az Entert a folytatáshoz." +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Verziótáblázat:" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Törli a korábban letöltött .deb fájlokat?" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s erre: %s lefordítva ekkor: %s %s\n" + +#: cmdline/apt-cache.cc:1749 +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 "" +"Használat: apt-cache [kapcsolók] parancs\n" +" apt-cache [kapcsolók] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [kapcsolók] showsrc pkg1 [pkg2 ...]\n" +"\n" +"Az apt-cache egy alacsony szintű eszköz információk lekérdezésére\n" +"az APT bináris gyorsítótár-fájljaiból\n" +"\n" +"Parancsok: \n" +" gencaches - Felépíti a csomag- és a forrás-gyorsítótárat \n" +" showpkg - Megjeleníti az általános információkat egy csomagról \n" +" showsrc - Megjeleníti a forrásrekordokat\n" +" stats - Alapvető statisztikákat jelenít meg\n" +" dump - A teljes fájlt megjeleníti tömör formában\n" +" dumpavail - Kiír egy elérhető fájlt az stdoutra\n" +" unmet - Megjeleníti a teljesítetlen függőségeket\n" +" search - A csomaglistában keres reguláris kifejezéseket\n" +" show - Megjeleníti a csomag leírását\n" +" depends - Nyers függőségi információt mutat a csomagról\n" +" rdepends - Fordított függőségi információkat jelenít meg a csomagról\n" +" pkgnames - Kilistázza az összes csomag nevét\n" +" dotty - GraphVizhez való csomaggrafikonokat generál\n" +" xvcg - xvcg-hez való csomaggrafikonokat generál\n" +" policy - Megjeleníti a policy beállításokat\n" +"\n" +"Kapcsolók:\n" +" -h Ez a súgó szöveg. \n" +" -p=? A csomag-gyorsítótár.\n" +" -s=? A forrás-gyorsítótár.\n" +" -q Letiltja az állapotjelzőt.\n" +" -i Csak a fontos függőségeket jeleníti meg az unmet parancsnál.\n" +" -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" +"Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további " +"információkért.\n" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Hiba történt a kicsomagolás során. A telepített csomagok" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Adja meg a lemez nevét, mint például „Debian 5.0.3 1. lemez”" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "beállításra kerülnek. Ez többszörös" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Helyezzen be egy lemezt a meghajtóba, és nyomja meg az Entert" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"vagy hiányzó függőségek miatti hibákat okozhat. Ez így van rendben, csak az " -"ezen üzenet" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "„%s” csatolása a(z) „%s” könyvtárba meghiúsult" -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "előtti hibák fontosak. Javítsa azokat, és futtassa az [I]nstallt újra" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Elérhető információk egyesítése" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "A DropNode hívása egy még mindig linkelt node-ra történt" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "A hash elem nem található!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nem lehet eltérítést lefoglalni" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Belső hiba az AddDiversion hívásban" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Kísérlet eltérítés felülírására: %s -> %s és %s/%s" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Ismételje meg a folyamatot készlete többi CD-jével is." -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "A(z) %s -> %s eltérítés hozzáadásának duplázása" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Az argumentumok nincsenek párban" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dupla %s/%s konfigurációs fájl" +#: cmdline/apt-config.cc:89 +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 "" +"Használat: apt-config [kapcsolók] parancs\n" +"\n" +"Az apt-config egy egyszerű eszköz az APT konfigurációs fájl olvasására\n" +"\n" +"Parancsok:\n" +" shell - Shell mód\n" +" dump - Megmutatja a konfigurációt\n" +"Kapcsolók:\n" +" -h Ez a súgó szöveg\n" +" -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" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "A(z) %s útvonal túl hosszú" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "A(z) %s többszöri kicsomagolása" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "A(z) %s könyvtár eltérítve" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:367 #, 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" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "„%s” kiválasztása forráscsomagként „%s” helyett\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Az eltérített útvonal túl hosszú" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find 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" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Failed to stat %s" -msgstr "%s elérése sikertelen" +msgid "Couldn't find package %s" +msgstr "Az alábbi csomag nem található: %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Failed to rename %s to %s" -msgstr "„%s” átnevezése sikertelen erre: %s" +msgid "%s set to manually installed.\n" +msgstr "%s kézi telepítésűre állítva.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, 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" +msgid "%s set to automatically installed.\n" +msgstr "%s megjelölve automatikusan telepítettként.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Nem sikerült a node helyét megtalálni a hashtárolóban" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Ez a parancs elavult. Használja helyette az „apt-mark auto” és az „apt-mark " +"auto” parancsokat." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Az útvonal túl hosszú" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Belső hiba, a problémamegoldó hibát okozott" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Csomagtalálat felülírása %s verziója nélkül" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nem lehet zárolni a letöltési könyvtárat" -#: apt-inst/extract.cc:438 -#, 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" +#: cmdline/apt-get.cc:726 +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" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Unable to stat %s" -msgstr "%s nem érhető el" +msgid "Unable to find a source package for %s" +msgstr "Nem található forráscsomag ehhez: %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Failed to write file %s" -msgstr "A(z) %s fájl írása sikertelen" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"MEGJEGYZÉS: a(z) „%s” csomagolása a(z) „%s” verziókövető rendszerben van " +"karbantartva:\n" +"%s\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Failed to close file %s" -msgstr "A(z) %s fájl bezárása sikertelen" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Használja a következő parancsot:\n" +"bzr branch %s\n" +"a csomag legújabb (esetleg kiadatlan) frissítéseinek letöltéséhez.\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:843 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Ez nem egy érvényes DEB archívum, hiányzik a(z) „%s” tag" +msgid "Skipping already downloaded file '%s'\n" +msgstr "A már letöltött „%s” fájl kihagyása\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Belső hiba, %s tag nem található" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Értelmezhetetlen control fájl" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Érvénytelen archívum-aláírás" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Hiba az archívumtag-fejléc olvasásakor" +msgid "Couldn't determine free space in %s" +msgstr "Nem határozható meg a szabad hely mennyisége itt: %s" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Invalid archive member header %s" -msgstr "Érvénytelen archívumtag-fejléc: %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Érvénytelen archívumtag-fejléc" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Az archívum túl rövid" +msgid "You don't have enough free space in %s" +msgstr "Nincs elég szabad hely itt: %s" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Nem sikerült olvasni az archívumfejléceket" +#. 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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Letöltendő forrásadat-mennyiség: %sB/%sB.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Nem sikerült adatcsatornákat létrehozni" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Letöltendő forrásadat-mennyiség: %sB.\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Nem sikerült a gzipet futtatni " +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Forrás letöltése: %s\n" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Hibás archívum" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nem sikerült néhány archívumot letölteni." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar ellenőrzőösszeg nem egyezik, az archívum megsérült" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "A letöltés befejeződött a „csak letöltés” módban" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Ismeretlen a(z) %u TAR fejléctípus, %s tag" +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" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to stat %s." -msgstr "%s nem érhető el." +msgid "Unpack command '%s' failed.\n" +msgstr "„%s” kibontási parancs nem sikerült.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Progress: [%3i%%]" +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:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "„%s” elkészítési parancs nem sikerült.\n" + +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Hiba a gyermekfolyamatnál" + +#: cmdline/apt-get.cc:1029 +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" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "A dpkg futtatása" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +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." -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "A(z) „%s” csomagrendszer nem támogatott" +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" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "A megfelelő csomagrendszertípus nem határozható meg" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "Nincs fordítási függősége a következőnek: %s.\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Wrote %i records.\n" -msgstr "%i rekord kiírva.\n" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +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" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i rekord kiírva, %i hiányzó fájllal.\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag nem " +"található" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i rekord kiírva %i eltérő fájllal\n" +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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1351 #, 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" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +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" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "%s hitelesítési rekordja nem található" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +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" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Hash mismatch for: %s" -msgstr "%s ellenőrzőösszege nem megfelelő" +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" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "The method driver %s could not be found." -msgstr "A(z) %s metódusvezérlő nem található." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s építési függőségei nem elégíthetők ki." -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Nem sikerült az építési függőségeket feldolgozni" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Method %s did not start correctly" -msgstr "A(z) %s metódus nem indult el megfelelően" +msgid "Changelog for %s (%s)" +msgstr "Változási napló ehhez: %s (%s)" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Támogatott modulok:" + +#: cmdline/apt-get.cc:1632 +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 "" -"Helyezze be a(z) „%s” címkéjű lemezt a(z) „%s” meghajtóba, és nyomja meg az " -"Entert." +"Használat: apt-get [kapcsolók] parancs\n" +" apt-get [kapcsolók] install|remove pkg1 [pkg2 ...]\n" +" apt-get [kapcsolók] source pkg1 [pkg2 ...]\n" +"\n" +"Az apt-get egy egyszerű parancssori felület csomagok letöltéséhez és\n" +"telepítéséhez. A leggyakrabban használt parancsok az update és az install. \n" +"\n" +"Parancsok:\n" +" update - Frissíti a csomaglistákat\n" +" upgrade - Frissítés végrehajtása\n" +" install - Új csomagok telepítése (csomag a libc6 és nem a libc6.deb)\n" +" remove - Csomagok eltávolítása\n" +" autoremove - Automatikusan eltávolítja a nem használt csomagokat \n" +" purge - Eltávolítja és teljesen törli a csomagokat\n" +" source - Forrásarchívumok letöltése\n" +" build-dep - Forráscsomagok építési függőségét konfigurálja\n" +" dist-upgrade - Disztribúciófrissítés, lásd apt-get(8)\n" +" dselect-upgrade - Követi a dselect kijelöléseit\n" +" clean - Törli a letöltött archívumfájlokat\n" +" autoclean - Törli a régi letöltött archívumfájlokat\n" +" check - Ellenőrzi, hogy nincsenek-e törött függőségek\n" +" changelog - Adott csomag változási naplójának letöltése és megjelenítése\n" +" download - Bináris csomag letöltése a jelenlegi mappába\n" +"\n" +"Opciók:\n" +" -h Ez a súgó szöveg.\n" +" -q Naplózható kimenet - nincs folyamatjelző\n" +" -qq Nincs kimenet, kivéve a hibákat\n" +" -d Csak letöltés - NEM telepíti vagy bontja ki az archívokat\n" +" -s Szimulációs mód.\n" +" -y Felteszi, hogy minden kérdésre igen a válasz, és nem kérdez\n" +" -f Próbálja folytatni, akkor is ha a sértetlenségi teszt hibát jelez\n" +" -m Próbálja folytatni, akkor is ha egyes archívumok nem találhatók\n" +" -u Megjeleníti a frissített csomagok listáját is\n" +" -b Megépíti a forráscsomagot miután letöltötte\n" +" -V Részletes verziószámok\n" +" -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" +"Lásd még az apt-get(8), sources.list(5) és apt.conf(5) kézikönyvlapokat " +"további\n" +"információkért és opciókért.\n" +" Ez az APT a SzuperTehén Hatalmával rendelkezik.\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" msgstr "" -"A csomaglisták vagy az állapotfájl nem dolgozhatók fel vagy nem nyithatók " -"meg." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Próbálja futtatni az „apt-get update” parancsot ezen hibák javításához" +"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "A források listája olvashatatlan." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Üres csomaggyorsítótár" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "A csomaggyorsítótár fájl megsérült" +#: cmdline/apt-mark.cc:68 +#, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s nem jelölhető meg, mivel nincs telepítve.\n" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "A csomaggyorsítótár-fájl inkompatibilis verziójú" +#: cmdline/apt-mark.cc:74 +#, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s már be van állítva kézi telepítésűre.\n" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "A csomaggyorsítótár-fájl sérült, túl kicsi" +#: cmdline/apt-mark.cc:76 +#, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s már meg van jelölve automatikusan telepítettként.\n" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ez az APT nem támogatja a(z) „%s” verziórendszert" +msgid "%s was already set on hold.\n" +msgstr "%s már be van állítva visszafogásra.\n" -#: apt-pkg/pkgcache.cc:179 -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" +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" +msgstr "%s eddig sem volt visszafogva.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Függ ettől" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, c-format +msgid "%s set on hold.\n" +msgstr "%s beállítva visszafogásra.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Függ ettől (előfüggés)" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, c-format +msgid "Canceled hold on %s.\n" +msgstr "Visszafogás törölve ezen: %s.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Javasolja" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "A dpkg futtatása sikertelen. Van root jogosultsága?" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Ajánlja" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Használat: apt-mark [kapcsolók] {auto|manual} csom1 [csom2 ...]\n" +"\n" +"Az apt-mark egy egyszerű parancssori felület csomagok megjelölésére\n" +"kézileg vagy automatikusan telepítettként. Képes felsorolni a jelöléseket " +"is.\n" +"\n" +"Parancsok:\n" +" auto -Az adott csomagok megjelölése automatikusan telepítettként\n" +" manual - Az adott csomagok megjelölése kézzel telepítettként\n" +"\n" +"Kapcsolók:\n" +" -h Ez a súgó szöveg.\n" +" -q Naplózható kimenet - nincs folyamatjelző\n" +" -qq Nincs kimenet, kivéve a hibákat\n" +" -s Szimulációs mód. Csak kiírja, mi történne.\n" +" -f auto/kézi megjelölés olvasása/írása az adott fájlból/fájlba\n" +" -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" +"Lásd még az apt-mark(8) és apt.conf(5) kézikönyvlapokat további\n" +"információkért." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Ütközik" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Kicseréli" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "%s CD-ROM adatbázis nem olvasható" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Elavulttá teszi" +#: 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 "" +"Használja az apt-cdrom parancsot a CD felismertetésére. Az apt-get update " +"nem használható új CD-k hozzáadására." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Töri" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Hibás CD" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Bővíti" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Nem lehet leválasztani az itt lévő CD-ROM-ot: %s, még használatban lehet." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "fontos" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "A lemez nem található." -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "szükséges" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "A fájl nem található" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "szabványos" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Nem érhető el" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcionális" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "A módosítási idő beállítása sikertelen" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Érvénytelen URI, helyi URI-k nem kezdődhetnek //-rel" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "A(z) „%s” indexfájltípus nem támogatott" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Bejelentkezés" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "A gyorsítótárnak inkompatibilis verziórendszere van" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nem lehet a partner nevét megállapítani" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Hiba történt a(z) %s feldolgozása során (%s%d)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nem lehet a helyi nevet megállapítani" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Az APT által kezelhető csomagnevek száma túllépve." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "A kiszolgáló visszautasította a kapcsolatot: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Az APT által kezelhető csomagverziók száma túllépve." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Hibás USER, a kiszolgáló üzenete: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Az APT által kezelhető csomagleírások száma túllépve." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Hibás PASS, a kiszolgáló üzenete: %s" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Meg lett adva proxy kiszolgáló, de nincs bejelentkezési parancsfájl és az " +"Acquire::ftp::ProxyLogin üres." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, c-format -msgid "Package %s %s was not found while processing file dependencies" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -"A(z) %s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása " -"közben" +"A bejelentkezési parancsfájl „%s” parancsa sikertelen, a kiszolgáló üzenete: " +"%s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" +msgid "TYPE failed, server said: %s" +msgstr "Hibás TYPE, a kiszolgáló üzenete: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Csomaglisták olvasása" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Időtúllépés a kapcsolatban" -# FIXME -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "„Biztosítja” kapcsolatok összegyűjtése" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "A kiszolgáló lezárta a kapcsolatot" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Nem lehet írni ebbe: %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "A válasz túlcsordította a puffert." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO hiba a forrás-gyorsítótár mentésekor" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokollhiba" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "A helyzet elküldése a solvernek" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nem lehet létrehozni a foglalatot" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Kérés küldése a solvernek" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Nem lehet kapcsolódni az adatfoglalathoz, a kapcsolat túllépte az időkorlátot" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Felkészülés megoldás fogadására" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Sikertelen" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "A külső solver megfelelő hibaüzenet nélkül hibázott" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nem lehet kapcsolódni a passzív foglalathoz." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Külső solver végrehajtása" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "A getaddrinfo nem talált figyelőfoglalatot" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "sikertelen átnevezés, %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nem lehet összekapcsolódni a foglalattal" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "A Hash Sum nem megfelelő" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nem lehet figyelni a foglalaton" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "A méret nem megfelelő" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nem lehet megállapítani a foglalat nevét" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "%s érvénytelen művelet" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nem lehet PORT parancsot küldeni" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"A várt „%s” bejegyzés nem található a Release fájlban (Rossz sources.list " -"bejegyzés vagy helytelenül formázott fájl)" +msgid "Unknown address family %u (AF_*)" +msgstr "Ismeretlen címcsalád: %u (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nem található a(z) „%s” ellenőrzőösszege a Release fájlban" +msgid "EPRT failed, server said: %s" +msgstr "Hibás EPRT, a kiszolgáló üzenete: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Nem érhető el nyilvános kulcs az alábbi kulcsazonosítókhoz:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Az adatfoglalathoz kapcsolódás túllépte az időkorlátot" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"A Release fájl elavult ehhez: %s (érvénytelen ez óta: %s). A tároló " -"frissítései nem kerülnek alkalmazásra." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nem lehet elfogadni a kapcsolatot" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Probléma a fájl hash értékének meghatározásakor" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Hiba történt az aláírás ellenőrzése közben. A tároló nem frissült, és az " -"előző indexfájl lesz használva. GPG hiba: %s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: „%s”" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "GPG hiba: %s: %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Az adatfoglalat túllépte az időkorlátot" -#: apt-pkg/acquire-item.cc:1867 +#: methods/ftp.cc:935 #, 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 "" -"Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel " -"kell kijavítani a csomagot. (hiányzó arch. miatt)" +msgid "Data transfer failed, server said '%s'" +msgstr "Az adatátvitel sikertelen, a kiszolgáló üzenete: „%s”" -#: apt-pkg/acquire-item.cc:1933 -#, 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" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Lekérdezés" -#: apt-pkg/acquire-item.cc:1991 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"A csomagindexfájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz." +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nem lehet meghívni " -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:76 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "A(z) %s terjesztőblokk nem tartalmaz ujjlenyomatot" +msgid "Connecting to %s (%s)" +msgstr "Csatlakozás: %s (%s)" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:87 #, c-format -msgid "List directory %spartial is missing." -msgstr "A(z) %spartial listakönyvtár hiányzik." +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:94 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "A(z) %spartial archívumkönyvtár hiányzik." +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)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:100 #, c-format -msgid "Unable to lock directory %s" -msgstr "%s könyvtár zárolása sikertelen" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)." -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:108 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li/%li fájl letöltése (%s marad)" +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)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:126 #, c-format -msgid "Retrieving file %li of %li" -msgstr "%li/%li fájl letöltése" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nem lehet kapcsolódni ehhez: %s: %s (%s)." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Néhány indexfájlt nem sikerült letölteni. Figyelmen kívül lettek hagyva, " -"vagy régebbiek lettek felhasználva." +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 +#, c-format +msgid "Connecting to %s" +msgstr "Kapcsolódás: %s" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Néhány „source” URI-t el kell helyezni a sources.list fájlban" +#: methods/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" +msgstr "Nem lehet feloldani a következőt: „%s”" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:205 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" -"A(z) „%s” érték érvénytelen az APT::Default-Release beállításhoz, mert nincs " -"ilyen kiadás a forrásokban" +msgid "Temporary failure resolving '%s'" +msgstr "Átmeneti hiba „%s” feloldása közben" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Érvénytelen rekord a(z) %s beállításfájlban, nincs Package fejléc" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" -#: apt-pkg/policy.cc:444 +#: methods/connect.cc:258 #, c-format -msgid "Did not understand pin type %s" -msgstr "A(z) %s rögzítéstípus nem értelmezhető" +msgid "Unable to connect to %s:%s:" +msgstr "Nem lehet csatlakozni ehhez: %s:%s:" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nincs prioritás (vagy nulla) megadva a rögzítéshez" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Belső hiba: Jó aláírás, de nem állapítható meg a kulcs ujjlenyomata." -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Legalább egy aláírás érvénytelen." + +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Nem indítható el a „gpgv” az aláírás ellenőrzéséhez (telepítve van a gpgv?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" 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:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "A(z) „%s” beállítása sikertelen" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Ismeretlen gpgv futtatási hiba" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Az alábbi aláírások érvénytelenek voltak:\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Ez a telepítési lépés átmenetileg megköveteli a(z) %s alapvető csomag " -"eltávolítását, ami ütközési/előfüggőségi hurkot okoz. Ez gyakran rossz, de " -"ha tényleg ezt akarja tenni, aktiválja az APT::Force-LoopBreak opciót." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "A(z) %u. sor túl hosszú a(z) %s forráslistában." +"Az alábbi aláírások nem ellenőrizhetők, mert a nyilvános kulcs nem érhető " +"el:\n" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM leválasztása...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Az üres fájlok biztosan nem érvényes csomagok" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "%s CD-ROM csatolási pont használata\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Hiba a fájl írásakor" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Várakozás a lemezre...\n" +#: methods/http.cc:523 +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" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM csatolása...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Hiba a kiszolgálóról olvasáskor" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Azonosítás... " +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Hiba a fájl írásakor" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Tárolt címke: %s\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "A kiválasztás sikertelen" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Indexfájlok keresése a lemezen...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Időtúllépés a kapcsolatban" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu csomagindex, %zu forrásindex, %zu fordításindex és %zu aláírás " -"megtalálva\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Hiba a kimeneti fájl írásakor" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Nem találhatók csomagfájlok, lehet hogy ez nem Debian lemez, vagy nem " -"megfelelő az architektúra?" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Várakozás a fejlécekre" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Talált címke: „%s”\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Rossz fejlécsor" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "A név érvénytelen, próbálja újra.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "A HTTP-kiszolgáló érvénytelen válaszfejlécet küldött" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"A lemez neve: \n" -"„%s”\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "A HTTP-kiszolgáló érvénytelen Content-Length fejlécet küldött" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Csomaglisták másolása..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "A HTTP-kiszolgáló érvénytelen Content-Range fejlécet küldött" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Új forráslista írása\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "A HTTP-kiszolgáló tartománytámogatása sérült" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "A lemezhez tartozó forráslistabejegyzések a következők:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ismeretlen dátumformátum" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"A(z) %s csomagot újra kell telepíteni, de nem található hozzá archívum." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Rossz fejlécadatok" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " -"csomagok okozhatják." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Sikertelen kapcsolódás" -#: apt-pkg/algorithms.cc:1088 -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." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Belső hiba" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Függőségi fa építése" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Frissítés kiszámítása... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Lehetséges verziók" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Kész" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Függőséggenerálás" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Állapotinformációk olvasása" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "%s állapotfájl megnyitása sikertelen" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s átmeneti állapotfájl írása sikertelen" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Függőségek javítása..." + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " sikertelen." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (1)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nem lehet javítani a függőségeket" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "„%s” kiadás nem található ehhez: „%s”" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Kész" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "„%s” verzió nem található ehhez: „%s”" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Próbálja futtatni az „apt-get -f install” parancsot ezek javításához." -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "„%s” feladat nem található" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Teljesítetlen függőségek. Próbálja a -f használatával." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" +msgid "[installed,upgradable to: %s]" +msgstr " [Telepítve]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "„%s” csomagból nem választható verzió, mert teljesen virtuális" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Telepítve]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"„%s” csomagból nem választható sem telepített, sem kiadásra jelölt verzió, " -"mert egyikkel sem rendelkezik" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"„%s” csomag legújabb verziója nem választható ki, mert teljesen virtuális" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Telepítve]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Telepítve]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"„%s” csomag kiadásra jelölt verziója nem választható ki, mert nincs jelöltje" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"„%s” csomag telepített verziója nem választható ki, mert nincs telepítve" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "A(z) %s Release fájl nem dolgozható fel" +msgid "but %s is installed" +msgstr "de %s van telepítve" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "A(z) %s Release fájl nem tartalmaz szakaszokat" +msgid "but %s is to be installed" +msgstr "de csak %s telepíthető" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Nincs Hash bejegyzés a(z) %s Release fájlban" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "de az nem telepíthető" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Érvénytelen „Valid-Until” bejegyzés a(z) %s Release fájlban" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "de az egy virtuális csomag" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Érvénytelen „Date” bejegyzés a(z) %s Release fájlban" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "de az nincs telepítve" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "de az nincs telepítésre megjelölve" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] " -"feldolgozhatatlan)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " vagy" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] túl " -"rövid)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " -"érvényes hozzárendelés)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Az alábbi ÚJ csomagok lesznek telepítve:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " -"tartalmaz kulcsot)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Az alábbi csomagok el lesznek TÁVOLÍTVA:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] %s kulcsnak " -"nincs értéke)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Az alábbi csomagok vissza lesznek tartva:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Az alábbi csomagok frissítve lesznek:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Az alábbi visszafogott csomagokat cserélem:" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (Abszolút dist)" +msgid "%s (due to %s) " +msgstr "%s (%s miatt) " -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist feldolgozás)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"FIGYELMEZTETÉS: Az alábbi alapvető csomagok el lesznek távolítva.\n" +"NE tegye ezt, hacsak nem tudja pontosan, mit csinál!" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:707 #, c-format -msgid "Opening %s" -msgstr "%s megnyitása" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu frissített, %lu újonnan telepített, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:711 #, 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)" +msgid "%lu reinstalled, " +msgstr "%lu újratelepítendő, " -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:713 #, 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" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" +msgid "%lu downgraded, " +msgstr "%lu visszafejlesztendő, " -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-output.cc:715 #, c-format -msgid "Installing %s" -msgstr "%s telepítése" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu eltávolítandó és %lu nem frissített.\n" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-output.cc:719 #, c-format -msgid "Configuring %s" -msgstr "%s konfigurálása" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nincs teljesen telepítve/eltávolítva.\n" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s eltávolítása" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[I/n]" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s teljes eltávolítása" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[i/N]" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "„%s” eltűnése feljegyezve" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "I" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Az update parancsnak nincsenek argumentumai" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-update.cc:90 #, c-format -msgid "Running post-installation trigger %s" -msgstr "A(z) %s telepítés utáni trigger futtatása" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "A(z) „%s” könyvtár hiányzik" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: apt-private/private-show.cc:156 #, c-format -msgid "Could not open file '%s'" -msgstr "A(z) „%s” fájl megnyitása sikertelen" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s előkészítése" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s kicsomagolása" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Belső hiba, az InstallPackages törött csomagokkal lett meghívva!" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s konfigurálásának előkészítése" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Csomagokat kellene eltávolítani, de az eltávolítás nem engedélyezett." -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Belső hiba, a rendezés nem fejeződött be" + +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "A méretek nem egyeznek, írjon az apt@packages.debian.org címre" + +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s telepítve" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Letöltendő adatmennyiség: %sB/%sB.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s eltávolításának előkészítése" +msgid "Need to get %sB of archives.\n" +msgstr "Letöltendő adatmennyiség: %sB.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s eltávolítva" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "A művelet után %sB lemezterület kerül felhasználásra.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "%s teljes eltávolításának előkészítése" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "A művelet után %sB lemezterület szabadul fel.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s teljesen eltávolítva" +msgid "You don't have enough free space in %s." +msgstr "Nincs elég szabad hely itt: %s." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Problémák vannak, és a -y kapcsolót használta --force-yes nélkül" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nem lehet írni ebbe: %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +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." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Igen, tedd amit mondok!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Ártalmasnak tűnő műveletet készül végrehajtani.\n" +"A folytatáshoz írja be ezt a mondatot: „%s”\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "A művelet megszakadt, mielőtt befejeződhetett volna" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Megszakítva." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Nem került írásra apport jelentés, mivel a MaxReports már elérve" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Folytatni akarja?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "függőségi hibák - a csomag beállítatlan maradt" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Néhány fájlt nem sikerült letölteni" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint ez a hiba " -"egy korábbi hiba következménye." +"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." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint megtelt a " -"lemez" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "A --fix-missing és az adathordozó-csere jelenleg nem támogatott" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Nem került kiírásra apport jelentés, mivel a hibaüzenet memóriaelfogyási " -"hibát jelez" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nem lehet javítani a hiányzó csomagokat." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Telepítés megszakítása." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Nem került kiírásra apport jelentés, mert a hibaüzenet a helyi rendszeren " -"lévő hibát jelez" +"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] "" +"A következő csomag eltűnt a rendszerből, mivel\n" +"az összes fájlt más csomagok fölülírták:" +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:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:370 +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." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nem kellene semmit törölni, az AutoRemover nem indítható" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Nem került kiírásra apport jelentés, mert a hibaüzenet dpkg I/O hibát jelez" +"Úgy tűnik, az AutoRemover hibát okozott, ez nem történhetne meg.\n" +"Küldjön hibajelentést az apt csomaghoz." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Az alábbi információk segíthetnek megoldani a problémát:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Belső hiba, az AutoRemover sérült" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Az adminisztrációs könyvtár (%s) nem zárolható, lehet hogy másik folyamat " -"használja?" +"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 következő csomag automatikusan lett telepítve, és már nincs rá szükség:" +msgstr[1] "" +"A következő csomagok automatikusan lettek telepítve, és már nincs rájuk " +"szükség:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +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 csomag automatikusan lett telepítve, és már nincs rá szükség.\n" +msgstr[1] "" +"%lu csomag automatikusan lett telepítve, és már nincs rájuk szükség.\n" + +#: apt-private/private-install.cc:519 +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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Az adminisztrációs könyvtár (%s) nem zárolható, rendszergazdaként próbálja?" +"Próbálja futtatni az „apt-get -f install” parancsot az alábbiak javításához:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"A dpkg megszakadt, saját kezűleg kell futtatnia a(z) „%s” parancsot a " -"probléma megoldásához. " +"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!)." + +#: apt-private/private-install.cc:638 +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 "" +"Néhány csomagot nem lehetett telepíteni. Ez azt jelentheti, hogy\n" +"egy lehetetlen állapotot kért, vagy ha az unstable disztribúciót\n" +"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." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Nincs zárolva" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Törött csomagok" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lin %lió %lip %limp" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Az alábbi extra csomagok kerülnek telepítésre:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lió %lip %limp" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Javasolt csomagok:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%lip %limp" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Ajánlott csomagok:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:825 #, c-format -msgid "%lis" -msgstr "%limp" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s kihagyása, ez már telepítve van, és a frissítés nincs beállítva.\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:829 #, c-format -msgid "Selection %s not found" -msgstr "%s kiválasztás nem található" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "„%s” kihagyása, nincs telepítve, és csak frissítések lettek kérve.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:841 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Nem lesz zárolva a(z) „%s” csak olvasható zárolási fájl" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s újratelepítése nem lehetséges, mert nem lehet letölteni.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:846 #, c-format -msgid "Could not open lock file %s" -msgstr "%s zárolási fájl nem nyitható meg" +msgid "%s is already the newest version.\n" +msgstr "%s már a legújabb verzió.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:894 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nem lesz zárolva a(z) %s NFS-csatolású zárolási fájl" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:899 #, c-format -msgid "Could not get lock %s" -msgstr "Nem sikerült zárolni: %s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”, a(z) „%s” miatt\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "A fájlok listáját nem lehetett létrehozni, mert „%s” nem könyvtár" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"A(z) „%s” csomag nincs telepítve, így nem lett törölve. Erre gondolt: „%s”?\n" -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "A(z) „%s” csomag nincs telepítve, így nem lett törölve\n" + +#: apt-private/private-main.cc:32 +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 "" -"„%s” figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nem szabályos fájl" +"NE FELEDJE: Ez csak szimuláció!\n" +" Az apt-get rendszergazdai jogokat igényel a tényleges végrehajtáshoz.\n" +" Ne feledje, hogy a zárolás is ki van kapcsolva,\n" +" így ne számítson a jelenlegi helyzet valósságára!" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "FIGYELMEZTETÉS: Az alábbi csomagok nem hitelesíthetők!" + +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "A hitelesítési figyelmeztetés felülbírálva.\n" + +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Néhány csomag nem hitelesíthető" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Valóban ellenőrzés nélkül telepíti a csomagokat?" + +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "„%s” átnevezése sikertelen erre: %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nincs " -"fájlkiterjesztése" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert érvénytelen " -"fájlkiterjesztése van" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "%s alfolyamat szegmentálási hibát okozott." +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Találat " -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Letöltés:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Mellőz " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Hiba " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "A(z) %s alfolyamat %u számú szignált kapott." +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Letöltve %sB %s alatt (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "%s alfolyamat hibakóddal tért vissza (%u)" +msgid " [Working]" +msgstr " [Folyamatban]" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "%s alfolyamat váratlanul kilépett" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Helyezze be a(z)\n" +" „%s”\n" +"címkéjű lemezt a(z) %s meghajtóba, és nyomja meg az Entert\n" -#: apt-pkg/contrib/fileutl.cc:913 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Hiba a(z) %s gzip fájl bezárásakor" +msgid "No mirror file '%s' found " +msgstr "Nem található a(z) „%s” tükörfájl " -#: apt-pkg/contrib/fileutl.cc:1101 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Could not open file %s" -msgstr "Nem lehet megnyitni a(z) %s fájlt" +msgid "Can not read mirror file '%s'" +msgstr "A(z) „%s” tükörfájl nem olvasható" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "A(z) „%s” tükörfájl nem olvasható" + +#: methods/mirror.cc:445 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Nem lehet megnyitni a(z) %d fájlleírót" +msgid "[Mirror: %s]" +msgstr "[Tükör: %s]" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nem sikerült az alfolyamat IPC-t létrehozni" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Nem sikerült IPC-adatcsatornát létrehozni az alfolyamathoz" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nem sikerült elindítani a tömörítőt " +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "A kapcsolat idő előtt lezárult" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "olvasás, még kellene %llu, de már az összes elfogyott" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Hibás alapértelmezett beállítás!" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "írás, még kiírandó %llu, de ez nem lehetséges" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Nyomja meg az Entert a folytatáshoz." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Hiba a(z) %s fájl bezárásakor" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Törli a korábban letöltött .deb fájlokat?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Hiba a(z) %s fájl átnevezésekor erre: %s" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Hiba történt a kicsomagolás során. A telepített csomagok" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Hiba a(z) %s fájl törlésekor" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "beállításra kerülnek. Ez többszörös" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Hiba a fájl szinkronizálásakor" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "" +"vagy hiányzó függőségek miatti hibákat okozhat. Ez így van rendben, csak az " +"ezen üzenet" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Hiba!" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "előtti hibák fontosak. Javítsa azokat, és futtassa az [I]nstallt újra" + +#: dselect/update:30 +msgid "Merging available information" +msgstr "Elérhető információk egyesítése" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Kész" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "A DropNode hívása egy még mindig linkelt node-ra történt" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "A hash elem nem található!" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Kész" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nem lehet eltérítést lefoglalni" -# FIXME -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nem lehet mmap-olni egy üres fájlt" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Belső hiba az AddDiversion hívásban" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nem lehetett kettőzni a(z) %i fájlleírót" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Kísérlet eltérítés felülírására: %s -> %s és %s/%s" -#: apt-pkg/contrib/mmap.cc:119 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nem sikerült %llu bájtot mmap-olni" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nem lehet bezárni az mmapot" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nem lehet szinkronizálni az mmapot" +msgid "Double add of diversion %s -> %s" +msgstr "A(z) %s -> %s eltérítés hozzáadásának duplázása" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nem sikerült %lu bájtot mmap-olni" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "A fájl csonkítása meghiúsult" +msgid "Duplicate conf file %s/%s" +msgstr "Dupla %s/%s konfigurációs fájl" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, 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 "" -"A dinamikus MMap helye elfogyott. Növelje az APT::Cache-Start méretét. A " -"jelenlegi érték: %lu. (lásd: man 5 apt.conf)" +msgid "The path %s is too long" +msgstr "A(z) %s útvonal túl hosszú" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Nem lehet növelni az MMap méretét, mert a(z) %lu bájt korlátot már elérte." +msgid "Unpacking %s more than once" +msgstr "A(z) %s többszöri kicsomagolása" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Nem lehet növelni az MMap méretét, mert a felhasználó letiltotta az " -"automatikus emelést." +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "A(z) %s könyvtár eltérítve" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "%s csatolási pont nem érhető el" +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-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nem sikerült elérni a CD-ROM-ot." +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Az eltérített útvonal túl hosszú" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ismeretlen típusrövidítés: „%c”" +msgid "Failed to stat %s" +msgstr "%s elérése sikertelen" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Opening configuration file %s" -msgstr "%s konfigurációs fájl megnyitása" +msgid "Failed to rename %s to %s" +msgstr "„%s” átnevezése sikertelen erre: %s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdődik." +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-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Szintaktikai hiba %s: %u: rosszul formázott címke" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Nem sikerült a node helyét megtalálni a hashtárolóban" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Szintaktikai hiba %s: %u: fölösleges szemét az érték után" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Az útvonal túl hosszú" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Szintaktikai hiba %s: %u: Csak legfelső szinten használhatók előírások" +msgid "Overwrite package match with no version for %s" +msgstr "Csomagtalálat felülírása %s verziója nélkül" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include" +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-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva" +msgid "Unable to stat %s" +msgstr "%s nem érhető el" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Szintaktikai hiba %s:%u: „%s” nem támogatott előírás" +msgid "Failed to write file %s" +msgstr "A(z) %s fájl írása sikertelen" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Szintaktikai hiba %s:%u: a törlési parancs egy beállítási fát vár " -"argumentumként" +msgid "Failed to close file %s" +msgstr "A(z) %s fájl bezárása sikertelen" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Szintaktikai hiba %s: %u: fölösleges szemét a fájl végén" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Ez nem egy érvényes DEB archívum, hiányzik a(z) „%s” tag" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "No keyring installed in %s." -msgstr "Nincs kulcstartó telepítve ide: %s." +msgid "Internal error, could not locate member %s" +msgstr "Belső hiba, %s tag nem található" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "A(z) „%c” parancssori kapcsoló [a következőből: %s] ismeretlen." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Értelmezhetetlen control fájl" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "%s parancssori kapcsoló értelmezhetetlen" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Érvénytelen archívum-aláírás" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "%s parancssori kapcsoló nem logikai" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Hiba az archívumtag-fejléc olvasásakor" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Option %s requires an argument." -msgstr "%s kapcsolóhoz argumentum szükséges." +msgid "Invalid archive member header %s" +msgstr "Érvénytelen archívumtag-fejléc: %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"%s kapcsoló: a konfigurációs elem megadásához szükséges egy =<érték> rész." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Érvénytelen archívumtag-fejléc" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "%s kapcsoló egész, és nem „%s” típusú argumentumot követel meg" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Az archívum túl rövid" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Túl hosszú „%s” kapcsoló" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Nem sikerült olvasni az archívumfejléceket" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s jelentés nem értelmezhető, próbálja a true vagy false értékeket." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Nem sikerült adatcsatornákat létrehozni" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Nem sikerült a gzipet futtatni " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Hibás archívum" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar ellenőrzőösszeg nem egyezik, az archívum megsérült" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "%s érvénytelen művelet" +msgid "Unknown TAR header type %u, member %s" +msgstr "Ismeretlen a(z) %u TAR fejléctípus, %s tag" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3599,7 +3603,7 @@ msgstr "Olvasási hiba az MD5 kiszámításakor" msgid "Problem unlinking %s" msgstr "Hiba %s törlésekor" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3653,6 +3657,10 @@ 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" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Belső hiba, az AllUpgrade megsértett valamit" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s nem egy érvényes DEB csomag." diff --git a/po/it.po b/po/it.po index a476d3c6c..9c946d300 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2014-05-31 17:04+0100\n" "Last-Translator: Milo Casagrande <milo@milo.name>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@ -20,3333 +20,3338 @@ msgstr "" "X-Launchpad-Export-Date: 2012-06-25 19:48+0000\n" "X-Generator: Poedit 1.6.5\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Il file indice di tipo \"%s\" non è supportato" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Il pacchetto %s versione %s ha una dipendenza non soddisfatta:\n" +msgid "Unable to read %s" +msgstr "Impossibile leggere %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Totale nomi dei pacchetti: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Impossibile passare a %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Totale strutture dei pacchetti: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Impossibile eseguire stat su %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pacchetti normali: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "Avanzamento: [%3i%%]" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pacchetti virtuali puri: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Esecuzione di dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pacchetti virtuali singoli: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Il sistema di pacchetti \"%s\" non è supportato" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pacchetti virtuali misti: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Mancante: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Scritti %i record.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Totale versioni distinte: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Scritti %i record con %i file mancanti.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Totale descrizioni distinte: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Scritti %i record con %i file senza corrispondenze\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Totale dipendenze: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Scritti %i record con %i file mancanti e %i file senza corrispondenze\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Totale relazioni ver/file: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Impossibile trovare il record di autenticazione per %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Totale relazioni desc/file: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash non corrispondente per %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Totale corrispondenze fornite: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Impossibile trovare un driver per il metodo %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Totale stringhe globalizzate: " +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "Il pacchetto %s è installato?" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Totale spazio dipendenza di versione: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Il metodo %s non si è avviato correttamente" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Totale spazio inutilizzato: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Inserire il disco chiamato \"%s\" nell'unità \"%s\" e premere Invio." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Totale spazio occupato: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"L'elenco dei pacchetti o il file di stato non può essere letto o aperto." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Il file dei pacchetti %s non è sincronizzato." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"È consigliato eseguire \"apt-get update\" per correggere questi problemi" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nessun pacchetto trovato" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Impossibile leggere l'elenco dei sorgenti." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "È necessario specificare almeno un modello per la ricerca" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache dei pacchetti vuota" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Questo comando è deprecato. Utilizzare \"apt-mark showauto\" al suo posto." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Il file della cache dei pacchetti è danneggiato" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 -#, c-format -msgid "Unable to locate package %s" -msgstr "Impossibile trovare il pacchetto %s" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "La versione del file della cache dei pacchetti è incompatibile" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "File dei pacchetti:" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Il file cache del pacchetto è danneggiato, è troppo piccolo" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Questo APT non supporta il sistema di versione \"%s\"" + +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" msgstr "" -"La cache non è sincronizzata, impossibile referenziare un file di pacchetti" +"Il file della cache dei pacchetti è stato generato per un'altra architettura" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pacchetti con gancio:" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Dipende" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(non trovato)" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pre-dipende" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installato: " +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Consiglia" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Raccomanda" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nessuno)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Va in conflitto" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Gancio del pacchetto: " +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Sostituisce" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabella versione:" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Rende obsoleto" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s per %s compilato il %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Rompe" -#: cmdline/apt-cache.cc:1749 -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 "" -"Uso: apt-cache [OPZIONI] COMANDO\n" -" apt-cache [OPZIONI] showpkg PKG1 [PKG2 ...]\n" -" apt-cache [OPZIONI] showsrc PKG1 [PKG2 ...]\n" -"\n" -"apt-cache è uno strumento di basso livello usato per cercare informazioni \n" -"nei file di cache dei binari di APT\n" -"\n" -"Comandi:\n" -" gencaches - Costruisce sia la cache dei pacchetti sia quella dei " -"sorgenti\n" -" showpkg - Mostra informazioni generali per un singolo pacchetto\n" -" showsrc - Mostra i campi dei sorgenti\n" -" stats - Mostra alcune statistiche di base\n" -" dump - Mostra il file in forma compatta\n" -" dumpavail - Stampa un file \"available\" sullo stdout\n" -" unmet - Mostra le dipendenze non soddisfatte\n" -" search - Cerca nell'elenco dei pacchetti un'espressione regolare\n" -" show - Mostra un campo leggibile per il pacchetto specificato\n" -" depends - Mostra informazioni di dipendenza per un pacchetto\n" -" rdepends - Mostra informazioni di dipendenza all'incontrario per un " -"pacchetto\n" -" pkgnames - Elenca i nomi di tutti i pacchetti nel sistema\n" -" dotty - Genera un grafo dei pacchetti per GraphViz\n" -" xvcg - Genera un grafo dei pacchetti per xvcg\n" -" policy - Mostra le preferenze adottate\n" -"\n" -"Opzioni:\n" -" -h Mostra questo aiuto\n" -" -p=? La cache dei pacchetti\n" -" -s=? La cache dei sorgenti\n" -" -q Disabilita l'indicatore di avanzamento\n" -" -i Mostra solo dipendenze importanti per il comando unmet\n" -" -c=? Legge come configurazione il file specificato\n" -" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" -"Per maggiori informazioni, consultare le pagine di manuale apt-cache(8) e \n" -"apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Migliora" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Dare un nome a questo disco, tipo \"Debian 5.0.3 Disco 1\"" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Inserire un disco nell'unità e premere Invio" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "richiesto" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opzionale" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Mount di \"%s\" su \"%s\" non riuscito" +msgid "Index file type '%s' is not supported" +msgstr "Il file indice di tipo \"%s\" non è supportato" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"Impossibile rilevare automaticamente un CD-ROM oppure è stato trovato con " -"il\n" -"punto di mount predefinito.\n" -"Provare l'opzione --cdrom per impostare il punto di mount del CD-ROM.\n" -"Per maggiori informazioni sull'autorilevamento e sul punto di mount\n" -"del CD-ROM, consultare \"man apt-cdrom\"." +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Errore di compilazione dell'espressione regolare - %s" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Ripetere questo processo per il resto dei CD." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "La cache ha un sistema di gestione delle versioni incompatibile" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argomenti non in coppia" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Si è verificato un errore nell'elaborare %s (%s%d)" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Uso: apt-config [OPZIONI] COMANDO\n" -"\n" -"apt-config è uno strumento per leggere il file di configurazione di APT\n" -"\n" -"Comandi:\n" -" shell - Modalità shell\n" -" dump - Mostra la configurazione\n" -"\n" -"Opzioni\n" -" -h Mostra questo aiuto\n" -" -c=? Legge come configurazione il file specificato\n" -" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" +"È stato superato il numero di nomi di pacchetti che questo APT può gestire." -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Impossibile trovare un pacchetto per l'architettura \"%s\"" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "È stato superato il numero di versioni che questo APT può gestire." -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Impossibile trovare un pacchetto \"%s\" con versione \"%s\"" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "È stato superato il numero di descrizioni che questo APT può gestire." -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Impossibile trovare un pacchetto \"%s\" con release \"%s\"" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:367 +# (ndt) il primo è il nome del pacchetto, il secondo la versione +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n" +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" -#: cmdline/apt-get.cc:423 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Impossibile trovare la versione \"%s\" del pacchetto \"%s\"" +msgid "Couldn't stat source package list %s" +msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Impossibile trovare il pacchetto %s" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lettura elenco dei pacchetti" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "È stato impostato %s per l'installazione manuale.\n" +# (ndt) non mi convince per niente, ma vediamo cosa salta fuori +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Il file fornisce" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s impostato automaticamente come installato.\n" +msgid "Unable to write to %s" +msgstr "Impossibile scrivere in %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Questo comando è deprecato. Utilizzare \"apt-mark auto\" e \"apt-mark manual" -"\" al suo posto." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Errore di I/O nel salvare la cache sorgente" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Invia lo scenario al solver" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Impossibile bloccare la directory di scaricamento" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Invia la richiesta al solver" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"È necessario specificare almeno un pacchetto di cui recuperare il sorgente" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Preparazione alla ricezione della soluzione" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Impossibile trovare un pacchetto sorgente per %s" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Il solver esterno è terminato senza un errore di messaggio" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"Nota: il processo di pacchettizzazione di \"%s\" è mantenuto\n" -"all'interno del sistema di controllo della versione \"%s\" presso:\n" -"%s\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Esecuzione solver esterno" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Utilizzare:\n" -"bzr branch %s\n" -"per recuperare gli ultimi (forse non rilasciati) aggiornamenti del " -"pacchetto.\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "rename() non riuscita: %s (%s -> %s)." -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Somma hash non corrispondente" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Impossibile determinare lo spazio libero in %s" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Le dimensioni non corrispondono" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "Formato file non valido" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Lo spazio libero in %s è insufficiente" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Impossibile trovare la voce \"%s\" nel file Release (voce in sources.list " +"errata o file danneggiato)" -#. 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:891 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Impossibile trovare la somma hash per \"%s\" nel file Release" -#. 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:896 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Non è disponibile alcuna chiave pubblica per i seguenti ID di chiavi:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "È necessario scaricare %sB di sorgenti.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Il file Release per %s è scaduto (non valido dal %s). Gli aggiornamenti per " +"questo repository non verranno applicati." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "Recupero sorgente %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Recupero di alcuni archivi non riuscito." +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Si è verificato un errore nel verificare la firma. Il repository non è " +"aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s\n" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Scaricamento completato e in modalità solo scaricamento" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Errore GPG: %s: %s" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n" +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 "" +"Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario " +"sistemare manualmente questo pacchetto (a causa dell'architettura mancante)." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Comando di estrazione \"%s\" non riuscito.\n" +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:963 +# (ndt) sarebbe da controllare se veramente possono esistere più file indice +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" " +"per il pacchetto %s." -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Comando \"%s\" di generazione non riuscito.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Il blocco vendor %s non contiene impronte" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Creazione processo figlio non riuscita" +# (ndt) sarebbe da controllare meglio assieme a quella dopo +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Manca la directory di liste %spartial." -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"È necessario specificare almeno un pacchetto di cui controllare le " -"dipendenze di generazione" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Manca la directory di archivio %spartial." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"Informazioni sull'architettura non disponibili per %s. Consultare apt." -"conf(5) APT::Architectures per l'impostazione" +msgid "Unable to lock directory %s" +msgstr "Impossibile bloccare la directory %s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Scaricamento file %li di %li (%s rimanente)" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s non ha dipendenze di generazione.\n" +msgid "Retrieving file %li of %li" +msgstr "Scaricamento file %li di %li" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Impossibile recuperare %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"La dipendenza %s per %s non può essere soddisfatta perché %s non è " -"consentito su pacchetti \"%s\"" +"Impossibile scaricare alcuni file di indice: saranno ignorati o verranno " +"usati quelli vecchi." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"È necessario inserire alcuni URI di tipo \"source\" nel file sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " -"non può essere trovato" +"Il valore \"%s\" non è valido per APT::Default-Release poiché tale release " +"non è disponibile dalle sorgenti" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s " -"è troppo recente" +"Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package" +"\"" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:444 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"La dipendenza %s per %s non può essere soddisfatta perché la versione " -"candidata del pacchetto %s non può soddisfare i requisiti di versione" +msgid "Did not understand pin type %s" +msgstr "Impossibile comprendere il tipo di gancio %s" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Priorità per il gancio non specificata (o zero)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"La dipendenza %s per %s non può essere soddisfatta perché il pacchetto %s " -"non ha una versione candidata" +"Impossibile eseguire immediatamente la configurazione su \"%s\". Per " +"maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" +"Immediate-Configure\" (%d)." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "La dipendenza %s per %s non è stata soddisfatta: %s" +msgid "Could not configure '%s'. " +msgstr "Impossibile configurare \"%s\". " -#: cmdline/apt-get.cc:1395 +#: apt-pkg/packagemanager.cc:583 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Le dipendenze di generazione per %s non sono state soddisfatte." +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 "" +"L'installazione necessita della rimozione temporanea del pacchetto " +"essenziale %s a causa di un ciclo conflitto/pre-dipendenza. Questa è una " +"situazione critica, ma se si vuole realmente procedere, attivare l'opzione " +"APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Elaborazione delle dipendenze di generazione non riuscita" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Riga %u troppo lunga nel file %s." -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Smontaggio CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog per %s (%s)" +msgid "Using CD-ROM mount point %s\n" +msgstr "Viene usato il punto di mount del CD-ROM %s\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Moduli supportati:" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "In attesa del disco...\n" -#: cmdline/apt-get.cc:1632 -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" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montaggio CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificazione... " + +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etichette archiviate: %s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Analisi del disco per file indice...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Uso: apt-get [OPZIONI] COMANDO\n" -" apt-get [OPZIONI] install|remove PKG1 [PKG2 ...]\n" -" apt-get [OPZIONI] source PKG1 [PKG2 ...]\n" -"\n" -"apt-get è una semplice interfaccia a riga di comando per scaricare \n" -"e installare pacchetti. I comandi più usati sono update e install.\n" -"\n" -"Comandi:\n" -" update - Scarica l'elenco aggiornato dei pacchetti\n" -" upgrade - Esegue un aggiornamento dei pacchetti installati\n" -" install - Installa nuovi pacchetti (PKG è libc6 non libc6.deb)\n" -" remove - Rimuove i pacchetti\n" -" autoremove - Rimuove automaticamente i pacchetti inutilizzati\n" -" purge - Rimuove i pacchetti e la loro configurazione\n" -" source - Scarica i pacchetti sorgente\n" -" build-dep - Configura le dipendenze di generazione per i pacchetti " -"sorgente\n" -" dist-upgrade - Esegue un avanzamento della distribuzione, consultare apt-" -"get(8)\n" -" dselect-upgrade - Segue le selezioni di dselect\n" -" clean - Elimina i file dei pacchetti scaricati\n" -" autoclean - Elimina i vecchi pacchetti scaricati\n" -" check - Verifica che non ci siano dipendenze insoddisfatte\n" -" changelog - Scarica e visualizza il changelog per il pacchetto indicato\n" -" download - Scarica il pacchetto binario nella directory attuale\n" -"\n" -"Opzioni:\n" -" -h Mostra questo aiuto\n" -" -q Output registrabile, nessun indicatore di avanzamento\n" -" -qq Nessun output eccetto gli errori\n" -" -d Scarica solamente, NON installa o decomprime gli archivi\n" -" -s Nessuna azione, simula i passi in ordine\n" -" -y Assume una risposta affermativa a tutte le domande e non chiede " -"conferma\n" -" -f Tenta di continuare se il controllo di integrità non riesce\n" -" -m Tenta di continuare se gli archivi non sono localizzabili\n" -" -u Mostra anche un elenco dei pacchetti aggiornati\n" -" -b Genera il pacchetto sorgente dopo averlo recuperato\n" -" -V Mostra prolissamente i numeri di versione\n" -" -c=? Legge come configurazione il file specificato\n" -" -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n" -"Per maggiori informazioni e opzioni, consultare le pagine di manuale\n" -"apt-get(8), sources.list(5) e apt.conf(5).\n" -" Questo APT ha i poteri della Super Mucca.\n" +"Trovati %zu indici di pacchetto, %zu indici di sorgente, %zu indici di " +"traduzione e %zu firme\n" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "È necessario specificare almeno una coppia URL/nome file" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Impossibile trovare alcun file di pacchetto. Questo potrebbe non essere un " +"disco Debian o potrebbe essere l'architettura errata." -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "Scaricamento non riuscito" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Trovata l'etichetta \"%s\"\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Questo non è un nome valido, riprovare.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Uso: apt-helper [OPZIONI] COMANDO\n" -" apt-helper [OPZIONI] download-file uri percorso\n" -"\n" -"apt-helper è un programma d'aiuto interno per apt\n" -"\n" -"Comandi:\n" -" download-file Scarica l'URI fornito in percorso\n" -"\n" -" Questo APT ha super poteri.\n" +"Questo disco è chiamato: \n" +"\"%s\"\n" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copia elenco pacchetti..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Scrittura nuovo elenco sorgenti\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s non può essere segnato perché non è installato.\n" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " +"archivio." -#: cmdline/apt-mark.cc:74 +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo " +"potrebbe essere causato da pacchetti bloccati." + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Generazione albero delle dipendenze" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versioni candidate" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generazione delle dipendenze" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lettura informazioni sullo stato" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s è già stato impostato come installato manualmente.\n" +msgid "Failed to open StateFile %s" +msgstr "Apertura del file di stato %s non riuscita" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s è già stato impostato come installato automaticamente.\n" +msgid "Failed to write temporary StateFile %s" +msgstr "Scrittura del file temporaneo di stato %s non riuscita" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s è già stato impostato come bloccato.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Impossibile analizzare il file di pacchetto %s (1)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s era già non bloccato.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Impossibile analizzare il file di pacchetto %s (2)" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +# (ndt) dovrebbe essere inteso il file Release +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "In attesa di %s ma non era presente" +msgid "Release '%s' for '%s' was not found" +msgstr "Release \"%s\" per \"%s\" non trovato." -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +# (ndt) dovrebbe essere inteso il Version +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "%s set on hold.\n" -msgstr "%s impostato come bloccato.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "Version \"%s\" per \"%s\" non trovato" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Blocco su %s annullato.\n" +msgid "Unable to locate package %s" +msgstr "Impossibile trovare il pacchetto %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Esecuzione di dpkg non riuscita. È stato lanciato come root?" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Impossibile trovare il task \"%s\"" -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" msgstr "" -"Uso: apt-mark [OPZIONI] {auto|manual} PKG1 [PKG2 ...]\n" -"\n" -"apt-mark è una semplice interfaccia a riga di comando per segnalare i " -"pacchetti\n" -"come installati manualmente o automaticamente. Può anche elencare le " -"segnalazioni.\n" -"\n" -"Comandi:\n" -" auto Segna i pacchetti forniti come installati automaticamente\n" -" manual Segna i pacchetti forniti come installati manualmente\n" -" hold Segna un pacchetto come bloccato a una vecchia versione\n" -" unhold Sblocca un pacchetto bloccato a una vecchia versione\n" -" showauto Stampa l'elenco dei pacchetti installati automaticamente\n" -" showmanual Stampa l'elenco dei pacchetti installati manualmente\n" -" showhold Stampa l'elenco dei pacchetti bloccati\n" -"\n" -"Opzioni:\n" -" -h Mostra questo aiuto\n" -" -q Output registrabile, nessun indicatore di avanzamento\n" -" -qq Nessun output eccetto gli errori\n" -" -s Nessuna azione, stampa solamente cosa verrebbe fatto\n" -" -f Legge/Scrivere la segnalazione nel file fornito\n" -" -c=? Legge come configurazione il file specificato\n" -" -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tm\n" -"Per maggiori informazioni, consultare le pagine di manuale apt-mark(8) e\n" -"apt.conf(5)." +"Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" -"Uso: apt [OPZIONI] COMANDO\n" -"\n" -"Interfaccia a riga di comando per apt.\n" -"Comandi di base:\n" -" list Elenca i pacchetti in base al nome\n" -" search Cerca tra le descrizioni dei pacchetti\n" -" show Mostra dettagli di un pacchetto\n" -"\n" -" update Aggiorna l'elenco dei pacchetti disponibili\n" -"\n" -" install Installa pacchetti\n" -" remove Rimuove pacchetti\n" -"\n" -" upgrade Esegue l'avanzamento di versione del sistema installando e\n" -" aggiornando i pacchetti\n" -" full-upgrade Esegue l'avanzamento di versione del sistema rimuovendo,\n" -" installando e aggiornando i pacchetti\n" -"\n" -" edit-sources Modifica il file sulle informazioni delle sorgenti\n" +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Impossibile trovare alcun pacchetto tramite il glob \"%s\"" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Impossibile leggere il database del CD-ROM %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Impossibile selezionare le versioni dal pacchetto \"%s\" poiché è virtuale" -#: methods/cdrom.cc:212 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Usare apt-cdrom per far riconoscere questo CD-ROM da APT. apt-get update non " -"può essere usato per aggiungere nuovi CD-ROM" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM sbagliato" +"Impossibile selezionare la versione installata o la candidata dal pacchetto " +"\"%s\" poiché non sono presenti" -#: methods/cdrom.cc:249 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso." +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Impossibile selezionare la versione più recente dal pacchetto \"%s\" poiché " +"è virtuale" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco non trovato" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Impossibile selezionare la versione candidata dal pacchetto %s poiché non ha " +"alcun candidato" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "File non trovato" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Impossibile selezionare la versione installata dal pacchetto %s poiché non è " +"installato" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Esecuzione di stat non riuscita" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Impossibile analizzare il file Release %s" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Impostazione della data di modifica non riuscita" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Nessuna sezione nel file Release %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI non valido, gli URI locali non devono iniziare con //" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Nessuna voce Hash nel file Release %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Accesso in corso" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Voce \"Valid-Until\" nel file Release %s non valida" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Impossibile determinare il nome del nodo" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Voce \"Date\" nel file Release %s non valida" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Impossibile determinare il nome locale" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "La stanza %u nel file delle sorgenti %s non è corretta (analisi URI)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Il server ha rifiutato la connessione e riporta: %s" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] non " +"analizzabile)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER non riuscito, il server riporta: %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] troppo " +"corta)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS non riuscito, il server riporta: %s" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non è " +"un'assegnazione)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -"È stato specificato un server proxy, ma nessuno script di accesso: Acquire::" -"ftp::ProxyLogin è vuoto." +"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non ha una " +"chiave)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s" +"La riga %lu nel file delle sorgenti %s non è corretta ([%s] la chiave %s non " +"ha un valore)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE non riuscito, il server riporta: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "La riga %lu nel file %s non è corretta (URI)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Connessione scaduta" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "La riga %lu nel file %s non è corretta (dist)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Il server ha chiuso la connessione" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "La riga %lu nel file %s non è corretta (URI parse)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Errore di lettura" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "La riga %lu nel file %s non è corretta (absolute dist)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Una risposta ha superato le dimensioni del buffer." +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "La riga %lu nel file %s non è corretta (dist parse)" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocollo danneggiato" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Apertura di %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Errore di scrittura" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "La riga %u nel file %s non è corretta (type)" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Impossibile creare un socket" +#: apt-pkg/sourcelist.cc:375 +#, 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 delle sorgenti %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -"Impossibile connettersi al socket dati, tempo esaurito per la connessione" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Non riuscito" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Impossibile connettersi alla socket passiva." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Impossibile ottenere un socket in ascolto con getaddrinfo()" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Impossibile eseguire bind() su un socket" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Impossibile eseguire listen() su un socket" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Impossibile determinare il nome del socket" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Impossibile inviare il comando PORT" +"Tipo \"%s\" non riconosciuto nella stanza %u nel file delle sorgenti %s" -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta" +msgid "Installing %s" +msgstr "Installazione di %s" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT non riuscito, il server riporta: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Connessione al socket dati terminata" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Impossibile accettare connessioni" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Si è verificato un problema nel creare l'hash del file" +msgid "Configuring %s" +msgstr "Configurazione di %s" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Impossibile recuperare il file, il server riporta: \"%s\"" +msgid "Removing %s" +msgstr "Rimozione di %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Socket dati terminato" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Rimozione completa di %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Trasferimento dati non riuscito, il server riporta: \"%s\"" +msgid "Noting disappearance of %s" +msgstr "Notata la sparizione di %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Interrogazione" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Esecuzione comando di post installazione %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Impossibile invocare " +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Directory \"%s\" mancante" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Connessione a %s (%s)" +msgid "Could not open file '%s'" +msgstr "Impossibile aprire il file \"%s\"" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Preparing %s" +msgstr "Preparazione di %s" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:990 #, 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)" +msgid "Unpacking %s" +msgstr "Estrazione di %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Impossibile iniziare la connessione a %s:%s (%s)." +msgid "Preparing to configure %s" +msgstr "Preparazione alla configurazione di %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata" +msgid "Installed %s" +msgstr "Pacchetto %s installato" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Impossibile connettersi a %s:%s (%s)." +msgid "Preparing for removal of %s" +msgstr "Preparazione alla rimozione di %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Connecting to %s" -msgstr "Connessione a %s" +msgid "Removed %s" +msgstr "Pacchetto %s rimosso" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not resolve '%s'" -msgstr "Impossibile risolvere \"%s\"" +msgid "Preparing to completely remove %s" +msgstr "Preparazione alla rimozione completa di %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Risoluzione di \"%s\" temporaneamente non riuscita" +msgid "Completely removed %s" +msgstr "Pacchetto %s rimosso completamente" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) non riuscita" + +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Errore di sistema nella risoluzione di \"%s:%s\"" +msgid "Can not write log (%s)" +msgstr "Impossibile scrivere il registro (%s)" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "È /dev/pts montato?" + +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "stdout è un terminale?" + +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "Waited for %s but it wasn't there" +msgstr "In attesa di %s ma non era presente" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "L'operazione è stata interrotta prima di essere completata" + +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -"Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" +"Segnalazione apport non scritta poiché è stato raggiunto il valore massimo " +"di MaxReports" -#: methods/connect.cc:258 -#, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Impossibile connettersi a %s:%s:" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "Problemi con le dipendenze - Viene lasciato non configurato" -#: methods/gpgv.cc:168 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Errore interno: firma corretta, ma non è possibile determinare l'impronta " -"della chiave." +"Segnalazione apport non scritta poiché il messaggio di errore indica la " +"presenza di un fallimento precedente." -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "È stata trovata almeno una firma non valida." +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore per disco pieno." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -"Impossibile eseguire \"gpgv\" per verificare la firma (forse gpgv non è " -"installato)" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore di memoria esaurita." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -"Il file con la firma in chiaro non è valido, ottenuto \"%s\" (la rete " -"richiede autenticazione?)" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore nel sistema locale." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Errore sconosciuto durante l'esecuzione di gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Le seguenti firme non erano valide:\n" - -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1685 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -"Le seguenti firme non sono state verificate perché la chiave pubblica non è " -"disponibile:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "File vuoti non possono essere archivi validi" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore di I/O di dpkg." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Errore nello scrivere sul file" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Impossibile acquisire il blocco sulla directory di amministrazione (%s). Un " +"altro processo potrebbe tenerla occupata." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Impossibile acquisire il blocco sulla directory di amministrazione (%s). È " +"necessario essere root." -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Errore nel leggere dal server" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg è stato interrotto. È necessario eseguire \"%s\" per correggere il " +"problema. " -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Errore nello scrivere su file" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non bloccato" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Select non riuscita" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lig %lih %limin %lis" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Connessione terminata" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Errore nello scrivere sul file di output" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "In attesa degli header" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Riga header non corretta" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Selezione %s non trovata" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Il server HTTP ha inviato un header di risposta non valido" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Blocco disabilitato per il file di blocco in sola lettura %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Il server HTTP ha inviato un header Content-Length non valido" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Impossibile aprire il file di blocco %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Il server HTTP ha inviato un header Content-Range non valido" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Blocco disabilitato per il file di blocco %s montato via nfs" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Questo server HTTP ha un supporto del range non corretto" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Impossibile impostare il blocco %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato della data sconosciuto" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" +"L'elenco dei file non può essere creato poiché \"%s\" non è una directory" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Header dati non corretto" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" +"Viene ignorato \"%s\" nella directory \"%s\" poiché non è un file regolare" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Connessione non riuscita" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" +"Viene ignorato il file \"%s\" nella directory \"%s\" poiché non ha " +"un'estensione" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Errore interno" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"Viene ignorato il file \"%s\" nella directory \"%s\" poiché ha un'estensione " +"non valida" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calcolo dell'aggiornamento... " +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." -#: apt-private/private-upgrade.cc:30 -msgid "Internal error, Upgrade broke stuff" -msgstr "Errore interno, Upgrade ha rovinato qualche cosa" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Il sottoprocesso %s ha ricevuto il segnale %u." -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Eseguito" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Il sottoprocesso %s ha restituito un codice d'errore (%u)" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "Ordinamento" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Il sottoprocesso %s è uscito inaspettatamente" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "Elencazione" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Errore di scrittura" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "C'è %i versione aggiuntiva: usare \"-a\" per visualizzarla" -msgstr[1] "Ci sono %i versioni aggiuntive: usare \"-a\" per visualizzarle" +msgid "Problem closing the gzip file %s" +msgstr "Si è verificato un problema nel chiudere il file gzip %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Correzione delle dipendenze..." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Impossibile aprire il file %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " non riuscita." +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Impossibile aprire il descrittore del file %d" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Impossibile correggere le dipendenze" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Creazione di un sottoprocesso IPC non riuscita" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Impossibile minimizzare l'insieme da aggiornare" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Esecuzione non riuscita del compressore " -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fatto" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Errore di lettura" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "È utile eseguire \"apt-get -f install\" per correggere ciò." +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "lettura, ancora %llu da leggere, ma non è stato trovato nulla" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dipendenze non trovate. Riprovare usando -f." +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "scrittura, ancora %llu da scrivere, ma non è possibile" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "sconosciuto" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Si è verificato un problema nel chiudere il file %s" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[installato, aggiornabile a: %s]" +msgid "Problem renaming the file %s to %s" +msgstr "Si è verificato un problema nel rinominare il file %s in %s" -#: apt-private/private-output.cc:237 -msgid "[installed,local]" -msgstr "[installato, locale]" - -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "[installato, auto-rimovibile]" - -#: apt-private/private-output.cc:242 -msgid "[installed,automatic]" -msgstr "[installato, automatico]" - -#: apt-private/private-output.cc:244 -msgid "[installed]" -msgstr "[installato]" - -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "[upgradable from: %s]" -msgstr "[aggiornabile da: %s]" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "[configurazione residua]" +msgid "Problem unlinking the file %s" +msgstr "Si è verificato un problema nell'eseguire l'unlink del file %s" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Si è verificato un problema nel sincronizzare il file" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is installed" -msgstr "ma la versione %s è installata" +msgid "%c%s... Error!" +msgstr "%c%s... Errore" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "but %s is to be installed" -msgstr "ma la versione %s sta per essere installata" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ma non è installabile" +msgid "%c%s... Done" +msgstr "%c%s... Fatto" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ma è un pacchetto virtuale" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ma non è installato" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "ma non sta per essere installato" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Impossibile eseguire mmap su un file vuoto" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " oppure" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Impossibile duplicare il descrittore del file %i" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "I seguenti pacchetti NUOVI saranno installati:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Impossibile creare mmap di %llu byte" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "I seguenti pacchetti saranno RIMOSSI:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Impossibile chiudere mmap" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Impossibile sincronizzare mmap" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "I seguenti pacchetti saranno aggiornati:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Impossibile eseguire mmap di %lu byte" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "I seguenti pacchetti saranno RETROCESSI:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Troncamento del file non riuscito" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "I seguenti pacchetti bloccati saranno cambiati:" +#: 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 "" +"MMap dinamica esaurita. Aumentare la dimensione di APT::Cache-Start. Il " +"valore attuale è: %lu (man 5 apt.conf)." -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (a causa di %s) " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Impossibile incrementare la dimensione della MMap poiché il limite di %lu " +"byte è stato raggiunto." -#: apt-private/private-output.cc:663 +# (ndt) lunghetta... +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"ATTENZIONE: i seguenti pacchetti essenziali stanno per essere rimossi.\n" -"Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa " -"si sta facendo." +"Impossibile incrementare la dimensione della MMap poiché il " +"ridimensionamento automatico è stato disabilitato dall'utente." -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aggiornati, %lu installati, " +msgid "Unable to stat the mount point %s" +msgstr "Impossibile eseguire stat sul punto di mount %s" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstallati, " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Esecuzione di stat sul CD-ROM non riuscita" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu downgraded, " -msgstr "%lu retrocessi, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tipo di abbreviazione non riconosciuto: \"%c\"" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu da rimuovere e %lu non aggiornati.\n" +msgid "Opening configuration file %s" +msgstr "Apertura file di configurazione %s" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu non completamente installati o rimossi.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[S/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[s/N]" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "S" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Errore di sintassi %s:%u: il blocco inizia senza nome" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Regex compilation error - %s" -msgstr "Errore di compilazione dell'espressione regolare - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Il comando update non accetta argomenti" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Errore di sintassi %s:%u: tag non corretto" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Errore di sintassi %s:%u: caratteri extra dopo il valore" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "C'è %i record aggiuntivo: usare \"-a\" per visualizzarlo" -msgstr[1] "Ci sono %i record aggiuntivi: usare \"-a\" per visualizzarli" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "non un vero pacchetto (virtuale)" - -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"Errore interno, InstallPackages è stato chiamato con un pacchetto " -"danneggiato." - -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata." +"Errore di sintassi %s:%u: le direttive possono essere fatte solo al livello " +"più alto" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Errore interno, l'ordinamento non è stato terminato" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Errore di sintassi %s:%u: troppe inclusioni annidate" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Le dimensioni non corrispondono. Inviare un'email a: apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Errore di sintassi %s:%u: incluso da qui" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "È necessario scaricare %sB/%sB di archivi.\n" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata" -#. 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 -#: apt-private/private-install.cc:159 +# (ndt) sarebbe da controllare meglio... +#: apt-pkg/contrib/configuration.cc:900 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "È necessario scaricare %sB di archivi.\n" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Errore di sintassi %s:%u: la direttiva clear richiede un albero di opzioni " +"come argomento" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Errore di sintassi %s:%u: caratteri extra alla fine del file" -#. 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 -#: apt-private/private-install.cc:171 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Dopo quest'operazione, verranno liberati %sB di spazio su disco.\n" +msgid "No keyring installed in %s." +msgstr "Nessun portachiavi installato in %s." -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Spazio libero in %s insufficiente." +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opzione a riga di comando \"%c\" [da %s] sconosciuta." -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Si sono verificati dei problemi ed è stata usata -y senza --force-yes" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opzione a riga di comando %s non comprensibile" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"È stata specificata la modalità \"Trivial Only\", ma questa non è " -"un'operazione banale." +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opzione a riga di comando %s non booleana" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Sì, esegui come da richiesta." +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "L'opzione %s richiede un argomento." -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -"Si sta per compiere un'azione potenzialmente pericolosa.\n" -"Per continuare scrivere la frase \"%s\"\n" -" ?] " - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Interrotto." - -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Continuare?" +"Opzione %s: la specifica di configurazione dell'oggetto deve avere un " +"=<valore>." -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Scaricamento di alcuni file non riuscito" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "L'opzione %s richiede un argomento intero, non \"%s\"" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-" -"get update\" o provare l'opzione \"--fix-missing\"." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Opzione \"%s\" troppo lunga" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing su supporti estraibili non è ancora supportato" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Il valore %s non è comprensibile, provare \"true\" o \"false\"." -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Impossibile correggere i pacchetti mancanti." +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Operazione %s non valida" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Interruzione dell'installazione." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Il pacchetto %s versione %s ha una dipendenza non soddisfatta:\n" -#: apt-private/private-install.cc:365 -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] "" -"Il seguente pacchetto è sparito dal sistema poiché\n" -"tutti i file sono stati sovrascritti da altri pacchetti:" -msgstr[1] "" -"I seguenti pacchetti sono spariti dal sistema poiché\n" -"tutti i file sono stati sovrascritti da altri pacchetti:" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Totale nomi dei pacchetti: " -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: questo viene svolto automaticamente e volutamente da dpkg." +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Totale strutture dei pacchetti: " -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pacchetti normali: " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Sembra che AutoRemover abbia rovinato qualcosa e questo\n" -"non doveva accadere. Segnalare un bug riguardo apt." +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pacchetti virtuali puri: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pacchetti virtuali singoli: " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pacchetti virtuali misti: " -#: apt-private/private-install.cc:512 -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] "" -"Il seguente pacchetto è stato installato automaticamente e non è più " -"richiesto:" -msgstr[1] "" -"I seguenti pacchetti sono stati installati automaticamente e non sono più " -"richiesti:" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Mancante: " -#: apt-private/private-install.cc:516 -#, 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 pacchetto è stato installato automaticamente e non è più richiesto.\n" -msgstr[1] "" -"%lu pacchetti sono stati installati automaticamente e non sono più " -"richiesti.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Totale versioni distinte: " -#: apt-private/private-install.cc:518 -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-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Totale descrizioni distinte: " -#: apt-private/private-install.cc:612 -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-cache.cc:329 +msgid "Total dependencies: " +msgstr "Totale dipendenze: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " -"(o specificare una soluzione)." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Totale relazioni ver/file: " -#: apt-private/private-install.cc:628 -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 "" -"Alcuni pacchetti non possono essere installati. Questo può voler dire\n" -"che è stata richiesta una situazione impossibile oppure, se si sta\n" -"usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n" -"non sono ancora stati creati o sono stati rimossi da Incoming." +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Totale relazioni desc/file: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Pacchetti danneggiati" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Totale corrispondenze fornite: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "I seguenti pacchetti saranno inoltre installati:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Totale stringhe globalizzate: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Pacchetti suggeriti:" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Totale spazio dipendenza di versione: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Pacchetti raccomandati:" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Totale spazio inutilizzato: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Viene saltato %s poiché è già installato e l'aggiornamento non è impostato.\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Totale spazio occupato: " -#: apt-private/private-install.cc:819 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Viene saltato %s poiché non è installato e sono richiesti solo gli " -"aggiornamenti.\n" +msgid "Package file %s is out of sync." +msgstr "Il file dei pacchetti %s non è sincronizzato." -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nessun pacchetto trovato" -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s è già alla versione più recente.\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "È necessario specificare almeno un modello per la ricerca" -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" +"Questo comando è deprecato. Utilizzare \"apt-mark showauto\" al suo posto." -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versione \"%s\" (%s) selezionata per \"%s\" per via di \"%s\"\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "File dei pacchetti:" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"Il pacchetto \"%s\" non è installato e quindi non è stato rimosso: si " -"intendeva \"%s\"?\n" +"La cache non è sincronizzata, impossibile referenziare un file di pacchetti" -#: apt-private/private-install.cc:937 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Il pacchetto \"%s\" non è installato e quindi non è stato rimosso\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pacchetti con gancio:" -#: apt-private/private-main.cc:32 -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 "" -"Nota: questa è solo una simulazione.\n" -" apt-get necessita dei privilegi di root per la normale esecuzione.\n" -" Inoltre, il meccanismo di blocco non è attivato e non è quindi\n" -" utile dare importanza a tutto ciò per una situazione reale." +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(non trovato)" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati." +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installato: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avviso di autenticazione disabilitato.\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Alcuni pacchetti non possono essere autenticati" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nessuno)" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installare questi pacchetti senza verificarli?" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Gancio del pacchetto: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Impossibile recuperare %s %s\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabella versione:" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Analisi di %s non riuscita: modificare nuovamente?" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s per %s compilato il %s %s\n" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-cache.cc:1749 +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 "" -"Il proprio file \"%s\" è stato modificato: eseguire \"apt-get update\"." - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "Ricerca sul testo" +"Uso: apt-cache [OPZIONI] COMANDO\n" +" apt-cache [OPZIONI] showpkg PKG1 [PKG2 ...]\n" +" apt-cache [OPZIONI] showsrc PKG1 [PKG2 ...]\n" +"\n" +"apt-cache è uno strumento di basso livello usato per cercare informazioni \n" +"nei file di cache dei binari di APT\n" +"\n" +"Comandi:\n" +" gencaches - Costruisce sia la cache dei pacchetti sia quella dei " +"sorgenti\n" +" showpkg - Mostra informazioni generali per un singolo pacchetto\n" +" showsrc - Mostra i campi dei sorgenti\n" +" stats - Mostra alcune statistiche di base\n" +" dump - Mostra il file in forma compatta\n" +" dumpavail - Stampa un file \"available\" sullo stdout\n" +" unmet - Mostra le dipendenze non soddisfatte\n" +" search - Cerca nell'elenco dei pacchetti un'espressione regolare\n" +" show - Mostra un campo leggibile per il pacchetto specificato\n" +" depends - Mostra informazioni di dipendenza per un pacchetto\n" +" rdepends - Mostra informazioni di dipendenza all'incontrario per un " +"pacchetto\n" +" pkgnames - Elenca i nomi di tutti i pacchetti nel sistema\n" +" dotty - Genera un grafo dei pacchetti per GraphViz\n" +" xvcg - Genera un grafo dei pacchetti per xvcg\n" +" policy - Mostra le preferenze adottate\n" +"\n" +"Opzioni:\n" +" -h Mostra questo aiuto\n" +" -p=? La cache dei pacchetti\n" +" -s=? La cache dei sorgenti\n" +" -q Disabilita l'indicatore di avanzamento\n" +" -i Mostra solo dipendenze importanti per il comando unmet\n" +" -c=? Legge come configurazione il file specificato\n" +" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" +"Per maggiori informazioni, consultare le pagine di manuale apt-cache(8) e \n" +"apt.conf(5).\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Trovato " +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Dare un nome a questo disco, tipo \"Debian 5.0.3 Disco 1\"" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Scaricamento di:" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Inserire un disco nell'unità e premere Invio" -# (ndt) questa non so cosa voglia dire -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Mount di \"%s\" su \"%s\" non riuscito" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Impossibile rilevare automaticamente un CD-ROM oppure è stato trovato con " +"il\n" +"punto di mount predefinito.\n" +"Provare l'opzione --cdrom per impostare il punto di mount del CD-ROM.\n" +"Per maggiori informazioni sull'autorilevamento e sul punto di mount\n" +"del CD-ROM, consultare \"man apt-cdrom\"." -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Recuperati %sB in %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Ripetere questo processo per il resto dei CD." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [In lavorazione]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argomenti non in coppia" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Cambio disco: inserire il disco chiamato\n" -" \"%s\"\n" -"nell'unità \"%s\" e premere Invio\n" +"Uso: apt-config [OPZIONI] COMANDO\n" +"\n" +"apt-config è uno strumento per leggere il file di configurazione di APT\n" +"\n" +"Comandi:\n" +" shell - Modalità shell\n" +" dump - Mostra la configurazione\n" +"\n" +"Opzioni\n" +" -h Mostra questo aiuto\n" +" -c=? Legge come configurazione il file specificato\n" +" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Unable to read %s" -msgstr "Impossibile leggere %s" +msgid "Can not find a package for architecture '%s'" +msgstr "Impossibile trovare un pacchetto per l'architettura \"%s\"" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#: cmdline/apt-get.cc:327 #, c-format -msgid "Unable to change to %s" -msgstr "Impossibile passare a %s" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Impossibile trovare un pacchetto \"%s\" con versione \"%s\"" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:330 #, c-format -msgid "No mirror file '%s' found " -msgstr "Nessun file mirror \"%s\" trovato " +msgid "Can not find a package '%s' with release '%s'" +msgstr "Impossibile trovare un pacchetto \"%s\" con release \"%s\"" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Impossibile leggere il file mirror \"%s\"" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:423 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nessuna voce trovata nel file mirror \"%s\"" +msgid "Can not find version '%s' of package '%s'" +msgstr "Impossibile trovare la versione \"%s\" del pacchetto \"%s\"" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:454 #, c-format -msgid "[Mirror: %s]" -msgstr "[Mirror: %s]" +msgid "Couldn't find package %s" +msgstr "Impossibile trovare il pacchetto %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Creazione di una pipe IPC verso il sottoprocesso non riuscita" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "È stato impostato %s per l'installazione manuale.\n" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Connessione chiusa prematuramente" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s impostato automaticamente come installato.\n" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Impostazione predefinita errata." +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Questo comando è deprecato. Utilizzare \"apt-mark auto\" e \"apt-mark manual" +"\" al suo posto." -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Premere Invio per continuare." +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Eliminare tutti i file .deb precedentemente scaricati?" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Impossibile bloccare la directory di scaricamento" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -"Si sono verificati alcuni errori nell'estrazione. Verrà tentata la " -"configurazione" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "dei pacchetti installati. Questo potrebbe generare errori duplicati" +"È necessario specificare almeno un pacchetto di cui recuperare il sorgente" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "o errori causati da dipendenze mancanti. Questo non causa problemi," +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Impossibile trovare un pacchetto sorgente per %s" -#: dselect/install:105 +#: cmdline/apt-get.cc:786 +#, c-format msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"gli errori precedenti sono importanti. Correggerli e rieseguire " -"l'installazione [I]" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Unione delle informazioni disponibili" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode invocata su un nodo ancora collegato" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Localizzazione dell'elemento hash non riuscita." - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Allocazione della deviazione non riuscita" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Errore interno in AddDiversion" +"Nota: il processo di pacchettizzazione di \"%s\" è mantenuto\n" +"all'interno del sistema di controllo della versione \"%s\" presso:\n" +"%s\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Tentativo di sovrascrivere una deviazione, %s -> %s e %s/%s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Utilizzare:\n" +"bzr branch %s\n" +"per recuperare gli ultimi (forse non rilasciati) aggiornamenti del " +"pacchetto.\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doppia aggiunta di deviazione %s -> %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "File di configurazione duplicato %s/%s" +msgid "Couldn't determine free space in %s" +msgstr "Impossibile determinare lo spazio libero in %s" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The path %s is too long" -msgstr "Il percorso %s è troppo lungo" +msgid "You don't have enough free space in %s" +msgstr "Lo spazio libero in %s è insufficiente" -#: apt-inst/extract.cc:132 +#. 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:891 #, c-format -msgid "Unpacking %s more than once" -msgstr "Estrazione di %s eseguita più di una volta" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" -#: apt-inst/extract.cc:142 +#. 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:896 #, c-format -msgid "The directory %s is diverted" -msgstr "La directory %s è deviata" +msgid "Need to get %sB of source archives.\n" +msgstr "È necessario scaricare %sB di sorgenti.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:902 #, 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" +msgid "Fetch source %s\n" +msgstr "Recupero sorgente %s\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Il percorso della deviazione è troppo lungo" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Recupero di alcuni archivi non riuscito." -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Scaricamento completato e in modalità solo scaricamento" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to stat %s" -msgstr "Impossibile eseguire stat su %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Rinomina di %s in %s non riuscita" +msgid "Unpack command '%s' failed.\n" +msgstr "Comando di estrazione \"%s\" non riuscito.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:963 #, 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" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Localizzazione del nodo nel suo hash bucket non riuscita" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Comando \"%s\" di generazione non riuscito.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Il percorso è troppo lungo" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Creazione processo figlio non riuscita" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"È necessario specificare almeno un pacchetto di cui controllare le " +"dipendenze di generazione" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Informazioni sull'architettura non disponibili per %s. Consultare apt." +"conf(5) APT::Architectures per l'impostazione" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Unable to stat %s" -msgstr "Impossibile eseguire stat su %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Failed to write file %s" -msgstr "Scrittura del file %s non riuscita" +msgid "%s has no build depends.\n" +msgstr "%s non ha dipendenze di generazione.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Failed to close file %s" -msgstr "Chiusura del file %s non riuscita" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"La dipendenza %s per %s non può essere soddisfatta perché %s non è " +"consentito su pacchetti \"%s\"" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Questo non è un archivio DEB valido: membro \"%s\" mancante" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " +"non può essere trovato" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Errore interno, impossibile trovare il membro %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "File \"control\" non analizzabile" +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" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Firma dell'archivio non valida" +#: cmdline/apt-get.cc:1351 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"La dipendenza %s per %s non può essere soddisfatta perché la versione " +"candidata del pacchetto %s non può soddisfare i requisiti di versione" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Errore nel leggere l'intestazione member dell'archivio" +#: cmdline/apt-get.cc:1357 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"La dipendenza %s per %s non può essere soddisfatta perché il pacchetto %s " +"non ha una versione candidata" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Invalid archive member header %s" -msgstr "Intestazione member dell'archivio %s non valida" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "La dipendenza %s per %s non è stata soddisfatta: %s" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Intestazione member dell'archivio non valida" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Le dipendenze di generazione per %s non sono state soddisfatte." -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "L'archivio è troppo piccolo" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Elaborazione delle dipendenze di generazione non riuscita" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Lettura delle intestazioni dell'archivio non riuscita" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Changelog per %s (%s)" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Creazione delle pipe non riuscita" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Moduli supportati:" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Esecuzione di gzip non riuscita " +#: cmdline/apt-get.cc:1632 +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 "" +"Uso: apt-get [OPZIONI] COMANDO\n" +" apt-get [OPZIONI] install|remove PKG1 [PKG2 ...]\n" +" apt-get [OPZIONI] source PKG1 [PKG2 ...]\n" +"\n" +"apt-get è una semplice interfaccia a riga di comando per scaricare \n" +"e installare pacchetti. I comandi più usati sono update e install.\n" +"\n" +"Comandi:\n" +" update - Scarica l'elenco aggiornato dei pacchetti\n" +" upgrade - Esegue un aggiornamento dei pacchetti installati\n" +" install - Installa nuovi pacchetti (PKG è libc6 non libc6.deb)\n" +" remove - Rimuove i pacchetti\n" +" autoremove - Rimuove automaticamente i pacchetti inutilizzati\n" +" purge - Rimuove i pacchetti e la loro configurazione\n" +" source - Scarica i pacchetti sorgente\n" +" build-dep - Configura le dipendenze di generazione per i pacchetti " +"sorgente\n" +" dist-upgrade - Esegue un avanzamento della distribuzione, consultare apt-" +"get(8)\n" +" dselect-upgrade - Segue le selezioni di dselect\n" +" clean - Elimina i file dei pacchetti scaricati\n" +" autoclean - Elimina i vecchi pacchetti scaricati\n" +" check - Verifica che non ci siano dipendenze insoddisfatte\n" +" changelog - Scarica e visualizza il changelog per il pacchetto indicato\n" +" download - Scarica il pacchetto binario nella directory attuale\n" +"\n" +"Opzioni:\n" +" -h Mostra questo aiuto\n" +" -q Output registrabile, nessun indicatore di avanzamento\n" +" -qq Nessun output eccetto gli errori\n" +" -d Scarica solamente, NON installa o decomprime gli archivi\n" +" -s Nessuna azione, simula i passi in ordine\n" +" -y Assume una risposta affermativa a tutte le domande e non chiede " +"conferma\n" +" -f Tenta di continuare se il controllo di integrità non riesce\n" +" -m Tenta di continuare se gli archivi non sono localizzabili\n" +" -u Mostra anche un elenco dei pacchetti aggiornati\n" +" -b Genera il pacchetto sorgente dopo averlo recuperato\n" +" -V Mostra prolissamente i numeri di versione\n" +" -c=? Legge come configurazione il file specificato\n" +" -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n" +"Per maggiori informazioni e opzioni, consultare le pagine di manuale\n" +"apt-get(8), sources.list(5) e apt.conf(5).\n" +" Questo APT ha i poteri della Super Mucca.\n" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archivio danneggiato" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "È necessario specificare almeno una coppia URL/nome file" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Checksum di tar non riuscito, archivio danneggiato" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "Scaricamento non riuscito" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" +"Uso: apt-helper [OPZIONI] COMANDO\n" +" apt-helper [OPZIONI] download-file uri percorso\n" +"\n" +"apt-helper è un programma d'aiuto interno per apt\n" +"\n" +"Comandi:\n" +" download-file Scarica l'URI fornito in percorso\n" +"\n" +" Questo APT ha super poteri.\n" + +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Intestazione TAR di tipo %u sconosciuta, member %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s non può essere segnato perché non è installato.\n" + +#: cmdline/apt-mark.cc:74 +#, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s è già stato impostato come installato manualmente.\n" + +#: cmdline/apt-mark.cc:76 +#, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s è già stato impostato come installato automaticamente.\n" + +#: cmdline/apt-mark.cc:241 +#, c-format +msgid "%s was already set on hold.\n" +msgstr "%s è già stato impostato come bloccato.\n" + +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" +msgstr "%s era già non bloccato.\n" + +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, c-format +msgid "%s set on hold.\n" +msgstr "%s impostato come bloccato.\n" + +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, c-format +msgid "Canceled hold on %s.\n" +msgstr "Blocco su %s annullato.\n" + +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Esecuzione di dpkg non riuscita. È stato lanciato come root?" + +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Uso: apt-mark [OPZIONI] {auto|manual} PKG1 [PKG2 ...]\n" +"\n" +"apt-mark è una semplice interfaccia a riga di comando per segnalare i " +"pacchetti\n" +"come installati manualmente o automaticamente. Può anche elencare le " +"segnalazioni.\n" +"\n" +"Comandi:\n" +" auto Segna i pacchetti forniti come installati automaticamente\n" +" manual Segna i pacchetti forniti come installati manualmente\n" +" hold Segna un pacchetto come bloccato a una vecchia versione\n" +" unhold Sblocca un pacchetto bloccato a una vecchia versione\n" +" showauto Stampa l'elenco dei pacchetti installati automaticamente\n" +" showmanual Stampa l'elenco dei pacchetti installati manualmente\n" +" showhold Stampa l'elenco dei pacchetti bloccati\n" +"\n" +"Opzioni:\n" +" -h Mostra questo aiuto\n" +" -q Output registrabile, nessun indicatore di avanzamento\n" +" -qq Nessun output eccetto gli errori\n" +" -s Nessuna azione, stampa solamente cosa verrebbe fatto\n" +" -f Legge/Scrivere la segnalazione nel file fornito\n" +" -c=? Legge come configurazione il file specificato\n" +" -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tm\n" +"Per maggiori informazioni, consultare le pagine di manuale apt-mark(8) e\n" +"apt.conf(5)." + +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" +"Uso: apt [OPZIONI] COMANDO\n" +"\n" +"Interfaccia a riga di comando per apt.\n" +"Comandi di base:\n" +" list Elenca i pacchetti in base al nome\n" +" search Cerca tra le descrizioni dei pacchetti\n" +" show Mostra dettagli di un pacchetto\n" +"\n" +" update Aggiorna l'elenco dei pacchetti disponibili\n" +"\n" +" install Installa pacchetti\n" +" remove Rimuove pacchetti\n" +"\n" +" upgrade Esegue l'avanzamento di versione del sistema installando e\n" +" aggiornando i pacchetti\n" +" full-upgrade Esegue l'avanzamento di versione del sistema rimuovendo,\n" +" installando e aggiornando i pacchetti\n" +"\n" +" edit-sources Modifica il file sulle informazioni delle sorgenti\n" -#: apt-pkg/clean.cc:61 +#: methods/cdrom.cc:203 #, c-format -msgid "Unable to stat %s." -msgstr "Impossibile eseguire stat su %s." +msgid "Unable to read the cdrom database %s" +msgstr "Impossibile leggere il database del CD-ROM %s" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "Avanzamento: [%3i%%]" +#: 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 "" +"Usare apt-cdrom per far riconoscere questo CD-ROM da APT. apt-get update non " +"può essere usato per aggiungere nuovi CD-ROM" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Esecuzione di dpkg" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM sbagliato" -#: apt-pkg/init.cc:146 +#: methods/cdrom.cc:249 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Il sistema di pacchetti \"%s\" non è supportato" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso." -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco non trovato" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Scritti %i record.\n" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "File non trovato" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Scritti %i record con %i file mancanti.\n" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Esecuzione di stat non riuscita" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Scritti %i record con %i file senza corrispondenze\n" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Impostazione della data di modifica non riuscita" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Scritti %i record con %i file mancanti e %i file senza corrispondenze\n" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI non valido, gli URI locali non devono iniziare con //" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Impossibile trovare il record di autenticazione per %s" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Accesso in corso" -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash non corrispondente per %s" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Impossibile determinare il nome del nodo" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Impossibile trovare un driver per il metodo %s." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Impossibile determinare il nome locale" -#: apt-pkg/acquire-worker.cc:118 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Is the package %s installed?" -msgstr "Il pacchetto %s è installato?" +msgid "The server refused the connection and said: %s" +msgstr "Il server ha rifiutato la connessione e riporta: %s" -#: apt-pkg/acquire-worker.cc:169 +#: methods/ftp.cc:225 #, c-format -msgid "Method %s did not start correctly" -msgstr "Il metodo %s non si è avviato correttamente" +msgid "USER failed, server said: %s" +msgstr "USER non riuscito, il server riporta: %s" -#: apt-pkg/acquire-worker.cc:455 +#: methods/ftp.cc:232 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Inserire il disco chiamato \"%s\" nell'unità \"%s\" e premere Invio." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"L'elenco dei pacchetti o il file di stato non può essere letto o aperto." +msgid "PASS failed, server said: %s" +msgstr "PASS non riuscito, il server riporta: %s" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"È consigliato eseguire \"apt-get update\" per correggere questi problemi" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Impossibile leggere l'elenco dei sorgenti." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache dei pacchetti vuota" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Il file della cache dei pacchetti è danneggiato" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "La versione del file della cache dei pacchetti è incompatibile" - -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Il file cache del pacchetto è danneggiato, è troppo piccolo" +"È stato specificato un server proxy, ma nessuno script di accesso: Acquire::" +"ftp::ProxyLogin è vuoto." -#: apt-pkg/pkgcache.cc:174 +#: methods/ftp.cc:280 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Questo APT non supporta il sistema di versione \"%s\"" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -"Il file della cache dei pacchetti è stato generato per un'altra architettura" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dipende" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pre-dipende" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Consiglia" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Raccomanda" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Va in conflitto" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Sostituisce" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Rende obsoleto" - -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Rompe" - -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Migliora" - -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "richiesto" - -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" - -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opzionale" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Il file indice di tipo \"%s\" non è supportato" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La cache ha un sistema di gestione delle versioni incompatibile" +"Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:306 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Si è verificato un errore nell'elaborare %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"È stato superato il numero di nomi di pacchetti che questo APT può gestire." +msgid "TYPE failed, server said: %s" +msgstr "TYPE non riuscito, il server riporta: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "È stato superato il numero di versioni che questo APT può gestire." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Connessione scaduta" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "È stato superato il numero di descrizioni che questo APT può gestire." +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Il server ha chiuso la connessione" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Una risposta ha superato le dimensioni del buffer." -# (ndt) il primo è il nome del pacchetto, il secondo la versione -#: apt-pkg/pkgcachegen.cc:576 -#, 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" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocollo danneggiato" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Impossibile creare un socket" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lettura elenco dei pacchetti" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Impossibile connettersi al socket dati, tempo esaurito per la connessione" -# (ndt) non mi convince per niente, ma vediamo cosa salta fuori -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Il file fornisce" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Non riuscito" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Impossibile scrivere in %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Impossibile connettersi alla socket passiva." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Errore di I/O nel salvare la cache sorgente" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Impossibile ottenere un socket in ascolto con getaddrinfo()" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Invia lo scenario al solver" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Impossibile eseguire bind() su un socket" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Invia la richiesta al solver" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Impossibile eseguire listen() su un socket" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Preparazione alla ricezione della soluzione" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Impossibile determinare il nome del socket" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "Il solver esterno è terminato senza un errore di messaggio" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Impossibile inviare il comando PORT" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Esecuzione solver esterno" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "rename() non riuscita: %s (%s -> %s)." +msgid "EPRT failed, server said: %s" +msgstr "EPRT non riuscito, il server riporta: %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Somma hash non corrispondente" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Connessione al socket dati terminata" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Le dimensioni non corrispondono" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossibile accettare connessioni" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "Formato file non valido" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Si è verificato un problema nel creare l'hash del file" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Impossibile trovare la voce \"%s\" nel file Release (voce in sources.list " -"errata o file danneggiato)" +msgid "Unable to fetch file, server said '%s'" +msgstr "Impossibile recuperare il file, il server riporta: \"%s\"" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Socket dati terminato" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:935 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Impossibile trovare la somma hash per \"%s\" nel file Release" +msgid "Data transfer failed, server said '%s'" +msgstr "Trasferimento dati non riuscito, il server riporta: \"%s\"" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Non è disponibile alcuna chiave pubblica per i seguenti ID di chiavi:\n" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Interrogazione" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Il file Release per %s è scaduto (non valido dal %s). Gli aggiornamenti per " -"questo repository non verranno applicati." +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Impossibile invocare " -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" +msgid "Connecting to %s (%s)" +msgstr "Connessione a %s (%s)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:87 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Si è verificato un errore nel verificare la firma. Il repository non è " -"aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s\n" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:94 #, c-format -msgid "GPG error: %s: %s" -msgstr "Errore GPG: %s: %s" +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)" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:100 #, 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 "" -"Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario " -"sistemare manualmente questo pacchetto (a causa dell'architettura mancante)." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Impossibile iniziare la connessione a %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:108 #, 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\"" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata" -# (ndt) sarebbe da controllare se veramente possono esistere più file indice -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:126 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" " -"per il pacchetto %s." +msgid "Could not connect to %s:%s (%s)." +msgstr "Impossibile connettersi a %s:%s (%s)." -#: apt-pkg/vendorlist.cc:85 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Il blocco vendor %s non contiene impronte" +msgid "Connecting to %s" +msgstr "Connessione a %s" -# (ndt) sarebbe da controllare meglio assieme a quella dopo -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "List directory %spartial is missing." -msgstr "Manca la directory di liste %spartial." +msgid "Could not resolve '%s'" +msgstr "Impossibile risolvere \"%s\"" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Manca la directory di archivio %spartial." +msgid "Temporary failure resolving '%s'" +msgstr "Risoluzione di \"%s\" temporaneamente non riuscita" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:209 #, c-format -msgid "Unable to lock directory %s" -msgstr "Impossibile bloccare la directory %s" +msgid "System error resolving '%s:%s'" +msgstr "Errore di sistema nella risoluzione di \"%s:%s\"" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Scaricamento file %li di %li (%s rimanente)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "" +"Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Scaricamento file %li di %li" +msgid "Unable to connect to %s:%s:" +msgstr "Impossibile connettersi a %s:%s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Impossibile scaricare alcuni file di indice: saranno ignorati o verranno " -"usati quelli vecchi." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"È necessario inserire alcuni URI di tipo \"source\" nel file sources.list" +"Errore interno: firma corretta, ma non è possibile determinare l'impronta " +"della chiave." -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" -"Il valore \"%s\" non è valido per APT::Default-Release poiché tale release " -"non è disponibile dalle sorgenti" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "È stata trovata almeno una firma non valida." -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package" -"\"" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Impossibile comprendere il tipo di gancio %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Priorità per il gancio non specificata (o zero)" +"Impossibile eseguire \"gpgv\" per verificare la firma (forse gpgv non è " +"installato)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Impossibile eseguire immediatamente la configurazione su \"%s\". Per " -"maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" -"Immediate-Configure\" (%d)." +"Il file con la firma in chiaro non è valido, ottenuto \"%s\" (la rete " +"richiede autenticazione?)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Impossibile configurare \"%s\". " +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Errore sconosciuto durante l'esecuzione di gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Le seguenti firme non erano valide:\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"L'installazione necessita della rimozione temporanea del pacchetto " -"essenziale %s a causa di un ciclo conflitto/pre-dipendenza. Questa è una " -"situazione critica, ma se si vuole realmente procedere, attivare l'opzione " -"APT::Force-LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Riga %u troppo lunga nel file %s." +"Le seguenti firme non sono state verificate perché la chiave pubblica non è " +"disponibile:\n" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Smontaggio CD-ROM...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "File vuoti non possono essere archivi validi" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Viene usato il punto di mount del CD-ROM %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Errore nello scrivere sul file" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "In attesa del disco...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montaggio CD-ROM...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Errore nel leggere dal server" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificazione... " +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Errore nello scrivere su file" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etichette archiviate: %s\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Select non riuscita" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Analisi del disco per file indice...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Connessione terminata" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Trovati %zu indici di pacchetto, %zu indici di sorgente, %zu indici di " -"traduzione e %zu firme\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Errore nello scrivere sul file di output" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Impossibile trovare alcun file di pacchetto. Questo potrebbe non essere un " -"disco Debian o potrebbe essere l'architettura errata." +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "In attesa degli header" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Trovata l'etichetta \"%s\"\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Riga header non corretta" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Questo non è un nome valido, riprovare.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Il server HTTP ha inviato un header di risposta non valido" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Questo disco è chiamato: \n" -"\"%s\"\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Il server HTTP ha inviato un header Content-Length non valido" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copia elenco pacchetti..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Il server HTTP ha inviato un header Content-Range non valido" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Scrittura nuovo elenco sorgenti\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Questo server HTTP ha un supporto del range non corretto" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato della data sconosciuto" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " -"archivio." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Header dati non corretto" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo " -"potrebbe essere causato da pacchetti bloccati." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Connessione non riuscita" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" -"Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Errore interno" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Generazione albero delle dipendenze" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calcolo dell'aggiornamento... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versioni candidate" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Eseguito" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generazione delle dipendenze" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Ordinamento" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lettura informazioni sullo stato" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "Elencazione" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Apertura del file di stato %s non riuscita" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "C'è %i versione aggiuntiva: usare \"-a\" per visualizzarla" +msgstr[1] "Ci sono %i versioni aggiuntive: usare \"-a\" per visualizzarle" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Scrittura del file temporaneo di stato %s non riuscita" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Correzione delle dipendenze..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Impossibile analizzare il file di pacchetto %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " non riuscita." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Impossibile analizzare il file di pacchetto %s (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Impossibile correggere le dipendenze" -# (ndt) dovrebbe essere inteso il file Release -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release \"%s\" per \"%s\" non trovato." +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Impossibile minimizzare l'insieme da aggiornare" + +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fatto" + +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "È utile eseguire \"apt-get -f install\" per correggere ciò." + +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dipendenze non trovate. Riprovare usando -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "sconosciuto" -# (ndt) dovrebbe essere inteso il Version -#: apt-pkg/cacheset.cc:492 +#: apt-private/private-output.cc:234 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Version \"%s\" per \"%s\" non trovato" +msgid "[installed,upgradable to: %s]" +msgstr "[installato, aggiornabile a: %s]" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Impossibile trovare il task \"%s\"" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[installato, locale]" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "" -"Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[installato, auto-rimovibile]" -#: apt-pkg/cacheset.cc:615 -#, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Impossibile trovare alcun pacchetto tramite il glob \"%s\"" +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[installato, automatico]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Impossibile selezionare le versioni dal pacchetto \"%s\" poiché è virtuale" +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[installato]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Impossibile selezionare la versione installata o la candidata dal pacchetto " -"\"%s\" poiché non sono presenti" +msgid "[upgradable from: %s]" +msgstr "[aggiornabile da: %s]" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Impossibile selezionare la versione più recente dal pacchetto \"%s\" poiché " -"è virtuale" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[configurazione residua]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" -"Impossibile selezionare la versione candidata dal pacchetto %s poiché non ha " -"alcun candidato" +msgid "but %s is installed" +msgstr "ma la versione %s è installata" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Impossibile selezionare la versione installata dal pacchetto %s poiché non è " -"installato" +msgid "but %s is to be installed" +msgstr "ma la versione %s sta per essere installata" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Impossibile analizzare il file Release %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ma non è installabile" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Nessuna sezione nel file Release %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ma è un pacchetto virtuale" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Nessuna voce Hash nel file Release %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ma non è installato" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Voce \"Valid-Until\" nel file Release %s non valida" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ma non sta per essere installato" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Voce \"Date\" nel file Release %s non valida" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " oppure" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "La stanza %u nel file delle sorgenti %s non è corretta (analisi URI)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] non " -"analizzabile)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "I seguenti pacchetti NUOVI saranno installati:" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] troppo " -"corta)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "I seguenti pacchetti saranno RIMOSSI:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non è " -"un'assegnazione)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non ha una " -"chiave)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "I seguenti pacchetti saranno aggiornati:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "I seguenti pacchetti saranno RETROCESSI:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "I seguenti pacchetti bloccati saranno cambiati:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%s (due to %s) " +msgstr "%s (a causa di %s) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([%s] la chiave %s non " -"ha un valore)" +"ATTENZIONE: i seguenti pacchetti essenziali stanno per essere rimossi.\n" +"Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa " +"si sta facendo." -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "La riga %lu nel file %s non è corretta (URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aggiornati, %lu installati, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "La riga %lu nel file %s non è corretta (dist)" +msgid "%lu reinstalled, " +msgstr "%lu reinstallati, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "La riga %lu nel file %s non è corretta (URI parse)" +msgid "%lu downgraded, " +msgstr "%lu retrocessi, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "La riga %lu nel file %s non è corretta (absolute dist)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu da rimuovere e %lu non aggiornati.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "La riga %lu nel file %s non è corretta (dist parse)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu non completamente installati o rimossi.\n" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Apertura di %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "La riga %u nel file %s non è corretta (type)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: apt-pkg/sourcelist.cc:375 -#, 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 delle sorgenti %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "" -"Tipo \"%s\" non riconosciuto nella stanza %u nel file delle sorgenti %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Installazione di %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Il comando update non accetta argomenti" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-update.cc:90 #, c-format -msgid "Configuring %s" -msgstr "Configurazione di %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Rimozione di %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-show.cc:156 #, c-format -msgid "Completely removing %s" -msgstr "Rimozione completa di %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "C'è %i record aggiuntivo: usare \"-a\" per visualizzarlo" +msgstr[1] "Ci sono %i record aggiuntivi: usare \"-a\" per visualizzarli" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Notata la sparizione di %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "non un vero pacchetto (virtuale)" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Esecuzione comando di post installazione %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"Errore interno, InstallPackages è stato chiamato con un pacchetto " +"danneggiato." -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Directory \"%s\" mancante" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata." -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Impossibile aprire il file \"%s\"" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Errore interno, l'ordinamento non è stato terminato" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Preparazione di %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Le dimensioni non corrispondono. Inviare un'email a: apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Unpacking %s" -msgstr "Estrazione di %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "È necessario scaricare %sB/%sB di archivi.\n" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing to configure %s" -msgstr "Preparazione alla configurazione di %s" +msgid "Need to get %sB of archives.\n" +msgstr "È necessario scaricare %sB di archivi.\n" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Installed %s" -msgstr "Pacchetto %s installato" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparazione alla rimozione di %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Dopo quest'operazione, verranno liberati %sB di spazio su disco.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: apt-private/private-install.cc:200 #, c-format -msgid "Removed %s" -msgstr "Pacchetto %s rimosso" +msgid "You don't have enough free space in %s." +msgstr "Spazio libero in %s insufficiente." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparazione alla rimozione completa di %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Si sono verificati dei problemi ed è stata usata -y senza --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Pacchetto %s rimosso completamente" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"È stata specificata la modalità \"Trivial Only\", ma questa non è " +"un'operazione banale." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) non riuscita" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sì, esegui come da richiesta." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: apt-private/private-install.cc:222 #, c-format -msgid "Can not write log (%s)" -msgstr "Impossibile scrivere il registro (%s)" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Si sta per compiere un'azione potenzialmente pericolosa.\n" +"Per continuare scrivere la frase \"%s\"\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "È /dev/pts montato?" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Interrotto." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "stdout è un terminale?" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Continuare?" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "L'operazione è stata interrotta prima di essere completata" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Scaricamento di alcuni file non riuscito" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Segnalazione apport non scritta poiché è stato raggiunto il valore massimo " -"di MaxReports" +"Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-" +"get update\" o provare l'opzione \"--fix-missing\"." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "Problemi con le dipendenze - Viene lasciato non configurato" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing su supporti estraibili non è ancora supportato" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica la " -"presenza di un fallimento precedente." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Impossibile correggere i pacchetti mancanti." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore per disco pieno." +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Interruzione dell'installazione." -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore di memoria esaurita." +"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] "" +"Il seguente pacchetto è sparito dal sistema poiché\n" +"tutti i file sono stati sovrascritti da altri pacchetti:" +msgstr[1] "" +"I seguenti pacchetti sono spariti dal sistema poiché\n" +"tutti i file sono stati sovrascritti da altri pacchetti:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: questo viene svolto automaticamente e volutamente da dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore nel sistema locale." +"Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore di I/O di dpkg." +"Sembra che AutoRemover abbia rovinato qualcosa e questo\n" +"non doveva accadere. Segnalare un bug riguardo apt." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Impossibile acquisire il blocco sulla directory di amministrazione (%s). Un " -"altro processo potrebbe tenerla occupata." +"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] "" +"Il seguente pacchetto è stato installato automaticamente e non è più " +"richiesto:" +msgstr[1] "" +"I seguenti pacchetti sono stati installati automaticamente e non sono più " +"richiesti:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +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 pacchetto è stato installato automaticamente e non è più richiesto.\n" +msgstr[1] "" +"%lu pacchetti sono stati installati automaticamente e non sono più " +"richiesti.\n" + +#: apt-private/private-install.cc:519 +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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Impossibile acquisire il blocco sulla directory di amministrazione (%s). È " -"necessario essere root." +"È utile eseguire \"apt-get -f install\" per correggere questi problemi:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"dpkg è stato interrotto. È necessario eseguire \"%s\" per correggere il " -"problema. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non bloccato" +"Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " +"(o specificare una soluzione)." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lig %lih %limin %lis" +#: apt-private/private-install.cc:638 +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 "" +"Alcuni pacchetti non possono essere installati. Questo può voler dire\n" +"che è stata richiesta una situazione impossibile oppure, se si sta\n" +"usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n" +"non sono ancora stati creati o sono stati rimossi da Incoming." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pacchetti danneggiati" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "I seguenti pacchetti saranno inoltre installati:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pacchetti suggeriti:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pacchetti raccomandati:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Viene saltato %s poiché è già installato e l'aggiornamento non è impostato.\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:829 #, c-format -msgid "Selection %s not found" -msgstr "Selezione %s non trovata" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Viene saltato %s poiché non è installato e sono richiesti solo gli " +"aggiornamenti.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:841 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Blocco disabilitato per il file di blocco in sola lettura %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:846 #, c-format -msgid "Could not open lock file %s" -msgstr "Impossibile aprire il file di blocco %s" +msgid "%s is already the newest version.\n" +msgstr "%s è già alla versione più recente.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:894 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Blocco disabilitato per il file di blocco %s montato via nfs" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:899 #, c-format -msgid "Could not get lock %s" -msgstr "Impossibile impostare il blocco %s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versione \"%s\" (%s) selezionata per \"%s\" per via di \"%s\"\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "List of files can't be created as '%s' is not a directory" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"L'elenco dei file non può essere creato poiché \"%s\" non è una directory" +"Il pacchetto \"%s\" non è installato e quindi non è stato rimosso: si " +"intendeva \"%s\"?\n" -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Il pacchetto \"%s\" non è installato e quindi non è stato rimosso\n" + +#: apt-private/private-main.cc:32 +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 "" -"Viene ignorato \"%s\" nella directory \"%s\" poiché non è un file regolare" +"Nota: questa è solo una simulazione.\n" +" apt-get necessita dei privilegi di root per la normale esecuzione.\n" +" Inoltre, il meccanismo di blocco non è attivato e non è quindi\n" +" utile dare importanza a tutto ciò per una situazione reale." -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati." + +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Avviso di autenticazione disabilitato.\n" + +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Alcuni pacchetti non possono essere autenticati" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installare questi pacchetti senza verificarli?" + +#: apt-private/private-sources.cc:58 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"Viene ignorato il file \"%s\" nella directory \"%s\" poiché non ha " -"un'estensione" +msgid "Failed to parse %s. Edit again? " +msgstr "Analisi di %s non riuscita: modificare nuovamente?" -#: apt-pkg/contrib/fileutl.cc:421 +#: apt-private/private-sources.cc:70 #, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"Viene ignorato il file \"%s\" nella directory \"%s\" poiché ha un'estensione " -"non valida" +"Il proprio file \"%s\" è stato modificato: eseguire \"apt-get update\"." -#: apt-pkg/contrib/fileutl.cc:824 +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "Ricerca sul testo" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Trovato " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Scaricamento di:" + +# (ndt) questa non so cosa voglia dire +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Recuperati %sB in %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "Il sottoprocesso %s ha ricevuto il segnale %u." +msgid " [Working]" +msgstr " [In lavorazione]" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Il sottoprocesso %s ha restituito un codice d'errore (%u)" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Cambio disco: inserire il disco chiamato\n" +" \"%s\"\n" +"nell'unità \"%s\" e premere Invio\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Il sottoprocesso %s è uscito inaspettatamente" +msgid "No mirror file '%s' found " +msgstr "Nessun file mirror \"%s\" trovato " -#: apt-pkg/contrib/fileutl.cc:913 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Si è verificato un problema nel chiudere il file gzip %s" +msgid "Can not read mirror file '%s'" +msgstr "Impossibile leggere il file mirror \"%s\"" -#: apt-pkg/contrib/fileutl.cc:1101 +#: methods/mirror.cc:315 #, c-format -msgid "Could not open file %s" -msgstr "Impossibile aprire il file %s" +msgid "No entry found in mirror file '%s'" +msgstr "Nessuna voce trovata nel file mirror \"%s\"" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: methods/mirror.cc:445 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Impossibile aprire il descrittore del file %d" +msgid "[Mirror: %s]" +msgstr "[Mirror: %s]" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Creazione di un sottoprocesso IPC non riuscita" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Creazione di una pipe IPC verso il sottoprocesso non riuscita" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Esecuzione non riuscita del compressore " +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Connessione chiusa prematuramente" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "lettura, ancora %llu da leggere, ma non è stato trovato nulla" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Impostazione predefinita errata." -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "scrittura, ancora %llu da scrivere, ma non è possibile" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Premere Invio per continuare." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Si è verificato un problema nel chiudere il file %s" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Eliminare tutti i file .deb precedentemente scaricati?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Si è verificato un problema nel rinominare il file %s in %s" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Si sono verificati alcuni errori nell'estrazione. Verrà tentata la " +"configurazione" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Si è verificato un problema nell'eseguire l'unlink del file %s" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "dei pacchetti installati. Questo potrebbe generare errori duplicati" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Si è verificato un problema nel sincronizzare il file" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "o errori causati da dipendenze mancanti. Questo non causa problemi," -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Errore" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "" +"gli errori precedenti sono importanti. Correggerli e rieseguire " +"l'installazione [I]" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fatto" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Unione delle informazioni disponibili" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode invocata su un nodo ancora collegato" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Localizzazione dell'elemento hash non riuscita." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Impossibile eseguire mmap su un file vuoto" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Allocazione della deviazione non riuscita" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Impossibile duplicare il descrittore del file %i" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Errore interno in AddDiversion" -#: apt-pkg/contrib/mmap.cc:119 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Impossibile creare mmap di %llu byte" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Tentativo di sovrascrivere una deviazione, %s -> %s e %s/%s" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Impossibile chiudere mmap" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Doppia aggiunta di deviazione %s -> %s" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Impossibile sincronizzare mmap" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "File di configurazione duplicato %s/%s" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Impossibile eseguire mmap di %lu byte" +msgid "The path %s is too long" +msgstr "Il percorso %s è troppo lungo" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Troncamento del file non riuscito" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Estrazione di %s eseguita più di una volta" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/extract.cc:142 #, 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 "" -"MMap dinamica esaurita. Aumentare la dimensione di APT::Cache-Start. Il " -"valore attuale è: %lu (man 5 apt.conf)." +msgid "The directory %s is diverted" +msgstr "La directory %s è deviata" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/extract.cc:152 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -"Impossibile incrementare la dimensione della MMap poiché il limite di %lu " -"byte è stato raggiunto." +"Il pacchetto sta cercando di scrivere nell'obiettivo di deviazione %s/%s" -# (ndt) lunghetta... -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Impossibile incrementare la dimensione della MMap poiché il " -"ridimensionamento automatico è stato disabilitato dall'utente." +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Il percorso della deviazione è troppo lungo" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Impossibile eseguire stat sul punto di mount %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Esecuzione di stat sul CD-ROM non riuscita" +msgid "Failed to stat %s" +msgstr "Impossibile eseguire stat su %s" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Tipo di abbreviazione non riconosciuto: \"%c\"" +msgid "Failed to rename %s to %s" +msgstr "Rinomina di %s in %s non riuscita" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:249 #, c-format -msgid "Opening configuration file %s" -msgstr "Apertura file di configurazione %s" +msgid "The directory %s is being replaced by a non-directory" +msgstr "La directory %s sta per essere sostituita da una non-directory" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Errore di sintassi %s:%u: il blocco inizia senza nome" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Localizzazione del nodo nel suo hash bucket non riuscita" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Errore di sintassi %s:%u: tag non corretto" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Il percorso è troppo lungo" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Errore di sintassi %s:%u: caratteri extra dopo il valore" +msgid "Overwrite package match with no version for %s" +msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Errore di sintassi %s:%u: le direttive possono essere fatte solo al livello " -"più alto" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Errore di sintassi %s:%u: troppe inclusioni annidate" +msgid "Unable to stat %s" +msgstr "Impossibile eseguire stat su %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Errore di sintassi %s:%u: incluso da qui" +msgid "Failed to write file %s" +msgstr "Scrittura del file %s non riuscita" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata" +msgid "Failed to close file %s" +msgstr "Chiusura del file %s non riuscita" -# (ndt) sarebbe da controllare meglio... -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Errore di sintassi %s:%u: la direttiva clear richiede un albero di opzioni " -"come argomento" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Questo non è un archivio DEB valido: membro \"%s\" mancante" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Errore di sintassi %s:%u: caratteri extra alla fine del file" +msgid "Internal error, could not locate member %s" +msgstr "Errore interno, impossibile trovare il membro %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Nessun portachiavi installato in %s." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "File \"control\" non analizzabile" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opzione a riga di comando \"%c\" [da %s] sconosciuta." +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Firma dell'archivio non valida" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Opzione a riga di comando %s non comprensibile" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Errore nel leggere l'intestazione member dell'archivio" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Opzione a riga di comando %s non booleana" +msgid "Invalid archive member header %s" +msgstr "Intestazione member dell'archivio %s non valida" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "L'opzione %s richiede un argomento." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Intestazione member dell'archivio non valida" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Opzione %s: la specifica di configurazione dell'oggetto deve avere un " -"=<valore>." +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "L'archivio è troppo piccolo" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "L'opzione %s richiede un argomento intero, non \"%s\"" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Lettura delle intestazioni dell'archivio non riuscita" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opzione \"%s\" troppo lunga" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Creazione delle pipe non riuscita" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Il valore %s non è comprensibile, provare \"true\" o \"false\"." +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Esecuzione di gzip non riuscita " -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Archivio danneggiato" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Checksum di tar non riuscito, archivio danneggiato" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Operazione %s non valida" +msgid "Unknown TAR header type %u, member %s" +msgstr "Intestazione TAR di tipo %u sconosciuta, member %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3695,7 +3700,7 @@ msgstr "Lettura durante l'elaborazione MD5 non riuscita" msgid "Problem unlinking %s" msgstr "Problema nell'unlink di %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3747,6 +3752,9 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n" +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Errore interno, Upgrade ha rovinato qualche cosa" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s non è un pacchetto DEB valido." diff --git a/po/ja.po b/po/ja.po index f3b1866d2..5f0e5d459 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.16.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2014-03-21 19:53+0900\n" "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" @@ -16,3263 +16,3268 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8 bit\n" -"Plural-Forms: Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "インデックスファイルのタイプ '%s' はサポートされていません" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "パッケージ %s のバージョン %s には解決不可能な依存関係があります:\n" +msgid "Unable to read %s" +msgstr "%s を読み込むことができません" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "パッケージ名総数: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "%s へ変更することができません" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "パッケージ構造総数: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s の状態を取得できません。" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " 通常パッケージ: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "進捗: [%3i%%]" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " 純粋仮想パッケージ: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "dpkg を実行しています" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " 単一仮想パッケージ: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "パッケージングシステム '%s' はサポートされていません" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " 複合仮想パッケージ: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "適切なパッケージシステムタイプを特定できません" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " 欠落: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i レコードを書き込みました。\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "個別バージョン総数: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "個別説明総数: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "依存関係総数: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"%i レコードを書き込みました。%i 個のファイルが見つからず、%i 個の適合しない" +"ファイルがあります。\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "バージョン/ファイル関係総数: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "認証レコードが見つかりません: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "説明/ファイル関係総数: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "ハッシュサムが適合しません: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "提供マッピング総数: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "メソッドドライバ %s が見つかりません。" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Glob 文字列の総数: " +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "パッケージ %s はインストールされていますか?" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "総依存関係・バージョン容量: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "メソッド %s が正常に開始しませんでした" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "総空き容量: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"'%s' とラベルの付いたディスクをドライブ '%s' に入れて Enter キーを押してくだ" +"さい。" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "総占有容量: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"パッケージリストまたはステータスファイルを解釈またはオープンすることができま" +"せん。" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Package ファイル %s が同期していません。" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"これらの問題を解決するためには apt-get update を実行する必要があるかもしれま" +"せん" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "パッケージが見つかりません" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "ソースのリストを読むことができません。" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "検索パターンはちょうど 1 つだけ指定してください" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "空のパッケージキャッシュ" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"このコマンドは時代遅れです。'apt-mark showauto' を代わりに使用してください。" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "パッケージキャッシュファイルが壊れています" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "このパッケージキャッシュファイルは互換性がないバージョンです" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "パッケージキャッシュファイルが壊れています。短かすぎます" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "パッケージ %s が見つかりません" +msgid "This APT does not support the versioning system '%s'" +msgstr "この APT はバージョニングシステム '%s' をサポートしていません" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "パッケージファイル:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "パッケージキャッシュが異なるアーキテクチャ用に構築されています" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "キャッシュが同期しておらず、パッケージファイルを相互参照できません" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "依存" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pin されたパッケージ:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "先行依存" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(見つかりません)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "提案" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " インストールされているバージョン: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "推奨" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 候補: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "競合" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(なし)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "置換" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " パッケージ Pin: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "廃止" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " バージョンテーブル:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "破壊" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s コンパイル日時: %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "拡張" -#: cmdline/apt-cache.cc:1749 -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 "" -"使用方法: apt-cache [オプション] コマンド\n" -" apt-cache [オプション] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [オプション] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache は APT のバイナリキャッシュファイルを操作したり、そこから情\n" -"報を検索したりするための低レベルのツールです\n" -"\n" -"コマンド:\n" -" gencaches - パッケージおよびソースキャッシュを生成する\n" -" showpkg - 単一パッケージの一般情報を表示する\n" -" showsrc - ソースレコードを表示する\n" -" stats - 基本ステータス情報を表示する\n" -" dump - すべてのファイルを簡単な形式で表示する\n" -" dumpavail - available ファイルを標準出力に出力する\n" -" unmet - 未解決の依存関係を表示する\n" -" search - 正規表現パターンによってパッケージ一覧を検索する\n" -" show - パッケージの情報を表示する\n" -" depends - パッケージの生の依存情報を表示する\n" -" rdepends - パッケージの生の逆依存情報を表示する\n" -" pkgnames - システム内のすべてのパッケージ名一覧を表示する\n" -" dotty - GraphViz 用のパッケージグラフを生成する\n" -" xvcg - xvcg 用のパッケージグラフを生成する\n" -" policy - ポリシー設定情報を表示する\n" -"\n" -"オプション:\n" -" -h このヘルプを表示する\n" -" -p=? パッケージキャッシュ\n" -" -s=? ソースキャッシュ\n" -" -q プログレス表示をしない\n" -" -i umnet コマンドで重要な依存情報のみを表示する\n" -" -c=? 指定した設定ファイルを読み込む\n" -" -o=? 指定した設定オプションを読み込む (例: -o dir::cache=/tmp)\n" -"詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "重要" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "このディスクに、'Debian 5.0.3 Disk 1' のような名前を付けてください" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "要求" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "ディスクをドライブに入れて Enter キーを押してください" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "標準" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "'%s' を '%s' にマウントできませんでした" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "任意" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"CD-ROM が自動検出されなかったか、デフォルトで利用するマウントポイントに見当た" -"りませんでした。\n" -"CD-ROM のマウントポイントを設定するために --cdrom オプションを試すことができ" -"ます。\n" -"CD-ROM の自動検出およびマウントポイントの詳細については、'man apt-cdrom' を参" -"照してください。" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "特別" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" -"あなたの持っている CD セットの残り全部に、この手順を繰り返してください。" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "インデックスファイルのタイプ '%s' はサポートされていません" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "引数がペアではありません" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "正規表現の展開エラー - %s" -#: cmdline/apt-config.cc:89 -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 "" -"使用方法: apt-config [オプション] コマンド\n" -"\n" -"apt-config は APT の設定ファイルを読み込むための簡単なツールです\n" -"\n" -"コマンド:\n" -" shell - シェルモード\n" -" dump - 設定情報を表示する\n" -"\n" -"オプション:\n" -" -h このヘルプを表示する\n" -" -c=? 指定した設定ファイルを読み込む\n" -" -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "キャッシュに非互換なバージョニングシステムがあります" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "アーキテクチャ '%s' 用のパッケージは見つかりませんでした" +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s を処理中にエラーが発生しました (%s%d)" -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "パッケージ '%s' のバージョン '%s' は見つかりませんでした" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "この APT が対応している以上の数のパッケージが指定されました。" -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "リリース '%2$s' にはパッケージ '%1$s' は見つかりませんでした" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "この APT が対応している以上の数のバージョンが要求されました。" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "'%2$s' の代わりに '%1$s' をソースパッケージとして選出しています\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "この APT が対応している以上の数の説明が要求されました。" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "パッケージ '%2$s' のバージョン '%1$s' は見つかりませんでした" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "この APT が対応している以上の数の依存関係が発生しました。" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "パッケージ %s が見つかりません" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s は手動でインストールしたと設定されました。\n" +msgid "Couldn't stat source package list %s" +msgstr "ソースパッケージリスト %s の状態を取得できません" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "パッケージリストを読み込んでいます" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "ファイル提供情報を収集しています" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s は自動でインストールしたと設定されました。\n" +msgid "Unable to write to %s" +msgstr "%s に書き込めません" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"このコマンドは時代遅れです。'apt-mark auto' および 'apt-mark manual' を代わり" -"に使用してください。" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "ソースキャッシュの保存中に IO エラーが発生しました" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "内部エラー、問題リゾルバが何かを破壊しました" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "ソルバにシナリオを送信" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "ダウンロードディレクトリをロックできません" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "ソルバにリクエストを送信" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"ソースを取得するには少なくとも 1 つのパッケージ名を指定する必要があります" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "解決を受け取る準備" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "%s のソースパッケージが見つかりません" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "外部ソルバが適切なエラーメッセージなしに失敗しました" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"注意: '%s' パッケージは以下の場所の '%s' バージョン制御システムで保守されてい" -"ます:\n" -"%s\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "外部ソルバを実行" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"パッケージの最新の (まだリリースされていないかもしれない) 更新を取得するに" -"は、\n" -"bzr branch %s\n" -"を使用してください。\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "名前の変更に失敗しました。%s (%s -> %s)" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "すでにダウンロードされたファイル '%s' をスキップします\n" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "ハッシュサムが適合しません" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s の空き領域を測定できません" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "サイズが適合しません" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "不正なファイル形式" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s に充分な空きスペースがありません" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"期待されるエントリ '%s' が Release ファイル内に見つかりません (誤った " +"sources.list エントリか、壊れたファイル)" -#. 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:891 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Release ファイル中の '%s' のハッシュサムを見つけられません" -#. 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:896 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "以下の鍵 ID に対して利用可能な公開鍵がありません:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "%sB のソースアーカイブを取得する必要があります。\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"%s の Release ファイルは期限切れ (%s 以来無効) です。このリポジトリからの更新" +"物は適用されません。" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "ソース %s を取得\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" +"ディストリビューションが競合しています: %s (%s を期待していたのに %s を取得し" +"ました)" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "いくつかのアーカイブの取得に失敗しました。" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"署名照合中にエラーが発生しました。リポジトリは更新されず、過去のインデックス" +"ファイルが使われます。GPG エラー: %s: %s\n" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG エラー: %s: %s" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" +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 のファイルの位置を特定できません。おそらくこのパッケージを手動" +"で修正する必要があります (存在しないアーキテクチャのため)。" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "展開コマンド '%s' が失敗しました。\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "'%2$s' のバージョン '%1$s' をダウンロードするソースが見つかりません" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"'dpkg-dev' パッケージがインストールされていることを確認してください。\n" +"パッケージインデックスファイルが壊れています。パッケージ %s に Filename: " +"フィールドがありません。" -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "ビルドコマンド '%s' が失敗しました。\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "ベンダブロック %s は鍵指紋を含んでいません" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "子プロセスが失敗しました" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "リストディレクトリ %spartial が見つかりません。" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "アーカイブディレクトリ %spartial が見つかりません。" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"%s に利用可能なアーキテクチャ情報がありません。セットアップのために apt." -"conf(5) の APT::Architectures を参照してください。" +msgid "Unable to lock directory %s" +msgstr "ディレクトリ %s をロックできません" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s のビルド依存情報を取得できません" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "ファイルを取得しています %li/%li (残り %s)" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s にはビルド依存情報が指定されていません。\n" +msgid "Retrieving file %li of %li" +msgstr "ファイルを取得しています %li/%li" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "%s の取得に失敗しました %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"パッケージ %3$s が '%4$s' パッケージで許されていないため、%2$s に対する %1$s " -"の依存関係を満たすことができません" +"いくつかのインデックスファイルのダウンロードに失敗しました。これらは無視され" +"るか、古いものが代わりに使われます。" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "sources.list に 'ソース' URI を指定する必要があります" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと" -"ができません" +"APT::Default-Release の 値 '%s' は、そのようなリリースをソース中から利用でき" +"ないため、無効です" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ" -"ケージは新しすぎます" +"不正なレコードがプリファレンスファイル %s に存在します。パッケージヘッダがあ" +"りません" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "pin タイプ %s を理解できませんでした" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "pin で優先度 (または 0) が指定されていません" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"パッケージ %3$s の候補バージョンはバージョンについての要求を満たせないた" -"め、%2$s に対する %1$s の依存関係を満たすことができません" +"'%s' の即時設定は動作しません。詳細については man 5 apt.conf の APT::" +"Immediate-Configure の項を参照してください。(%d)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, c-format +msgid "Could not configure '%s'. " +msgstr "'%s' を設定できませんでした。" + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"パッケージ %3$s の候補バージョンが存在しないため、%2$s に対する %1$s の依存関" -"係を満たすことができません" +"このインストールは、競合/先行依存のループが原因で、一時的に重要な不可欠パッ" +"ケージ %s を削除します。これは多くの場合に問題が起こる原因となります。本当に" +"これを行いたいなら、APT::Force-LoopBreak オプションを有効にしてください。" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s" +msgid "Line %u too long in source list %s." +msgstr "ソースリスト %2$s の %1$u 行目が長すぎます。" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM をアンマウントしています ...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s のビルド依存関係を満たすことができませんでした。" +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM マウントポイント %s を使用します\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "ビルド依存関係の処理に失敗しました" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "ディスクを待っています ...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM をマウントしています ...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "確認しています... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) の変更履歴" +msgid "Stored label: %s\n" +msgstr "格納されたラベル: %s \n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "サポートされているモジュール:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "ディスクのインデックスファイルを走査しています ...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:734 +#, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"使用法: apt-get [オプション] コマンド\n" -" apt-get [オプション] install|remove パッケージ名1 [パッケージ名" -"2 ...]\n" -" apt-get [オプション] source パッケージ名1 [パッケージ名2 ...]\n" -"\n" -"apt-get は、パッケージをダウンロード/インストールするための簡単なコマ\n" -"ンドラインインタフェースです。もっともよく使われるコマンドは、update \n" -"と install です。\n" -"\n" -"コマンド:\n" -" update - 新しいパッケージリストを取得する\n" -" upgrade - アップグレードを行う\n" -" install - 新規パッケージをインストールする (pkg は libc6.deb ではなく " -"libc6 のように指定する)\n" -" remove - パッケージを削除する\n" -" autoremove - 自動インストールされ使われていないすべてのパッケージを削除す" -"る\n" -" purge - 設定ファイルまで含めてパッケージを削除する\n" -" source - ソースアーカイブをダウンロードする\n" -" build-dep - ソースパッケージの構築依存関係を設定する\n" -" dist-upgrade - ディストリビューションをアップグレードする (apt-get(8) を参" -"照)\n" -" dselect-upgrade - dselect の選択に従う\n" -" clean - ダウンロードしたアーカイブファイルを削除する\n" -" autoclean - ダウンロードした古いアーカイブファイルを削除する\n" -" check - 壊れた依存関係がないかチェックする\n" -" changelog - 指定のパッケージの変更履歴をダウンロードして表示する\n" -" download - バイナリパッケージをカレントディレクトリにダウンロードする\n" -"\n" -"オプション:\n" -" -h このヘルプを表示する\n" -" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n" -" -qq エラー以外は表示しない\n" -" -d ダウンロードのみ行う - アーカイブのインストールや展開は行わない\n" -" -s 実際には実行しない。実行シミュレーションのみ行う\n" -" -y すべての問い合わせに Yes で答え、プロンプトは返さない\n" -" -f 整合性チェックで失敗しても処理を続行する\n" -" -m アーカイブが存在しない場合も続行する\n" -" -u アップグレードされるパッケージも表示する\n" -" -b ソースパッケージを取得し、ビルドを行う\n" -" -V 冗長なバージョンナンバを表示する\n" -" -c=? 指定した設定ファイルを読み込む\n" -" -o=? 任意の設定オプションを指定する (例 -o dir::cache=/tmp)\n" -"さらなる情報やオプションについては、マニュアルページ\n" -"apt-get(8)、sources.list(5)、apt.conf(5) を参照してください。\n" -" この APT は Super Cow Powers 化されています。\n" +"%zu のパッケージインデックス、%zu のソースインデックス、%zu の翻訳インデック" +"ス、%zu の署名を見つけました\n" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "少なくとも URL / ファイル名を 1 組指定する必要があります" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"パッケージファイルを配置できません。Debian のディスクではないか、誤ったアーキ" +"テクチャではないでしょうか?" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "ダウンロード失敗" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "ラベル '%s' を見つけました\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "これは有効な名前ではありません。再試行してください。\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"This disc is called: \n" +"'%s'\n" msgstr "" -"使用法: apt-helper [オプション] コマンド\n" -" apt-helper [オプション] download-file uri 目標パス\n" -"\n" -"apt-helper は apt の内部ヘルパーです\n" -"\n" -"コマンド:\n" -" download-file - 指定した uri を目標パスにダウンロードする\n" -"\n" -" この APT helper は Super Meep Powers 化されています。\n" +"このディスクは以下のように呼ばれます: \n" +"'%s'\n" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "パッケージリストをコピーしています ..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "新しいソースリストを書き込んでいます\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "このディスクのソースリストのエントリ:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s をインストールされていないものとしてマークできません\n" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見" +"つけることができませんでした。" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー" +"ジが原因です。" + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。" + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "依存関係ツリーを作成しています" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "候補バージョン" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "依存関係の生成" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "状態情報を読み取っています" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s は手動でインストールしたとすでに設定されています。\n" +msgid "Failed to open StateFile %s" +msgstr "状態ファイル %s のオープンに失敗しました" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s は自動でインストールしたとすでに設定されています。\n" +msgid "Failed to write temporary StateFile %s" +msgstr "一時状態ファイル %s の書き込みに失敗しました" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s はすでに保留に設定されています。\n" +msgid "Unable to parse package file %s (1)" +msgstr "パッケージファイル %s を解釈することができません (1)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s はすでに保留されていません。\n" +msgid "Unable to parse package file %s (2)" +msgstr "パッケージファイル %s を解釈することができません (2)" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s を待ちましたが、そこにはありませんでした" +msgid "Release '%s' for '%s' was not found" +msgstr "'%2$s' のリリース '%1$s' が見つかりませんでした" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "%s set on hold.\n" -msgstr "%s は保留に設定されました。\n" +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s の保留を解除しました。\n" +msgid "Unable to locate package %s" +msgstr "パッケージ %s が見つかりません" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "dpkg の実行に失敗しました。root 権限で実行していますか?" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "タスク '%s' が見つかりません" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "正規表現 '%s' ではパッケージは見つかりませんでした" + +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "'%s' に一致するパッケージは見つかりませんでした" + +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "純粋な仮想パッケージのため、パッケージ '%s' のバージョンを選べません" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Usage: apt-mark [オプション] {auto|manual} パッケージ1 [パッケージ2 ...]\n" -"\n" -"apt-mark は、パッケージを手動または自動でインストールされたものとしてマーク\n" -"する簡単なコマンドラインインターフェイスです。マークの一覧表示もできます。\n" -"\n" -"コマンド:\n" -" auto - 指定のパッケージを自動でインストールされたものとしてマークす" -"る\n" -" manual - 指定のパッケージを手動でインストールしたものとしてマークす" -"る\n" -" hold - パッケージを保留としてマークする\n" -" unhold - パッケージの保留を解除する\n" -" showauto - 自動的にインストールされたパッケージの一覧を表示する\n" -" showmanual - 手作業でインストールしたパッケージの一覧を表示する\n" -" showhold - 保留されているパッケージの一覧を表示する\n" -"\n" -"オプション:\n" -" -h このヘルプを表示する\n" -" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n" -" -qq エラー以外は表示しない\n" -" -s 実際には実行しない。実行シミュレーションのみ行う\n" -" -f 指定のファイルを使って自動/手動のマーキングを読み書きする\n" -" -c=? 指定した設定ファイルを読み込む\n" -" -o=? 任意の設定オプションを指定する (例 -o dir::cache=/tmp)\n" -"さらなる情報については、マニュアルページ apt-mark(8) および apt.conf(5) を参" -"照してください。" +"パッケージ '%s' のインストール済みまたは候補のバージョンはいずれも存在しない" +"ので選べません" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"使用法: apt [オプション] コマンド\n" -"\n" -"apt 用コマンドラインインターフェイス\n" -"基本コマンド: \n" -" list - パッケージ名を基にパッケージの一覧を表示\n" -" search - パッケージの説明を検索\n" -" show - パッケージの詳細を表示\n" -"\n" -" update - 利用可能パッケージの一覧を更新\n" -"\n" -" install - パッケージをインストール\n" -" remove - パッケージを削除\n" -"\n" -" upgrade - パッケージをインストール/更新してシステムをアップグレード\n" -" full-upgrade - パッケージを削除/インストール/更新してシステムをアップグレー" -"ド\n" -"\n" -" edit-sources - ソース情報ファイルを編集\n" +"純粋な仮想パッケージのため、パッケージ '%s' の最新バージョンを選べません" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "CD-ROM データベース %s を読み込むことができません" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "候補が存在しないので、パッケージ %s の候補バージョンを選べません" -#: 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" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"この CD-ROM を APT に認識させるには apt-cdrom を使用してください。新しい CD-" -"ROM を追加するために apt-get update は使用できません。" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD が違います" +"インストールされていないので、パッケージ %s のインストール済みバージョンを選" +"べません。" -#: methods/cdrom.cc:249 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s の CD-ROM は使用中のためアンマウントすることができません。" - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "ディスクが見つかりません。" - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "ファイルが見つかりません" +msgid "Unable to parse Release file %s" +msgstr "Release ファイル %s を解釈することができません" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "状態の取得に失敗しました" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Release ファイル %s にセクションがありません" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "変更時刻の設定に失敗しました" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Release ファイル %s に Hash エントリがありません" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "不正な URI です。ローカルの URI は // で始まってはいけません" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Release ファイル %s に無効な 'Valid-Until' エントリがあります" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "ログインしています" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Release ファイル %s に無効な 'Date' エントリがあります" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "ピアネームを決定することができません" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "ソースリスト %2$s の %1$u 個目の区切りが不正です (URI parse)" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "ローカルネームを決定することができません" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] を解釈できません)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "サーバから接続を拒絶されました。応答: %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] が短かすぎます)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 失敗、サーバ応答: %s" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] は割り当てられていません)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 失敗、サーバ応答: %s" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です ([%3$s にキーがありません)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"プロキシサーバが指定されていますが、ログインスクリプトが設定されていません。" -"Acquire::ftp::ProxyLogin が空です。" +"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] キー %4$s に値がありません)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "ログインスクリプトのコマンド '%s' 失敗、サーバ応答: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 失敗、サーバ応答: %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "接続タイムアウト" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI parse)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "サーバが接続を切断しました" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (absolute dist)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "読み込みエラー" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist parse)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "レスポンスがバッファをオーバフローさせました。" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s をオープンしています" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "プロトコルが壊れています" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "書き込みエラー" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "ソケットを作成できません" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "データソケットへ接続できませんでした。接続がタイムアウトしました" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "失敗" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "パッシブソケットに接続できません。" - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo はリスニングソケットを取得できませんでした" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "ソケットをバインドできませんでした" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "ソケットをリスンできませんでした" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "ソケットの名前を特定できませんでした" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT コマンドを送信できません" - -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "未知のアドレスファミリ %u (AF_*)" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "ソースリスト %3$s の %2$u 個目の節 '%1$s' は不明です" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT に失敗しました。サーバ応答: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "データソケット接続タイムアウト" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "接続を accept できません" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "ファイルのハッシュでの問題" +msgid "Installing %s" +msgstr "%s をインストールしています" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "ファイルを取得できません。サーバ応答 '%s'" +msgid "Configuring %s" +msgstr "%s を設定しています" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "データソケットタイムアウト" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s を削除しています" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "データ転送に失敗しました。サーバ応答 '%s'" +msgid "Completely removing %s" +msgstr "%s を完全に削除しています" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "問い合わせ" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "%s の消失を記録しています" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "呼び出せません" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "インストール後トリガ %s を実行しています" -#: methods/connect.cc:76 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Connecting to %s (%s)" -msgstr "%s (%s) へ接続しています" +msgid "Directory '%s' missing" +msgstr "ディレクトリ '%s' が見つかりません" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Could not open file '%s'" +msgstr "ファイル '%s' をオープンできませんでした" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s (f=%u t=%u p=%u) に対するソケットを作成できません" +msgid "Preparing %s" +msgstr "%s を準備しています" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s (%s) への接続を開始できません。" +msgid "Unpacking %s" +msgstr "%s を展開しています" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました" +msgid "Preparing to configure %s" +msgstr "%s の設定を準備しています" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "%s:%s (%s) へ接続できませんでした。" +msgid "Installed %s" +msgstr "%s をインストールしました" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Connecting to %s" -msgstr "%s へ接続しています" +msgid "Preparing for removal of %s" +msgstr "%s の削除を準備しています" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Could not resolve '%s'" -msgstr "'%s' を解決できませんでした" +msgid "Removed %s" +msgstr "%s を削除しました" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' が一時的に解決できません" +msgid "Preparing to completely remove %s" +msgstr "%s を完全に削除する準備をしています" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s:%s' の解決中にシステムエラーが発生しました" +msgid "Completely removed %s" +msgstr "%s を完全に削除しました" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) に失敗しました" + +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s' (%i - %s) の解決中に何か問題が起こりました" +msgid "Can not write log (%s)" +msgstr "ログを書き込めません (%s)" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "/dev/pts はマウントされていますか?" + +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "標準出力はターミナルですか?" + +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s:%s へ接続できません:" +msgid "Waited for %s but it wasn't there" +msgstr "%s を待ちましたが、そこにはありませんでした" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "内部エラー: 正しい署名ですが、鍵指紋を確定できません?!" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "操作はそれが完了する前に中断されました" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "少なくとも 1 つの不正な署名が発見されました。" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "MaxReports にすでに達しているため、レポートは書き込まれません" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"署名を検証するための 'gpgv' の実行ができませんでした (gpgv はインストールされ" -"ていますか?)" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "依存関係の問題 - 未設定のままにしています" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"クリアサインされたファイルが有効ではなく、'%s' を得ました (認証にネットワーク" -"が必要?)" - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv の実行中に未知のエラーが発生" +"エラーメッセージは前の失敗から続くエラーであることを示しているので、レポート" +"は書き込まれません。" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "以下の署名が無効です:\n" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"エラーメッセージはディスクフルエラーであることを示しているので、レポートは書" +"き込まれません。" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1651 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "公開鍵を利用できないため、以下の署名は検証できませんでした:\n" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"エラーメッセージはメモリ超過エラーであることを示しているので、レポートは書き" +"込まれません。" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "空のファイルは有効なアーカイブと認められません" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"エラーメッセージはローカルシステムの問題であることを示しているので、レポート" +"は書き込まれません。" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "ファイルへの書き込みでエラーが発生しました" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"エラーメッセージは dpkg I/O エラーであることを示しているので、レポートは書き" +"込まれません。" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "リモート側で接続がクローズされてサーバからの読み込みに失敗しました" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"管理用ディレクトリ (%s) をロックできません。これを使う別のプロセスが動いてい" +"ませんか?" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "サーバからの読み込みに失敗しました" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"管理用ディレクトリ (%s) をロックできません。root 権限で実行していますか?" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "ファイルへの書き込みでエラーが発生しました" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg は中断されました。問題を修正するには '%s' を手動で実行する必要がありま" +"す。" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select に失敗しました" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "ロックされていません" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "接続タイムアウト" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li日 %li時間 %li分 %li秒" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "出力ファイルへの書き込みでエラーが発生しました" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li時間 %li分 %li秒" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "ヘッダの待機中です" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li分 %li秒" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "不正なヘッダ行です" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li秒" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP サーバが不正なリプライヘッダを送信してきました" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "選択された %s が見つかりません" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP サーバが不正な Content-Length ヘッダを送信してきました" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "読み込み専用のロックファイル %s にロックは使用しません" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP サーバが不正な Content-Range ヘッダを送信してきました" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "ロックファイル %s をオープンできません" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP サーバのレンジサポートが壊れています" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "nfs マウントされたロックファイル %s にはロックを使用しません" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "不明な日付フォーマットです" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "ロック %s が取得できませんでした" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "不正なヘッダです" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "'%s' がディレクトリではないため、ファイルの一覧を作成できません" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "接続失敗" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "ディレクトリ '%2$s' の '%1$s' が通常ファイルではないため、無視します" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "内部エラー" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" +"ディレクトリ '%2$s' の '%1$s' がファイル名拡張子を持たないため、無視します" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "アップグレードパッケージを検出しています ... " +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"ディレクトリ '%2$s' の '%1$s' が無効なファイル名拡張子を持っているため、無視" +"します" -#: apt-private/private-upgrade.cc:30 -msgid "Internal error, Upgrade broke stuff" -msgstr "内部エラー、アップグレードで何か壊れました" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "子プロセス %s がセグメンテーション違反を受け取りました。" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "完了" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "子プロセス %s がシグナル %u を受け取りました。" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "ソート中" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "子プロセス %s がエラーコード (%u) を返しました" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "一覧表示" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "子プロセス %s が予期せず終了しました" -#: apt-private/private-list.cc:164 -#, fuzzy, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -"追加レコードが %i 件あります。表示するには '-a' スイッチを付けてください。" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "書き込みエラー" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "依存関係を解決しています ..." +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "gzip ファイル %s のクローズ中に問題が発生しました" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 失敗しました。" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "ファイル %s をオープンできませんでした" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "依存関係を訂正できません" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "ファイルデスクリプタ %d を開けませんでした" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "アップグレードセットを最小化できません" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "子プロセス IPC の生成に失敗しました" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 完了" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "以下の圧縮ツールの実行に失敗しました: " -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "" -"これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ" -"ん。" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "読み込みエラー" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "未解決の依存関係があります。-f オプションを試してください。" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "読み込みが %llu 残っているはずですが、何も残っていません" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "不明" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "あと %llu 書き込む必要がありますが、書き込むことができませんでした" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[インストール済み、%s にアップグレード可]" +msgid "Problem closing the file %s" +msgstr "ファイル %s のクローズ中に問題が発生しました" -#: apt-private/private-output.cc:237 -msgid "[installed,local]" -msgstr "[インストール済み、ローカル]" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "%s から %s へのファイル名変更中に問題が発生しました" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "[インストール済み、自動削除可]" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "ファイル %s の削除中に問題が発生しました" -#: apt-private/private-output.cc:242 -msgid "[installed,automatic]" -msgstr "[インストール済み、自動]" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "ファイルの同期中に問題が発生しました" -#: apt-private/private-output.cc:244 -msgid "[installed]" -msgstr "[インストール済み]" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... エラー!" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "[upgradable from: %s]" -msgstr "[%s からアップグレード可]" +msgid "%c%s... Done" +msgstr "%c%s... 完了" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "[設定未完了]" - -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "以下のパッケージには満たせない依存関係があります:" - -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "しかし、%s はインストールされています" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-output.cc:444 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "but %s is to be installed" -msgstr "しかし、%s はインストールされようとしています" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "しかし、インストールすることができません" - -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "しかし、これは仮想パッケージです" - -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "しかし、インストールされていません" +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "しかし、インストールされようとしていません" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "空のファイルを mmap できません" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " または" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "ファイルデスクリプタ %i は重複できません" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "以下のパッケージが新たにインストールされます:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "%llu バイトの mmap ができませんでした" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "以下のパッケージは「削除」されます:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap をクローズできません" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "以下のパッケージは保留されます:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap を同期できません" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "以下のパッケージはアップグレードされます:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu バイトの mmap ができませんでした" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "以下のパッケージは「ダウングレード」されます:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "ファイルの切り詰めに失敗しました" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "以下の変更禁止パッケージは変更されます:" +#: 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 "" +"動的 MMap が範囲を越えました。APT::Cache-Start の大きさを増やしてください。現" +"在値は %lu です (man 5 apt.conf を参照)。" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (%s のため) " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "%lu バイトの上限に達しているため、MMap のサイズを増やせません。" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"警告: 以下の不可欠パッケージが削除されます。\n" -"何をしようとしているか本当にわかっていない場合は、実行してはいけません!" +"自動増加がユーザによって無効にされているため、MMap のサイズを増やせません。" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "アップグレード: %lu 個、新規インストール: %lu 個、" +msgid "Unable to stat the mount point %s" +msgstr "マウントポイント %s の状態を取得できません" + +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "CD-ROM の状態を取得するのに失敗しました" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu reinstalled, " -msgstr "再インストール: %lu 個、" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "理解できない省略形式です: '%c'" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu downgraded, " -msgstr "ダウングレード: %lu 個、" +msgid "Opening configuration file %s" +msgstr "設定ファイル %s をオープンできませんでした" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "削除: %lu 個、保留: %lu 個。\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "文法エラー %s:%u: ブロックが名前なしで始まっています。" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "文法エラー %s:%u: 不正なタグです" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[Y/n]" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "文法エラー %s:%u: 値の後に余分なゴミが入っています" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "文法エラー %s:%u: 命令はトップレベルでのみ実行できます" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "文法エラー %s:%u: インクルードのネストが多すぎます" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "文法エラー %s:%u: ここからインクルードされています" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "Regex compilation error - %s" -msgstr "正規表現の展開エラー - %s" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "文法エラー %s:%u: 未対応の命令 '%s'" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "update コマンドは引数をとりません" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"文法エラー %s:%u: clear ディレクティブは、引数としてオプションツリーを必要と" +"します" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "文法エラー %s:%u: ファイルの最後に余計なゴミがあります" -#: apt-private/private-show.cc:156 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -"追加レコードが %i 件あります。表示するには '-a' スイッチを付けてください。" +msgid "No keyring installed in %s." +msgstr "%s にキーリングがインストールされていません。" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "実際のパッケージではありません (仮想)" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "コマンドラインオプション '%c' [%s から] は不明です。" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "内部エラー、InstallPackages が壊れたパッケージで呼び出されました!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "コマンドラインオプション %s を理解できません" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "パッケージを削除しなければなりませんが、削除が無効になっています。" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "コマンドラインオプション %s は boolean ではありません" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "内部エラー、調整が終わっていません" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "オプション %s には引数が必要です。" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"おっと、サイズがマッチしません。apt@packages.debian.org にメールしてください" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%2$sB 中 %1$sB のアーカイブを取得する必要があります。\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "オプション %s には '%s' ではなく整数の引数が必要です" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%sB のアーカイブを取得する必要があります。\n" +msgid "Option '%s' is too long" +msgstr "オプション '%s' は長すぎます" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "この操作後に追加で %sB のディスク容量が消費されます。\n" +msgid "Sense %s is not understood, try true or false." +msgstr "%s を解釈することができません。true か false を試してください。" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "この操作後に %sB のディスク容量が解放されます。\n" +msgid "Invalid operation %s" +msgstr "不正な操作 %s" -#: apt-private/private-install.cc:199 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s に充分な空きスペースがありません。" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "パッケージ %s のバージョン %s には解決不可能な依存関係があります:\n" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "問題が発生し、-y オプションが --force-yes なしで使用されました" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "パッケージ名総数: " -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。" - -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "パッケージ構造総数: " -#: apt-private/private-install.cc:221 -#, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"重大な問題を引き起こす可能性のあることをしようとしています。\n" -"続行するには、'%s' というフレーズをタイプしてください。\n" -" ?] " +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " 通常パッケージ: " -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "中断しました。" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " 純粋仮想パッケージ: " -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "続行しますか?" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " 単一仮想パッケージ: " -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "いくつかのファイルの取得に失敗しました" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " 複合仮想パッケージ: " -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"いくつかのアーカイブを取得できません。apt-get update を実行するか --fix-" -"missing オプションを付けて試してみてください。" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " 欠落: " -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "個別バージョン総数: " -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "足りないパッケージを直すことができません。" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "個別説明総数: " -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "インストールを中断します。" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "依存関係総数: " -#: apt-private/private-install.cc:365 -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] "" -"以下のパッケージは、全ファイルが別のパッケージで上書きされたため、\n" -"システムから消えました:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "バージョン/ファイル関係総数: " -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "注意: これは dpkg により自動でわざと行われれます。" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "説明/ファイル関係総数: " -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"一連のものを削除するようになっていないので、AutoRemover を開始できません" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "提供マッピング総数: " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"AutoRemover が、本来起きるべきでない何かを壊したようです。\n" -"apt にバグ報告を送ってください。" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Glob 文字列の総数: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "総依存関係・バージョン容量: " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "内部エラー、AutoRemover が何かを破壊しました" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "総空き容量: " -#: apt-private/private-install.cc:512 -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] "" -"以下のパッケージが自動でインストールされましたが、もう必要とされていません:" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "総占有容量: " -#: apt-private/private-install.cc:516 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, 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" - -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "これを削除するには 'apt-get autoremove' を利用してください。" +msgid "Package file %s is out of sync." +msgstr "Package ファイル %s が同期していません。" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ" -"ません:" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "パッケージが見つかりません" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法" -"を明示してください)。" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "検索パターンはちょうど 1 つだけ指定してください" -#: apt-private/private-install.cc:628 -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." +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"インストールすることができないパッケージがありました。おそらく、あり得\n" -"ない状況を要求したか、(不安定版ディストリビューションを使用しているの\n" -"であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n" -"動されていないことが考えられます。" - -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "壊れたパッケージ" +"このコマンドは時代遅れです。'apt-mark showauto' を代わりに使用してください。" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "以下の特別パッケージがインストールされます:" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "パッケージファイル:" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "提案パッケージ:" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "キャッシュが同期しておらず、パッケージファイルを相互参照できません" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "推奨パッケージ:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pin されたパッケージ:" -#: apt-private/private-install.cc:815 -#, fuzzy, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(見つかりません)" -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " インストールされているバージョン: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " 候補: " -#: apt-private/private-install.cc:836 -#, fuzzy, c-format -msgid "%s is already the newest version.\n" -msgstr "%s はすでに保留に設定されています。\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(なし)" -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " パッケージ Pin: " -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " バージョンテーブル:" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" - -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s for %s コンパイル日時: %s %s\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 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 "" -"注意: これはシミュレーションにすぎません!\n" -" apt-get は実際の実行に root 権限を必要とします。\n" -" ロックが非アクティブであることから、今この時点の状態に妥当性が\n" -" あるとは言い切れないことに注意してください!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "警告: 以下のパッケージは認証されていません!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "認証の警告は上書きされました。\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "いくつかのパッケージを認証できませんでした" +"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 "" +"使用方法: apt-cache [オプション] コマンド\n" +" apt-cache [オプション] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [オプション] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache は APT のバイナリキャッシュファイルを操作したり、そこから情\n" +"報を検索したりするための低レベルのツールです\n" +"\n" +"コマンド:\n" +" gencaches - パッケージおよびソースキャッシュを生成する\n" +" showpkg - 単一パッケージの一般情報を表示する\n" +" showsrc - ソースレコードを表示する\n" +" stats - 基本ステータス情報を表示する\n" +" dump - すべてのファイルを簡単な形式で表示する\n" +" dumpavail - available ファイルを標準出力に出力する\n" +" unmet - 未解決の依存関係を表示する\n" +" search - 正規表現パターンによってパッケージ一覧を検索する\n" +" show - パッケージの情報を表示する\n" +" depends - パッケージの生の依存情報を表示する\n" +" rdepends - パッケージの生の逆依存情報を表示する\n" +" pkgnames - システム内のすべてのパッケージ名一覧を表示する\n" +" dotty - GraphViz 用のパッケージグラフを生成する\n" +" xvcg - xvcg 用のパッケージグラフを生成する\n" +" policy - ポリシー設定情報を表示する\n" +"\n" +"オプション:\n" +" -h このヘルプを表示する\n" +" -p=? パッケージキャッシュ\n" +" -s=? ソースキャッシュ\n" +" -q プログレス表示をしない\n" +" -i umnet コマンドで重要な依存情報のみを表示する\n" +" -c=? 指定した設定ファイルを読み込む\n" +" -o=? 指定した設定オプションを読み込む (例: -o dir::cache=/tmp)\n" +"詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "検証なしにこれらのパッケージをインストールしますか?" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "このディスクに、'Debian 5.0.3 Disk 1' のような名前を付けてください" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s の取得に失敗しました %s\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "ディスクをドライブに入れて Enter キーを押してください" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s の解析に失敗しました。再編集しますか? " +msgid "Failed to mount '%s' to '%s'" +msgstr "'%s' を '%s' にマウントできませんでした" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"'%s' ファイルが変更されています。「apt-get update」を実行してください。" - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "全文検索" - -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "ヒット " +"CD-ROM が自動検出されなかったか、デフォルトで利用するマウントポイントに見当た" +"りませんでした。\n" +"CD-ROM のマウントポイントを設定するために --cdrom オプションを試すことができ" +"ます。\n" +"CD-ROM の自動検出およびマウントポイントの詳細については、'man apt-cdrom' を参" +"照してください。" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "取得:" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "" +"あなたの持っている CD セットの残り全部に、この手順を繰り返してください。" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "無視 " +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "引数がペアではありません" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "エラー " +#: cmdline/apt-config.cc:89 +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 "" +"使用方法: apt-config [オプション] コマンド\n" +"\n" +"apt-config は APT の設定ファイルを読み込むための簡単なツールです\n" +"\n" +"コマンド:\n" +" shell - シェルモード\n" +" dump - 設定情報を表示する\n" +"\n" +"オプション:\n" +" -h このヘルプを表示する\n" +" -c=? 指定した設定ファイルを読み込む\n" +" -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%sB を %s で取得しました (%sB/s)\n" +msgid "Can not find a package for architecture '%s'" +msgstr "アーキテクチャ '%s' 用のパッケージは見つかりませんでした" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:327 #, c-format -msgid " [Working]" -msgstr " [処理中]" +msgid "Can not find a package '%s' with version '%s'" +msgstr "パッケージ '%s' のバージョン '%s' は見つかりませんでした" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:330 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"メディア変更: \n" -" '%s'\n" -"とラベルの付いたディスクをドライブ '%s' に入れて Enter キーを押してください\n" +msgid "Can not find a package '%s' with release '%s'" +msgstr "リリース '%2$s' にはパッケージ '%1$s' は見つかりませんでした" -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Unable to read %s" -msgstr "%s を読み込むことができません" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "'%2$s' の代わりに '%1$s' をソースパッケージとして選出しています\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Unable to change to %s" -msgstr "%s へ変更することができません" +msgid "Can not find version '%s' of package '%s'" +msgstr "パッケージ '%2$s' のバージョン '%1$s' は見つかりませんでした" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:454 #, c-format -msgid "No mirror file '%s' found " -msgstr "ミラーファイル '%s' が見つかりません " +msgid "Couldn't find package %s" +msgstr "パッケージ %s が見つかりません" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "ミラーファイル '%s' を読み込めません" +msgid "%s set to manually installed.\n" +msgstr "%s は手動でインストールしたと設定されました。\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "ミラーファイル '%s' のエントリが見つかりません" +msgid "%s set to automatically installed.\n" +msgstr "%s は自動でインストールしたと設定されました。\n" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[ミラー: %s]" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"このコマンドは時代遅れです。'apt-mark auto' および 'apt-mark manual' を代わり" +"に使用してください。" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "子プロセスへの IPC パイプの作成に失敗しました" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "内部エラー、問題リゾルバが何かを破壊しました" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "途中で接続がクローズされました" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "ダウンロードディレクトリをロックできません" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "不正なデフォルト設定です!" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"ソースを取得するには少なくとも 1 つのパッケージ名を指定する必要があります" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Enter キーを押すと続行します。" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "%s のソースパッケージが見つかりません" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "過去にダウンロードした .deb ファイルを削除しますか?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "展開中に何らかのエラーが発生しました。インストールされたパッケージを" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "設定します。これにより、エラーが複数出るか、依存関係の欠如に" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "よるエラーが出るかもしれません。これには問題はなく、上記のメッセージ" - -#: dselect/install:105 +#: cmdline/apt-get.cc:786 +#, c-format msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "が重要です。これを修正して「導入」を再度実行してください" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "入手可能情報をマージしています" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "リンクされているノードで DropNode が呼ばれました" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "ハッシュ要素を特定することができません!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "diversion の割り当てに失敗しました" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion での内部エラー" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"注意: '%s' パッケージは以下の場所の '%s' バージョン制御システムで保守されてい" +"ます:\n" +"%s\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "%s -> %s と %s/%s の diversion を上書きしようとしています" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"パッケージの最新の (まだリリースされていないかもしれない) 更新を取得するに" +"は、\n" +"bzr branch %s\n" +"を使用してください。\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "%s -> %s の diversion が二重に追加されています" +msgid "Skipping already downloaded file '%s'\n" +msgstr "すでにダウンロードされたファイル '%s' をスキップします\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "設定ファイル %s/%s が重複しています" +msgid "Couldn't determine free space in %s" +msgstr "%s の空き領域を測定できません" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The path %s is too long" -msgstr "パス %s は長すぎます" +msgid "You don't have enough free space in %s" +msgstr "%s に充分な空きスペースがありません" -#: apt-inst/extract.cc:132 +#. 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:891 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s を複数回展開しています" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n" -#: apt-inst/extract.cc:142 +#. 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:896 #, c-format -msgid "The directory %s is diverted" -msgstr "ディレクトリ %s は divert されています" +msgid "Need to get %sB of source archives.\n" +msgstr "%sB のソースアーカイブを取得する必要があります。\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" -"このパッケージは diversion のターゲットの %s/%s に書き込もうとしています" +msgid "Fetch source %s\n" +msgstr "ソース %s を取得\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "diversion パスが長すぎます" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "いくつかのアーカイブの取得に失敗しました。" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to stat %s" -msgstr "%s の状態を取得するのに失敗しました" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s を %s に名前変更できませんでした" +msgid "Unpack command '%s' failed.\n" +msgstr "展開コマンド '%s' が失敗しました。\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:963 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "ディレクトリ %s が非ディレクトリに置換されようとしています" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "" +"'dpkg-dev' パッケージがインストールされていることを確認してください。\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "ハッシュバケツ内でノードを特定するのに失敗しました" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "ビルドコマンド '%s' が失敗しました。\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "パスが長すぎます" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "子プロセスが失敗しました" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "%s に対するバージョンのないパッケージマッチを上書きします" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "ファイル %s/%s がパッケージ %s のものを上書きします" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"%s に利用可能なアーキテクチャ情報がありません。セットアップのために apt." +"conf(5) の APT::Architectures を参照してください。" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Unable to stat %s" -msgstr "%s の状態を取得できません" +msgid "Unable to get build-dependency information for %s" +msgstr "%s のビルド依存情報を取得できません" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Failed to write file %s" -msgstr "ファイル %s の書き込みに失敗しました" +msgid "%s has no build depends.\n" +msgstr "%s にはビルド依存情報が指定されていません。\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Failed to close file %s" -msgstr "%s のクローズに失敗しました" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"パッケージ %3$s が '%4$s' パッケージで許されていないため、%2$s に対する %1$s " +"の依存関係を満たすことができません" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "'%s' メンバーがないため、正しい DEB アーカイブではありません" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと" +"ができません" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "内部エラー、メンバー %s を特定できません" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "解析できないコントロールファイル" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "不正なアーカイブ署名" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "アーカイブメンバーヘッダの読み込みに失敗しました" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ" +"ケージは新しすぎます" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "Invalid archive member header %s" -msgstr "不正なアーカイブメンバーヘッダ %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "不正なアーカイブメンバーヘッダ" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "アーカイブが不足しています" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "アーカイブヘッダの読み込みに失敗しました" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "パイプの生成に失敗しました" - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip の実行に失敗しました" - -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "壊れたアーカイブ" - -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "tar チェックサム検証が失敗しました。アーカイブが壊れています" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"パッケージ %3$s の候補バージョンはバージョンについての要求を満たせないた" +"め、%2$s に対する %1$s の依存関係を満たすことができません" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "未知の TAR ヘッダタイプ %u、メンバー %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"パッケージ %3$s の候補バージョンが存在しないため、%2$s に対する %1$s の依存関" +"係を満たすことができません" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Unable to stat %s." -msgstr "%s の状態を取得できません。" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Progress: [%3i%%]" -msgstr "進捗: [%3i%%]" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s のビルド依存関係を満たすことができませんでした。" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "dpkg を実行しています" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "ビルド依存関係の処理に失敗しました" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "パッケージングシステム '%s' はサポートされていません" +msgid "Changelog for %s (%s)" +msgstr "%s (%s) の変更履歴" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "適切なパッケージシステムタイプを特定できません" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "サポートされているモジュール:" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i レコードを書き込みました。\n" +#: cmdline/apt-get.cc:1632 +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 "" +"使用法: apt-get [オプション] コマンド\n" +" apt-get [オプション] install|remove パッケージ名1 [パッケージ名" +"2 ...]\n" +" apt-get [オプション] source パッケージ名1 [パッケージ名2 ...]\n" +"\n" +"apt-get は、パッケージをダウンロード/インストールするための簡単なコマ\n" +"ンドラインインタフェースです。もっともよく使われるコマンドは、update \n" +"と install です。\n" +"\n" +"コマンド:\n" +" update - 新しいパッケージリストを取得する\n" +" upgrade - アップグレードを行う\n" +" install - 新規パッケージをインストールする (pkg は libc6.deb ではなく " +"libc6 のように指定する)\n" +" remove - パッケージを削除する\n" +" autoremove - 自動インストールされ使われていないすべてのパッケージを削除す" +"る\n" +" purge - 設定ファイルまで含めてパッケージを削除する\n" +" source - ソースアーカイブをダウンロードする\n" +" build-dep - ソースパッケージの構築依存関係を設定する\n" +" dist-upgrade - ディストリビューションをアップグレードする (apt-get(8) を参" +"照)\n" +" dselect-upgrade - dselect の選択に従う\n" +" clean - ダウンロードしたアーカイブファイルを削除する\n" +" autoclean - ダウンロードした古いアーカイブファイルを削除する\n" +" check - 壊れた依存関係がないかチェックする\n" +" changelog - 指定のパッケージの変更履歴をダウンロードして表示する\n" +" download - バイナリパッケージをカレントディレクトリにダウンロードする\n" +"\n" +"オプション:\n" +" -h このヘルプを表示する\n" +" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n" +" -qq エラー以外は表示しない\n" +" -d ダウンロードのみ行う - アーカイブのインストールや展開は行わない\n" +" -s 実際には実行しない。実行シミュレーションのみ行う\n" +" -y すべての問い合わせに Yes で答え、プロンプトは返さない\n" +" -f 整合性チェックで失敗しても処理を続行する\n" +" -m アーカイブが存在しない場合も続行する\n" +" -u アップグレードされるパッケージも表示する\n" +" -b ソースパッケージを取得し、ビルドを行う\n" +" -V 冗長なバージョンナンバを表示する\n" +" -c=? 指定した設定ファイルを読み込む\n" +" -o=? 任意の設定オプションを指定する (例 -o dir::cache=/tmp)\n" +"さらなる情報やオプションについては、マニュアルページ\n" +"apt-get(8)、sources.list(5)、apt.conf(5) を参照してください。\n" +" この APT は Super Cow Powers 化されています。\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "少なくとも URL / ファイル名を 1 組指定する必要があります" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "ダウンロード失敗" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"%i レコードを書き込みました。%i 個のファイルが見つからず、%i 個の適合しない" -"ファイルがあります。\n" +"使用法: apt-helper [オプション] コマンド\n" +" apt-helper [オプション] download-file uri 目標パス\n" +"\n" +"apt-helper は apt の内部ヘルパーです\n" +"\n" +"コマンド:\n" +" download-file - 指定した uri を目標パスにダウンロードする\n" +"\n" +" この APT helper は Super Meep Powers 化されています。\n" + +#: cmdline/apt-mark.cc:68 +#, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s をインストールされていないものとしてマークできません\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "認証レコードが見つかりません: %s" +msgid "%s was already set to manually installed.\n" +msgstr "%s は手動でインストールしたとすでに設定されています。\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Hash mismatch for: %s" -msgstr "ハッシュサムが適合しません: %s" +msgid "%s was already set to automatically installed.\n" +msgstr "%s は自動でインストールしたとすでに設定されています。\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "The method driver %s could not be found." -msgstr "メソッドドライバ %s が見つかりません。" +msgid "%s was already set on hold.\n" +msgstr "%s はすでに保留に設定されています。\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Is the package %s installed?" -msgstr "パッケージ %s はインストールされていますか?" +msgid "%s was already not hold.\n" +msgstr "%s はすでに保留されていません。\n" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Method %s did not start correctly" -msgstr "メソッド %s が正常に開始しませんでした" +msgid "%s set on hold.\n" +msgstr "%s は保留に設定されました。\n" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"'%s' とラベルの付いたディスクをドライブ '%s' に入れて Enter キーを押してくだ" -"さい。" +msgid "Canceled hold on %s.\n" +msgstr "%s の保留を解除しました。\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"パッケージリストまたはステータスファイルを解釈またはオープンすることができま" -"せん。" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "dpkg の実行に失敗しました。root 権限で実行していますか?" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"これらの問題を解決するためには apt-get update を実行する必要があるかもしれま" -"せん" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "ソースのリストを読むことができません。" - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "空のパッケージキャッシュ" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "パッケージキャッシュファイルが壊れています" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "このパッケージキャッシュファイルは互換性がないバージョンです" +"Usage: apt-mark [オプション] {auto|manual} パッケージ1 [パッケージ2 ...]\n" +"\n" +"apt-mark は、パッケージを手動または自動でインストールされたものとしてマーク\n" +"する簡単なコマンドラインインターフェイスです。マークの一覧表示もできます。\n" +"\n" +"コマンド:\n" +" auto - 指定のパッケージを自動でインストールされたものとしてマークす" +"る\n" +" manual - 指定のパッケージを手動でインストールしたものとしてマークす" +"る\n" +" hold - パッケージを保留としてマークする\n" +" unhold - パッケージの保留を解除する\n" +" showauto - 自動的にインストールされたパッケージの一覧を表示する\n" +" showmanual - 手作業でインストールしたパッケージの一覧を表示する\n" +" showhold - 保留されているパッケージの一覧を表示する\n" +"\n" +"オプション:\n" +" -h このヘルプを表示する\n" +" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n" +" -qq エラー以外は表示しない\n" +" -s 実際には実行しない。実行シミュレーションのみ行う\n" +" -f 指定のファイルを使って自動/手動のマーキングを読み書きする\n" +" -c=? 指定した設定ファイルを読み込む\n" +" -o=? 任意の設定オプションを指定する (例 -o dir::cache=/tmp)\n" +"さらなる情報については、マニュアルページ apt-mark(8) および apt.conf(5) を参" +"照してください。" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "パッケージキャッシュファイルが壊れています。短かすぎます" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" +"使用法: apt [オプション] コマンド\n" +"\n" +"apt 用コマンドラインインターフェイス\n" +"基本コマンド: \n" +" list - パッケージ名を基にパッケージの一覧を表示\n" +" search - パッケージの説明を検索\n" +" show - パッケージの詳細を表示\n" +"\n" +" update - 利用可能パッケージの一覧を更新\n" +"\n" +" install - パッケージをインストール\n" +" remove - パッケージを削除\n" +"\n" +" upgrade - パッケージをインストール/更新してシステムをアップグレード\n" +" full-upgrade - パッケージを削除/インストール/更新してシステムをアップグレー" +"ド\n" +"\n" +" edit-sources - ソース情報ファイルを編集\n" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "この APT はバージョニングシステム '%s' をサポートしていません" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "パッケージキャッシュが異なるアーキテクチャ用に構築されています" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "依存" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "先行依存" +msgid "Unable to read the cdrom database %s" +msgstr "CD-ROM データベース %s を読み込むことができません" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "提案" +#: 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 "" +"この CD-ROM を APT に認識させるには apt-cdrom を使用してください。新しい CD-" +"ROM を追加するために apt-get update は使用できません。" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "推奨" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD が違います" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "競合" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s の CD-ROM は使用中のためアンマウントすることができません。" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "置換" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "ディスクが見つかりません。" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "廃止" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "ファイルが見つかりません" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "破壊" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "状態の取得に失敗しました" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "拡張" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "変更時刻の設定に失敗しました" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "重要" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "不正な URI です。ローカルの URI は // で始まってはいけません" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "要求" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "ログインしています" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "標準" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "ピアネームを決定することができません" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "任意" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "ローカルネームを決定することができません" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "特別" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "サーバから接続を拒絶されました。応答: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:225 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "インデックスファイルのタイプ '%s' はサポートされていません" +msgid "USER failed, server said: %s" +msgstr "USER 失敗、サーバ応答: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "キャッシュに非互換なバージョニングシステムがあります" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS 失敗、サーバ応答: %s" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"プロキシサーバが指定されていますが、ログインスクリプトが設定されていません。" +"Acquire::ftp::ProxyLogin が空です。" + +#: methods/ftp.cc:280 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s を処理中にエラーが発生しました (%s%d)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "ログインスクリプトのコマンド '%s' 失敗、サーバ応答: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "この APT が対応している以上の数のパッケージが指定されました。" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE 失敗、サーバ応答: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "この APT が対応している以上の数のバージョンが要求されました。" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "接続タイムアウト" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "この APT が対応している以上の数の説明が要求されました。" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "サーバが接続を切断しました" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "この APT が対応している以上の数の依存関係が発生しました。" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "レスポンスがバッファをオーバフローさせました。" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "プロトコルが壊れています" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "ソースパッケージリスト %s の状態を取得できません" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "ソケットを作成できません" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "パッケージリストを読み込んでいます" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "データソケットへ接続できませんでした。接続がタイムアウトしました" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "ファイル提供情報を収集しています" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "失敗" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "%s に書き込めません" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "パッシブソケットに接続できません。" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "ソースキャッシュの保存中に IO エラーが発生しました" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo はリスニングソケットを取得できませんでした" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "ソルバにシナリオを送信" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "ソケットをバインドできませんでした" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "ソルバにリクエストを送信" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "ソケットをリスンできませんでした" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "解決を受け取る準備" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "ソケットの名前を特定できませんでした" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "外部ソルバが適切なエラーメッセージなしに失敗しました" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "PORT コマンドを送信できません" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "外部ソルバを実行" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "未知のアドレスファミリ %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "名前の変更に失敗しました。%s (%s -> %s)" +msgid "EPRT failed, server said: %s" +msgstr "EPRT に失敗しました。サーバ応答: %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "ハッシュサムが適合しません" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "データソケット接続タイムアウト" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "サイズが適合しません" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "接続を accept できません" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "不正なファイル形式" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "ファイルのハッシュでの問題" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"期待されるエントリ '%s' が Release ファイル内に見つかりません (誤った " -"sources.list エントリか、壊れたファイル)" +msgid "Unable to fetch file, server said '%s'" +msgstr "ファイルを取得できません。サーバ応答 '%s'" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "データソケットタイムアウト" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:935 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Release ファイル中の '%s' のハッシュサムを見つけられません" +msgid "Data transfer failed, server said '%s'" +msgstr "データ転送に失敗しました。サーバ応答 '%s'" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "以下の鍵 ID に対して利用可能な公開鍵がありません:\n" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "問い合わせ" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"%s の Release ファイルは期限切れ (%s 以来無効) です。このリポジトリからの更新" -"物は適用されません。" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "呼び出せません" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" -"ディストリビューションが競合しています: %s (%s を期待していたのに %s を取得し" -"ました)" +msgid "Connecting to %s (%s)" +msgstr "%s (%s) へ接続しています" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:87 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"署名照合中にエラーが発生しました。リポジトリは更新されず、過去のインデックス" -"ファイルが使われます。GPG エラー: %s: %s\n" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:94 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG エラー: %s: %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s (f=%u t=%u p=%u) に対するソケットを作成できません" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:100 #, 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 のファイルの位置を特定できません。おそらくこのパッケージを手動" -"で修正する必要があります (存在しないアーキテクチャのため)。" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s (%s) への接続を開始できません。" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:108 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "'%2$s' のバージョン '%1$s' をダウンロードするソースが見つかりません" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:126 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"パッケージインデックスファイルが壊れています。パッケージ %s に Filename: " -"フィールドがありません。" +msgid "Could not connect to %s:%s (%s)." +msgstr "%s:%s (%s) へ接続できませんでした。" -#: apt-pkg/vendorlist.cc:85 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "ベンダブロック %s は鍵指紋を含んでいません" +msgid "Connecting to %s" +msgstr "%s へ接続しています" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "List directory %spartial is missing." -msgstr "リストディレクトリ %spartial が見つかりません。" +msgid "Could not resolve '%s'" +msgstr "'%s' を解決できませんでした" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "アーカイブディレクトリ %spartial が見つかりません。" +msgid "Temporary failure resolving '%s'" +msgstr "'%s' が一時的に解決できません" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:209 #, c-format -msgid "Unable to lock directory %s" -msgstr "ディレクトリ %s をロックできません" +msgid "System error resolving '%s:%s'" +msgstr "'%s:%s' の解決中にシステムエラーが発生しました" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "ファイルを取得しています %li/%li (残り %s)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s' (%i - %s) の解決中に何か問題が起こりました" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "ファイルを取得しています %li/%li" +msgid "Unable to connect to %s:%s:" +msgstr "%s:%s へ接続できません:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"いくつかのインデックスファイルのダウンロードに失敗しました。これらは無視され" -"るか、古いものが代わりに使われます。" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "内部エラー: 正しい署名ですが、鍵指紋を確定できません?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "sources.list に 'ソース' URI を指定する必要があります" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "少なくとも 1 つの不正な署名が発見されました。" -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"APT::Default-Release の 値 '%s' は、そのようなリリースをソース中から利用でき" -"ないため、無効です" +"署名を検証するための 'gpgv' の実行ができませんでした (gpgv はインストールされ" +"ていますか?)" -#: apt-pkg/policy.cc:422 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"不正なレコードがプリファレンスファイル %s に存在します。パッケージヘッダがあ" -"りません" +"クリアサインされたファイルが有効ではなく、'%s' を得ました (認証にネットワーク" +"が必要?)" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "pin タイプ %s を理解できませんでした" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv の実行中に未知のエラーが発生" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "pin で優先度 (または 0) が指定されていません" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "以下の署名が無効です:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" -"'%s' の即時設定は動作しません。詳細については man 5 apt.conf の APT::" -"Immediate-Configure の項を参照してください。(%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "公開鍵を利用できないため、以下の署名は検証できませんでした:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "'%s' を設定できませんでした。" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "空のファイルは有効なアーカイブと認められません" -#: apt-pkg/packagemanager.cc:583 -#, 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 "" -"このインストールは、競合/先行依存のループが原因で、一時的に重要な不可欠パッ" -"ケージ %s を削除します。これは多くの場合に問題が起こる原因となります。本当に" -"これを行いたいなら、APT::Force-LoopBreak オプションを有効にしてください。" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "ファイルへの書き込みでエラーが発生しました" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "ソースリスト %2$s の %1$u 行目が長すぎます。" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "リモート側で接続がクローズされてサーバからの読み込みに失敗しました" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM をアンマウントしています ...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "サーバからの読み込みに失敗しました" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "CD-ROM マウントポイント %s を使用します\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "ファイルへの書き込みでエラーが発生しました" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "ディスクを待っています ...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "select に失敗しました" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM をマウントしています ...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "接続タイムアウト" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "確認しています... " +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "出力ファイルへの書き込みでエラーが発生しました" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "格納されたラベル: %s \n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "ヘッダの待機中です" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "ディスクのインデックスファイルを走査しています ...\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "不正なヘッダ行です" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu のパッケージインデックス、%zu のソースインデックス、%zu の翻訳インデック" -"ス、%zu の署名を見つけました\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP サーバが不正なリプライヘッダを送信してきました" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"パッケージファイルを配置できません。Debian のディスクではないか、誤ったアーキ" -"テクチャではないでしょうか?" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP サーバが不正な Content-Length ヘッダを送信してきました" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "ラベル '%s' を見つけました\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP サーバが不正な Content-Range ヘッダを送信してきました" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "これは有効な名前ではありません。再試行してください。\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP サーバのレンジサポートが壊れています" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"このディスクは以下のように呼ばれます: \n" -"'%s'\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "不明な日付フォーマットです" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "パッケージリストをコピーしています ..." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "不正なヘッダです" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "新しいソースリストを書き込んでいます\n" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "接続失敗" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "このディスクのソースリストのエントリ:\n" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "内部エラー" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見" -"つけることができませんでした。" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "アップグレードパッケージを検出しています ... " -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー" -"ジが原因です。" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "完了" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "ソート中" + +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "一覧表示" + +#: apt-private/private-list.cc:164 +#, fuzzy, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +"追加レコードが %i 件あります。表示するには '-a' スイッチを付けてください。" + +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "依存関係を解決しています ..." + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " 失敗しました。" + +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "依存関係を訂正できません" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "依存関係ツリーを作成しています" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "アップグレードセットを最小化できません" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "候補バージョン" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " 完了" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "依存関係の生成" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ" +"ん。" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "状態情報を読み取っています" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "未解決の依存関係があります。-f オプションを試してください。" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "状態ファイル %s のオープンに失敗しました" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "不明" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-output.cc:234 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "一時状態ファイル %s の書き込みに失敗しました" +msgid "[installed,upgradable to: %s]" +msgstr "[インストール済み、%s にアップグレード可]" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "パッケージファイル %s を解釈することができません (1)" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[インストール済み、ローカル]" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "パッケージファイル %s を解釈することができません (2)" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[インストール済み、自動削除可]" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "'%2$s' のリリース '%1$s' が見つかりませんでした" +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[インストール済み、自動]" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした" +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[インストール済み]" -#: apt-pkg/cacheset.cc:603 +#: apt-private/private-output.cc:249 #, c-format -msgid "Couldn't find task '%s'" -msgstr "タスク '%s' が見つかりません" +msgid "[upgradable from: %s]" +msgstr "[%s からアップグレード可]" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "正規表現 '%s' ではパッケージは見つかりませんでした" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[設定未完了]" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:435 #, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "'%s' に一致するパッケージは見つかりませんでした" +msgid "but %s is installed" +msgstr "しかし、%s はインストールされています" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "純粋な仮想パッケージのため、パッケージ '%s' のバージョンを選べません" +msgid "but %s is to be installed" +msgstr "しかし、%s はインストールされようとしています" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"パッケージ '%s' のインストール済みまたは候補のバージョンはいずれも存在しない" -"ので選べません" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "しかし、インストールすることができません" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"純粋な仮想パッケージのため、パッケージ '%s' の最新バージョンを選べません" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "しかし、これは仮想パッケージです" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "候補が存在しないので、パッケージ %s の候補バージョンを選べません" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "しかし、インストールされていません" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"インストールされていないので、パッケージ %s のインストール済みバージョンを選" -"べません。" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "しかし、インストールされようとしていません" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Release ファイル %s を解釈することができません" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " または" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Release ファイル %s にセクションがありません" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "以下のパッケージには満たせない依存関係があります:" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Release ファイル %s に Hash エントリがありません" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "以下のパッケージが新たにインストールされます:" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Release ファイル %s に無効な 'Valid-Until' エントリがあります" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "以下のパッケージは「削除」されます:" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Release ファイル %s に無効な 'Date' エントリがあります" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "以下のパッケージは保留されます:" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "ソースリスト %2$s の %1$u 個目の区切りが不正です (URI parse)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "以下のパッケージはアップグレードされます:" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] を解釈できません)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "以下のパッケージは「ダウングレード」されます:" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] が短かすぎます)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "以下の変更禁止パッケージは変更されます:" -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgid "%s (due to %s) " +msgstr "%s (%s のため) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] は割り当てられていません)" +"警告: 以下の不可欠パッケージが削除されます。\n" +"何をしようとしているか本当にわかっていない場合は、実行してはいけません!" -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です ([%3$s にキーがありません)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "アップグレード: %lu 個、新規インストール: %lu 個、" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] キー %4$s に値がありません)" +msgid "%lu reinstalled, " +msgstr "再インストール: %lu 個、" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI)" +msgid "%lu downgraded, " +msgstr "ダウングレード: %lu 個、" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "削除: %lu 個、保留: %lu 個。\n" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI parse)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (absolute dist)" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist parse)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s をオープンしています" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: apt-pkg/sourcelist.cc:371 +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "update コマンドは引数をとりません" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +"追加レコードが %i 件あります。表示するには '-a' スイッチを付けてください。" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "ソースリスト %3$s の %2$u 個目の節 '%1$s' は不明です" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "実際のパッケージではありません (仮想)" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "%s をインストールしています" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "内部エラー、InstallPackages が壊れたパッケージで呼び出されました!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s を設定しています" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "パッケージを削除しなければなりませんが、削除が無効になっています。" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s を削除しています" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "内部エラー、調整が終わっていません" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s を完全に削除しています" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"おっと、サイズがマッチしません。apt@packages.debian.org にメールしてください" -#: apt-pkg/deb/dpkgpm.cc:99 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Noting disappearance of %s" -msgstr "%s の消失を記録しています" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%2$sB 中 %1$sB のアーカイブを取得する必要があります。\n" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Running post-installation trigger %s" -msgstr "インストール後トリガ %s を実行しています" +msgid "Need to get %sB of archives.\n" +msgstr "%sB のアーカイブを取得する必要があります。\n" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Directory '%s' missing" -msgstr "ディレクトリ '%s' が見つかりません" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "この操作後に追加で %sB のディスク容量が消費されます。\n" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file '%s'" -msgstr "ファイル '%s' をオープンできませんでした" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "この操作後に %sB のディスク容量が解放されます。\n" -#: apt-pkg/deb/dpkgpm.cc:989 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing %s" -msgstr "%s を準備しています" +msgid "You don't have enough free space in %s." +msgstr "%s に充分な空きスペースがありません。" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s を展開しています" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "問題が発生し、-y オプションが --force-yes なしで使用されました" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s の設定を準備しています" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s をインストールしました" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:222 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s の削除を準備しています" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"重大な問題を引き起こす可能性のあることをしようとしています。\n" +"続行するには、'%s' というフレーズをタイプしてください。\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s を削除しました" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "中断しました。" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s を完全に削除する準備をしています" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "続行しますか?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s を完全に削除しました" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "いくつかのファイルの取得に失敗しました" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) に失敗しました" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"いくつかのアーカイブを取得できません。apt-get update を実行するか --fix-" +"missing オプションを付けて試してみてください。" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, c-format -msgid "Can not write log (%s)" -msgstr "ログを書き込めません (%s)" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "/dev/pts はマウントされていますか?" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "足りないパッケージを直すことができません。" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "標準出力はターミナルですか?" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "インストールを中断します。" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "操作はそれが完了する前に中断されました" +#: apt-private/private-install.cc:366 +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] "" +"以下のパッケージは、全ファイルが別のパッケージで上書きされたため、\n" +"システムから消えました:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "MaxReports にすでに達しているため、レポートは書き込まれません" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "注意: これは dpkg により自動でわざと行われれます。" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "依存関係の問題 - 未設定のままにしています" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"一連のものを削除するようになっていないので、AutoRemover を開始できません" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"エラーメッセージは前の失敗から続くエラーであることを示しているので、レポート" -"は書き込まれません。" +"AutoRemover が、本来起きるべきでない何かを壊したようです。\n" +"apt にバグ報告を送ってください。" -#: apt-pkg/deb/dpkgpm.cc:1644 +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "内部エラー、AutoRemover が何かを破壊しました" + +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"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] "" +"以下のパッケージが自動でインストールされましたが、もう必要とされていません:" + +#: apt-private/private-install.cc:517 +#, 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" + +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "これを削除するには 'apt-get autoremove' を利用してください。" + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"エラーメッセージはディスクフルエラーであることを示しているので、レポートは書" -"き込まれません。" +"以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ" +"ません:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:614 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"エラーメッセージはメモリ超過エラーであることを示しているので、レポートは書き" -"込まれません。" +"未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法" +"を明示してください)。" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:638 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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 "" +"インストールすることができないパッケージがありました。おそらく、あり得\n" +"ない状況を要求したか、(不安定版ディストリビューションを使用しているの\n" +"であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n" +"動されていないことが考えられます。" + +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "壊れたパッケージ" + +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "以下の特別パッケージがインストールされます:" + +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "提案パッケージ:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "推奨パッケージ:" + +#: apt-private/private-install.cc:825 +#, fuzzy, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" + +#: apt-private/private-install.cc:829 +#, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"エラーメッセージはローカルシステムの問題であることを示しているので、レポート" -"は書き込まれません。" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -"エラーメッセージは dpkg I/O エラーであることを示しているので、レポートは書き" -"込まれません。" -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:846 +#, fuzzy, c-format +msgid "%s is already the newest version.\n" +msgstr "%s はすでに保留に設定されています。\n" + +#: apt-private/private-install.cc:894 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -"管理用ディレクトリ (%s) をロックできません。これを使う別のプロセスが動いてい" -"ませんか?" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:899 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" msgstr "" -"管理用ディレクトリ (%s) をロックできません。root 権限で実行していますか?" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" + +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" + +#: apt-private/private-main.cc:32 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"dpkg は中断されました。問題を修正するには '%s' を手動で実行する必要がありま" -"す。" +"注意: これはシミュレーションにすぎません!\n" +" apt-get は実際の実行に root 権限を必要とします。\n" +" ロックが非アクティブであることから、今この時点の状態に妥当性が\n" +" あるとは言い切れないことに注意してください!" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "ロックされていません" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "警告: 以下のパッケージは認証されていません!" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li日 %li時間 %li分 %li秒" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "認証の警告は上書きされました。\n" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%li時間 %li分 %li秒" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "いくつかのパッケージを認証できませんでした" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%li分 %li秒" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "検証なしにこれらのパッケージをインストールしますか?" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-sources.cc:58 #, c-format -msgid "%lis" -msgstr "%li秒" +msgid "Failed to parse %s. Edit again? " +msgstr "%s の解析に失敗しました。再編集しますか? " -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Selection %s not found" -msgstr "選択された %s が見つかりません" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" +"'%s' ファイルが変更されています。「apt-get update」を実行してください。" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "読み込み専用のロックファイル %s にロックは使用しません" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "全文検索" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "ロックファイル %s をオープンできません" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "ヒット " -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "nfs マウントされたロックファイル %s にはロックを使用しません" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "取得:" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "ロック %s が取得できませんでした" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "無視 " -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "'%s' がディレクトリではないため、ファイルの一覧を作成できません" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "エラー " -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "ディレクトリ '%2$s' の '%1$s' が通常ファイルではないため、無視します" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%sB を %s で取得しました (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"ディレクトリ '%2$s' の '%1$s' がファイル名拡張子を持たないため、無視します" +msgid " [Working]" +msgstr " [処理中]" -#: apt-pkg/contrib/fileutl.cc:421 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"ディレクトリ '%2$s' の '%1$s' が無効なファイル名拡張子を持っているため、無視" -"します" +"メディア変更: \n" +" '%s'\n" +"とラベルの付いたディスクをドライブ '%s' に入れて Enter キーを押してください\n" -#: apt-pkg/contrib/fileutl.cc:824 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "子プロセス %s がセグメンテーション違反を受け取りました。" +msgid "No mirror file '%s' found " +msgstr "ミラーファイル '%s' が見つかりません " -#: apt-pkg/contrib/fileutl.cc:826 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "子プロセス %s がシグナル %u を受け取りました。" +msgid "Can not read mirror file '%s'" +msgstr "ミラーファイル '%s' を読み込めません" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: methods/mirror.cc:315 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "子プロセス %s がエラーコード (%u) を返しました" +msgid "No entry found in mirror file '%s'" +msgstr "ミラーファイル '%s' のエントリが見つかりません" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: methods/mirror.cc:445 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "子プロセス %s が予期せず終了しました" +msgid "[Mirror: %s]" +msgstr "[ミラー: %s]" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "gzip ファイル %s のクローズ中に問題が発生しました" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "子プロセスへの IPC パイプの作成に失敗しました" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "ファイル %s をオープンできませんでした" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "途中で接続がクローズされました" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "ファイルデスクリプタ %d を開けませんでした" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "不正なデフォルト設定です!" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "子プロセス IPC の生成に失敗しました" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Enter キーを押すと続行します。" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "以下の圧縮ツールの実行に失敗しました: " +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "過去にダウンロードした .deb ファイルを削除しますか?" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "読み込みが %llu 残っているはずですが、何も残っていません" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "展開中に何らかのエラーが発生しました。インストールされたパッケージを" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "あと %llu 書き込む必要がありますが、書き込むことができませんでした" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "設定します。これにより、エラーが複数出るか、依存関係の欠如に" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "ファイル %s のクローズ中に問題が発生しました" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "よるエラーが出るかもしれません。これには問題はなく、上記のメッセージ" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "%s から %s へのファイル名変更中に問題が発生しました" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "が重要です。これを修正して「導入」を再度実行してください" + +#: dselect/update:30 +msgid "Merging available information" +msgstr "入手可能情報をマージしています" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "リンクされているノードで DropNode が呼ばれました" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "ハッシュ要素を特定することができません!" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "ファイル %s の削除中に問題が発生しました" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "diversion の割り当てに失敗しました" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "ファイルの同期中に問題が発生しました" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion での内部エラー" -#: apt-pkg/contrib/progress.cc:148 +#: apt-inst/filelist.cc:477 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... エラー!" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "%s -> %s と %s/%s の diversion を上書きしようとしています" -#: apt-pkg/contrib/progress.cc:150 +#: apt-inst/filelist.cc:506 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... 完了" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +msgid "Double add of diversion %s -> %s" +msgstr "%s -> %s の diversion が二重に追加されています" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: apt-inst/filelist.cc:549 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "空のファイルを mmap できません" +msgid "Duplicate conf file %s/%s" +msgstr "設定ファイル %s/%s が重複しています" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "ファイルデスクリプタ %i は重複できません" +msgid "The path %s is too long" +msgstr "パス %s は長すぎます" -#: apt-pkg/contrib/mmap.cc:119 +#: apt-inst/extract.cc:132 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%llu バイトの mmap ができませんでした" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "mmap をクローズできません" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "mmap を同期できません" +msgid "Unpacking %s more than once" +msgstr "%s を複数回展開しています" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/extract.cc:142 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu バイトの mmap ができませんでした" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "ファイルの切り詰めに失敗しました" +msgid "The directory %s is diverted" +msgstr "ディレクトリ %s は divert されています" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/extract.cc:152 #, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -"動的 MMap が範囲を越えました。APT::Cache-Start の大きさを増やしてください。現" -"在値は %lu です (man 5 apt.conf を参照)。" - -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "%lu バイトの上限に達しているため、MMap のサイズを増やせません。" +"このパッケージは diversion のターゲットの %s/%s に書き込もうとしています" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"自動増加がユーザによって無効にされているため、MMap のサイズを増やせません。" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "diversion パスが長すぎます" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "マウントポイント %s の状態を取得できません" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "CD-ROM の状態を取得するのに失敗しました" +msgid "Failed to stat %s" +msgstr "%s の状態を取得するのに失敗しました" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "理解できない省略形式です: '%c'" +msgid "Failed to rename %s to %s" +msgstr "%s を %s に名前変更できませんでした" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:249 #, c-format -msgid "Opening configuration file %s" -msgstr "設定ファイル %s をオープンできませんでした" +msgid "The directory %s is being replaced by a non-directory" +msgstr "ディレクトリ %s が非ディレクトリに置換されようとしています" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "文法エラー %s:%u: ブロックが名前なしで始まっています。" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "ハッシュバケツ内でノードを特定するのに失敗しました" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "文法エラー %s:%u: 不正なタグです" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "パスが長すぎます" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "文法エラー %s:%u: 値の後に余分なゴミが入っています" +msgid "Overwrite package match with no version for %s" +msgstr "%s に対するバージョンのないパッケージマッチを上書きします" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "文法エラー %s:%u: 命令はトップレベルでのみ実行できます" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "ファイル %s/%s がパッケージ %s のものを上書きします" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "文法エラー %s:%u: インクルードのネストが多すぎます" +msgid "Unable to stat %s" +msgstr "%s の状態を取得できません" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "文法エラー %s:%u: ここからインクルードされています" +msgid "Failed to write file %s" +msgstr "ファイル %s の書き込みに失敗しました" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "文法エラー %s:%u: 未対応の命令 '%s'" +msgid "Failed to close file %s" +msgstr "%s のクローズに失敗しました" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"文法エラー %s:%u: clear ディレクティブは、引数としてオプションツリーを必要と" -"します" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "'%s' メンバーがないため、正しい DEB アーカイブではありません" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "文法エラー %s:%u: ファイルの最後に余計なゴミがあります" +msgid "Internal error, could not locate member %s" +msgstr "内部エラー、メンバー %s を特定できません" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "%s にキーリングがインストールされていません。" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "解析できないコントロールファイル" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "コマンドラインオプション '%c' [%s から] は不明です。" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "不正なアーカイブ署名" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "コマンドラインオプション %s を理解できません" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "アーカイブメンバーヘッダの読み込みに失敗しました" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Command line option %s is not boolean" -msgstr "コマンドラインオプション %s は boolean ではありません" +msgid "Invalid archive member header %s" +msgstr "不正なアーカイブメンバーヘッダ %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "オプション %s には引数が必要です。" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "不正なアーカイブメンバーヘッダ" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "オプション %s: 設定項目には =<値> を指定する必要があります。" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "アーカイブが不足しています" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "オプション %s には '%s' ではなく整数の引数が必要です" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "アーカイブヘッダの読み込みに失敗しました" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "オプション '%s' は長すぎます" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "パイプの生成に失敗しました" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s を解釈することができません。true か false を試してください。" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "gzip の実行に失敗しました" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "壊れたアーカイブ" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "tar チェックサム検証が失敗しました。アーカイブが壊れています" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "不正な操作 %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "未知の TAR ヘッダタイプ %u、メンバー %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3619,7 +3624,7 @@ msgstr "MD5 の計算中に読み込みに失敗しました" msgid "Problem unlinking %s" msgstr "%s のリンク解除で問題が発生しました" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3670,3 +3675,6 @@ msgstr "" " -s ソースファイルソートを使用する\n" " -c=? 指定した設定ファイルを読み込む\n" " -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" + +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "内部エラー、アップグレードで何か壊れました" diff --git a/po/km.po b/po/km.po index 90a4b0740..5fe352783 100644 --- a/po/km.po +++ b/po/km.po @@ -10,3128 +10,3133 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" "Language-Team: Khmer <support@khmeros.info>\n" -"Language: \n" +"Language: km\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: KBabel 1.11.2\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "ប្រភេទ​ឯកសារ​លិបិក្រម​ '%s' មិនត្រូវ​បាន​គាំទ្រ​" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "កញ្ចប់ %s កំណែ %s មាន​ភាព​អាស្រ័យ​មិន​ត្រូវ​គ្នា ៖\n" +msgid "Unable to read %s" +msgstr "មិន​អាច​អាន​ %s បានឡើយ" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "មិនអាច​ប្ដូរទៅ %s បានឡើយ" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "មិនអាច​ថ្លែង %s បានឡើយ ។" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " កញ្ចប់​ធម្មតា ៖ " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " កញ្ចប់​និម្មិត​សុទ្ធ ៖ " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " កញ្ចប់​និម្មិត​តែ​មួយ ៖ " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "មិន​គាំទ្រ​ប្រព័ន្ធ​កញ្ចប់'%s' ឡើយ" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " កញ្ចប់​និម្មិត​លាយ ៖ " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "មិនអាច​កំណត់​ប្រភេទ​ប្រព័ន្ធ​កញ្ចប់​ដែល​សមរម្យ​បានឡើយ" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " បាត់បង់ ៖ " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "បានសរសេរ %i កំណត់ត្រា ។\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "កំណែ​ផ្សេងៗ​សរុប ៖ " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់ ។\n" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "កំណែ​ផ្សេងៗ​សរុប ៖ " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "បានសរសេរ​ %i កំណត់ត្រា​ជាមួយួយ​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "ភាព​អាស្រ័យ​សរុប ៖ " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់​ និង​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​ ​\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "ការផ្គូរផ្គង​ការផ្ដល់​សរុប ៖ " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "មិនអាច​រកឃើញ​កម្មវិធី​បញ្ជា​វិធីសាស្ត្រ %s ឡើយ ។" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "ខ្សែ​អក្សរ​សរុប​ ៖ " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "ទំហំ​កំណែ​ភាព​អាស្រ័យ​សរុប ៖ " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "វិធីសាស្ត្រ​ %s មិន​អាច​ចាប់​ផ្តើម​ត្រឹមត្រូវ​ទេ​" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "ទំហំ slack សរុប ៖" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "សូម​បញ្ចូល​ស្លាក​ឌីស​ ៖ '%s' ក្នុង​ដ្រាយ​ '%s' ហើយ​សង្កត់​ចូល ។" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "ទំហំ​សរុប​ដែល​ទុក​សម្រាប់ ៖ " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "បញ្ជី​កញ្ចប់​ ឬ ឯកសារ​ស្ថានភាព​មិន​អាចត្រូវបាន​​ញែក ​​ឬ ត្រូវបាន​បើកបានឡើយ​​ ។" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "ឯកសារ​កញ្ចប់ %s នៅ​ខាងក្រៅ​ការ​ធ្វើសមកាលកម្ម ។" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "អ្នកប្រហែលជា​ចង់ភាពទាន់សម័យ apt-get ដើម្បី​កែ​បញ្ហា​ទាំងនេះ" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "រក​កញ្ចប់​មិន​ឃើញ" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "អ្នក​ត្រូវ​តែ​ផ្ដល់​លំនាំ​មួយ​ដែល​ពិត​ប្រាកដ" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "ឃ្លាំង​កញ្ចប់​ទទេ​" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ត្រឹមត្រូវ​" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "ឯកសារ​ឃ្លាំងសម្ងាត់​​កញ្ចប់​ជាកំណែ​មិន​ត្រូវគ្នា​" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ត្រឹមត្រូវ​" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "មិន​អាច​កំណត់​ទីតាំង​កញ្ចប់ %s បានឡើយ" +msgid "This APT does not support the versioning system '%s'" +msgstr "APT នេះ មិនគាំទ្រ​ប្រព័ន្ធ​ ការធ្វើកំណែនេះទេ​ '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "ឯកសារ​កញ្ចប់ ៖" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "ឃ្លាំង​សម្ងាត់​កញ្ចប់ត្រូវ​បានស្ថាបនា់​សម្រាប់ស្ថាបត្យករ​ខុស​ៗគ្នា​​" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "ឃ្លាំង​សម្ងាត់​ឋិតនៅ​ក្រៅ​ការ​ធ្វើ​សមកាល​កម្ម ដែលមិន​អាច x-ref ឯកសារ​កញ្ចប់​បាន​ទេ" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "អាស្រ័យ​" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "កញ្ចប់​ដែល​បាន​ខ្ទាស់ ៖" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "អាស្រ័យជា​មុន" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(រក​មិន​ឃើញ)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "ផ្ដល់យោបល់​" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " បាន​ដំឡើង ៖ " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "ផ្តល់​អនុសាសន៍​" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " សាកល្បង ៖ " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "ប៉ះទង្គិច" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(គ្មាន)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "ជំនួស​" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " ខ្ទាស់​កញ្ចប់ ៖ " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "លែង​ប្រើ" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " តារាង​កំណែ ៖" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s សម្រាប់ %s %s បាន​ចងក្រងនៅលើ​%s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"ការ​ប្រើប្រាស់ ៖ apt-cache [options] ពាក្យ​បញ្ជា\n" -" apt-cache [options] add file1 [file2 ...]\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache គឺ​ជា​ឧបករណ៍​កម្រិតទាប​​ដែល​ប្រើ​សម្រាប់​រៀបចំ​ប្រព័ន្ធ​គោល​ពីរ​របស់ APT\n" -"ឯកសារ​ឃ្លាំង​សម្ងាត់ និង ​ព័ត៌មាន​សំណួរ​ពី​ពួក​វា\n" -"\n" -"ពាក្យ​បញ្ជា\n" -" add - បន្ថែម​ឯកសារ​កញ្ចប់​ទៅ​ឃ្លាំង​សម្ងាត់​ប្រភព\n" -" gencaches - បង្កើត​ទាំង​​កញ្ចប់​និង​ឃ្លាំង​សម្ងាត់​ប្រភព\n" -" showpkg - បង្ហាញ​ព័ត៌មាន​ទូទៅ​ខ្លះ​សម្រាប់​កញ្ចប់​តែ​មួយ\n" -" showsrc - បង្ហាញ​កំណត់​ត្រា​ប្រភព\n" -" stats - បង្ហាញ​ស្ថិតិ​មូលដ្ឋាន​ខ្លះ\n" -" dump - បង្ហាញ​ឯកសារ​ទាំងមូល​ក្នុង​ទ្រង់ទ្រាយ​សង្ខេប\n" -" dumpavail - បោះពុម្ព​ឯកសារ​ដែល​មាន​ទៅ stdout\n" -" unmet - បង្ហាញ​ភាពអាស្រ័យ​ unmet \n" -" search - ស្វែងរក​កញ្ចប់​​លំនាំ regex \n" -" show - បង្ហាញ​កំណត់​ត្រា​កញ្ចប់​ដែល​អាច​អាន​បាន\n" -" depends - បង្ហាញព័ត៌មាន​​ភាពអាស្រ័យ​កញ្ចប់​មិន​ទាន់​ច្នៃ\n" -" rdepends - បង្ហាញ​ព័ត៌មាន​ភាពអាស្រ័យ​កញ្ចប់​បញ្ច្រាស់​\n" -" pkgnames - រាយ​ឈ្មោះ​កញ្ចប់​ទាំងអស់​\n" -" dotty - បង្កើត​កញ្ចប់​ក្រាហ្វ​សម្រាប់​ GraphViz\n" -" xvcg - បង្កើត​កញ្ចប់​ក្រាហ្វ​សម្រាប់​ xvcg\n" -" policy - បង្ហាញ ការរៀបចំ​គោលការណ៍​\n" -"\n" -"ជម្រើស​ ៖\n" -" -h នេះ​ជា​អត្ថជំនួយ​\n" -" -p=? ឃ្លាំងសម្ងាត់​កញ្ចប់​ ។\n" -" -s=? ឃ្លាំងសម្ងាត់​ប្រភព ។\n" -" -q ទ្រនិច​ចង្អុល​វឌ្ឍនភាព មិន​អនុញ្ញាត​ ។\n" -" -i បាន​តែ​បង្ហាញ ព័ត៌មាន​ deps ដែល​សំខាន់​សម្រាប់ពាក្យ​បញ្ជាដែល​ខុស​គ្នា  ​​​។\n" -" -c=? អាន​ការកំណត់​រចនាសម្ព័ន្ធ​ឯកសារ​នេះ \n" -" -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. eg -o dir::cache=/tmp\n" -"មើល​ apt-cache(8) និង​ apt.conf(5) សម្រាប់​ព័ត៌មាន​បន្ថែម​​មាន​ក្នុង​ទំព័រ​សៀវភៅដៃ​ ។\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "សំខាន់​" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "សូម​ផ្ដល់​ឈ្មោះ​ឲ្យ​ថាស​នេះ ឧទាហរណ៍​ដូចជា 'ដេបៀន 2.1r1 ថាស​ទី ១' ជាដើម" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "បាន​ទាមទារ" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "សូម​បញ្ចូល​ថាស​ក្នុង​ដ្រាយ​ហើយ​ចុច​បញ្ចូល​" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "គំរូ" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "ស្រេចចិត្ត" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "បន្ថែម" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "ធ្វើដំណើរការ​នេះ​ម្តង​ទៀត​ សម្រាប់​ស៊ីឌី​ទាំងអស់​​ក្នុង​សំណុំ​របស់​អ្នក ។" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "ប្រភេទ​ឯកសារ​លិបិក្រម​ '%s' មិនត្រូវ​បាន​គាំទ្រ​" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "​អាគុយម៉ង់​មិន​មាន​គូ​ទេ" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex កំហុស​ការចងក្រង​ - %s" -#: cmdline/apt-config.cc:89 -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 "" -"ការ​ប្រើប្រាស់ ៖ ពាក្យ​បញ្ជា​ apt-config [ជម្រើស] \n" -"\n" -"apt-config ជា​ឧបករណ៍​សាមញ្ញ​សម្រាប់​អាន​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ APT \n" -"\n" -"ពាក្យ​បញ្ជា​ ៖\n" -" shell - របៀប​សែល​\n" -" dump - បង្ហាញ​ការកំណត់​រចនាសម្ព័ន្ធ​\n" -"\n" -"ជម្រើស​\n" -" -h អត្ថនទ​ជំនួយ​នេះ​\n" -" -c=? អាន​ឯកសារ​ការកំណត់​រចនាសម្ព័ន្ធ​នេះ \n" -" -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "ឃ្លាំងសម្ងាត់​មិន​ត្រូវ​គ្នា​នឹង ប្រព័ន្ធ ធ្វើកំណែ" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +msgid "Error occurred while processing %s (%s%d)" +msgstr "កំហុស​បានកើតឡើង​ខណៈពេល​កំពុង​ដំណើរការ​ %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "អស្ចារ្យ អ្នក​មាន​ឈ្មោះ​កញ្ចប់​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​​  ។" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "អស្ចារ្យ​, អ្នក​មាន​ភាពអាស្រ័យ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "កញ្ចប់​ %s %s រក​មិន​ឃើញ​ខណៈ​ពេល​កំពុង​ដំណើរការ​ភាពអាស្រ័យ​​ឯកសារ" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "កំពុង​អាន​បញ្ជី​កញ្ចប់" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "ការផ្ដល់​ឯកសារ​ប្រមូលផ្ដុំ" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "មិន​អាច​សរសេរ​ទៅ %s" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "មិន​អាច​ចាក់​សោ​ថត​ទាញ​យក​បាន​ឡើយ" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាត់​ប្រភព​" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ​ក្នុង​ %s បានឡើយ" +msgid "rename failed, %s (%s -> %s)." +msgstr "ប្តូរ​ឈ្មោះ​បានបរាជ័យ​, %s (%s -> %s) ។" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​ទេ​នៅក្នុង​ %s ឡើយ" +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#. 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:891 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "ត្រូវការ​យក​ %sB/%sB នៃ​ប័ណ្ណសារ​ប្រភព ។\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +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:896 +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ខាងក្រោម​នេះទេ ៖\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "ត្រូវការ​យក​ %sB នៃ​ប័ណ្ណសារ​ប្រភព​ ។\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "ទៅប្រមូល​ប្រភព​ %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "បរាជ័យ​ក្នុងការទៅប្រមូលយក​ប័ណ្ណសារ​មួយចំនួន ។" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​តែ​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" +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 បាន​ទេ ។ ​មាន​ន័យ​ថា​អ្នក​ត្រូវការ​ជួសជុល​កញ្ចប់​នេះ​ដោយ​ដៃ ។ " +"(ដោយសារ​​បាត់​ស្ថាបត្យកម្ម)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជ័យ​ ។\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "កញ្ចប់​ឯកសារ​លិបិក្រម​ត្រូវ​បាន​ខូច ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នេះ​ទេ​ %s ។" -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជ័យ​ ។\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "ប្លុក​ក្រុមហ៊ុន​លក់​ %s គ្មាន​ស្នាម​ផ្តិត​ម្រាម​ដៃ" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "ដំណើរ​ការ​កូន​បាន​បរាជ័យ​" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "ត្រូវតែ​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "ថត​ប័ណ្ណសារ​ %spartial គឺ​បាត់បង់​ ។" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "កំពុង​ទៅ​យក​ឯកសារ %li នៃ %li (នៅសល់ %s)" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "មិន​អាច​សាងសង់​​ព័ត៌មាន​ភាពអស្រ័យ​សម្រាប់ %s" +msgid "Retrieving file %li of %li" +msgstr "កំពុង​ទៅយក​ឯកសារ %li នៃ %li" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s មិនមានភាពអាស្រ័យ​ស្ថាបនាឡើយ​ ។\n" +msgid "Failed to fetch %s %s\n" +msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"ឯកសារ​លិបិក្រម​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​​ទាញ​យក ​ពួកវាត្រូវបាន​មិន​អើពើ​ ឬ ប្រើ​​ឯកសារ​ចាស់​ជំនួសវិញ ​​។" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "អ្នកត្រូវតែដាក់ 'ប្រភព' URIs មួយចំនួន​នៅក្នុង sources.list របស់អ្នក" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "កំណត់ត្រា​មិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារចំណង់ចំណូលចិត្ត មិនមាន​បឋមកថា​កញ្ចប់ទេ" + +#: apt-pkg/policy.cc:444 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក" +msgid "Did not understand pin type %s" +msgstr "មិន​បាន​យល់​ពី​ប្រភេទ​ម្ជុល %s ឡើយ" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "គ្មាន​អទិភាព (ឬ សូន្យ​) បានបញ្ជាក់​សម្រាប់​ម្ជុល​ទេ" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាច​តម្រូវចិត្តបានទេ ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​តម្រូវចិត្ត​" -"តម្រូវការ​កំណែបានឡើយ" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " +"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 "" +"ការរត់​ការដំឡើង​នេះ នឹងទាមទារ​ឲ្យយកកញ្ចប់ចាំបាច់ %s បណ្ដោះអាសន្ន ដោយសារ រង្វិល ការប៉ះទង្គិច/" +"ភាពអាស្រ័យជាមុន ។ ជាញឹកញាប់គឺ មិនត្រឹមត្រូវ ប៉ុន្តែ ប្រសិនបើអ្នក​ពិតជាចង់ធ្វើវា ធ្វើឲ្យជម្រើស APT::" +"Force-LoopBreak សកម្ម ។" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s: %s" +msgid "Line %u too long in source list %s." +msgstr "បន្ទាត់​ %u មាន​ប្រវែង​វែងពេកនៅ​ក្នុង​បញ្ជី​ប្រភព​ %s ។" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "មិនកំពុងម៉ោន ស៊ីឌី​-រ៉ូម​ ទេ..." + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "ភាពអាស្រ័យ​ដែល​បង្កើត​ %s មិន​អាច​បំពេញ​សេចក្ដី​ត្រូវការ​បាន​ទេ ។" +msgid "Using CD-ROM mount point %s\n" +msgstr "ប្រើប្រាស់ចំណុចម៉ោន​ ស៊ីឌី​-រ៉ូម​ %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ដំណើរ​​ការ​បង្កើត​ភាព​អាស្រ័យ" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "កំពុង​រង់ចាំឌីស​...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "កំពុង​ម៉ោន​ ស៊ីឌី​-រ៉ូម​...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "កំពុង​ធ្វើអត្តសញ្ញាណនា​... " -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "បានទុក​ស្លាក ៖ %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "កំពុង​ស្កេន​ឌីស​សម្រាប់​​ឯកសារ​លិបិក្រម​...\n" + +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "បានរកឃើញ លិបិក្រម​កញ្ចប់ %i លិបិក្រម​ប្រភព%i និង ហត្ថលេខា %i \n" + +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"របៀបប្រើ ៖ ពាក្យបញ្ជា apt-get [options]\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] ប្រភព pkg1 [pkg2 ...]\n" -"\n" -"apt-get គឺជា​ចំណុចប្រទាក់​បន្ទាត់​ពាក្យបញ្ជា​សាមញ្ញ​មួយ សម្រាប់​ធ្វើការទាញយក និង\n" -"ដំឡើង​កញ្ចប់ ។ ជាញឹកញាប់​បំផុត គឺប្រើ​ពាក្យបញ្ជា​ដើម្បី​ធ្វើឲ្យទាន់សម័យ​\n" -"និង ដំឡើង ។\n" -"\n" -"ពាក្យ​បញ្ជា ៖\n" -" update - ទៅយក​បញ្ជី​កញ្ចប់​ថ្មី\n" -" upgrade - ធ្វើឲ្យប្រសើរ\n" -" install - ដំឡើង​កញ្ចប់​ថ្មី (pkg គឺ libc6 មិនមែន libc6.deb)\n" -" remove - យក​កញ្ចប់​ចេញ\n" -" source - ទាញយក​ប័ណ្ណសារ​ប្រភព\n" -" build-dep - កំណត់​រចនា​សម្ព័ន្ធ​ភាពអាស្រ័យ​ក្នុងការស្ថាបនា​សម្រាប់​កញ្ចប់​ប្រភព\n" -" dist-upgrade - ការចែកចាយ​ភាពល្អប្រសើរ សូមមើល apt-get(8)\n" -" dselect-upgrade - ដាក់ពីក្រោយ​ជម្រើស dselect\n" -" clean - លុប​ឯកសារប័ណ្ណសារ​ដែលបានទាញ​យក\n" -" autoclean - លុប​ឯកសារប័ណ្ណសារ​ដែលបានទាញយក​ចាស់\n" -" check - ផ្ទៀងផ្ទាត់​ថា​មិនមានភាព​អាស្រ័យ​ដែល​ខូចទេ\n" -"\n" -"ជម្រើស ៖\n" -" -h អត្ថបទ​ជំនួយ​នេះ ៖\n" -" -q ទិន្នផល​ដែល​អាច​ចុះកំណត់ហេតុបាន - មិនមាន​ទ្រនិចបង្ហាញ​ដំណើរការឡើយ\n" -" -qq គ្មាន​លទ្ធផល​ទេ លើកលែងតែ​កំហុស\n" -" -d ទាញយកតែប៉ុណ្ណោះ - កុំដំឡើង​ ឬ ស្រាយ​ប័ណ្ណសារ\n" -" -s No-act. ធ្វើការ​ក្លែង​ការរៀប​តាមលំដាប់\n" -" -y សន្មត​ថា បាទ/ចាស ទៅគ្រប់តម្រូវការ ហើយកុំ​រំលឹក\n" -" -f ប៉ុនប៉ង​ធ្វើការបន្ត​ ប្រសិនបើ​ការពិនិត្យ​ភាពត្រឹមត្រូវ​បរាជ័យ\n" -" -m ប៉ុនប៉ង​ធ្វើការបន្ត​ ប្រសិនបើ​ប័ណ្ណសារ​មិនអាច​ដាក់ទីតាំងបាន\n" -" -u បង្ហាញ​បញ្ជី​កញ្ចប់​ដែល​បានធ្វើឲ្យប្រសើរ​ផងដែរ\n" -" -b ស្ថាបនា​កញ្ចប់ប្រភព បន្ទាប់ពី​ទៅប្រមូលយកវា\n" -" -V បង្ហាញ​លេខកំណែ​ជា​អក្សរ\n" -" -c=? អាន​ឯកសារកំណត់​រចនា​សម្ព័ន្ធ​នេះ\n" -" -o=? កំណត់​ជម្រើស​កំណត់រចនាសម្ព័ន្ធ​តាមចិត្ត​មួយ ឧទ. -o dir::cache=/tmp\n" -"សូមមើល 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" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "បានទុក​ស្លាក ៖ %s \n" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "នោះមិនមែនជាឈ្មោះត្រឹមត្រូវទេ សូមព្យាយាម​ម្ដងទៀត ។\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"ឌីស​នេះ​ត្រូវ​បាន​ហៅ​ ៖ \n" +"'%s'\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "កំពុង​ចម្លង​បញ្ជី​កញ្ចប់..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "កំពុងសរសេរ​បញ្ជី​ប្រភព​ថ្មី\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ​ ខ្ញុំ​មិន​អាច​រក​ប័ណ្ណសារ​សម្រាប់​វា​បាន​ទេ​ ។" + +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើត នេះ​ប្រហែលជា បង្កដោយកញ្ចប់​" +"ដែលបាន​ទុក ។" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ប៉ុន្តែ​វា​មិន​បាន​ដំឡើង​ទេ​" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "មិន​អាច​កែ​បញ្ហាបានទេេ អ្កបានទុក​កញ្ចប់​ដែល​ខូច ។។" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "កំពុងស្ថាបនា​មែកធាងភាពអាស្រ័យ" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "កំណែ​សាកល្បង​" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "ការបង្កើត​ភាពអាស្រ័យ​" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" + +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" +msgid "Failed to open StateFile %s" +msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" +msgid "Failed to write temporary StateFile %s" +msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "រង់ចាំប់​ %s ប៉ុន្តែ ​វា​មិន​នៅទីនោះ" +msgid "Unable to parse package file %s (1)" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់​ %s (2) បានឡើយ" + +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "រក​មិន​ឃើញ​ការ​ចេញ​ផ្សាយ​ '%s' សម្រាប់​ '%s' ឡើយ" + +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "រក​មិន​ឃើញ​កំណែ​ '%s' សម្រាប់ '%s'" + +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "មិន​អាច​កំណត់​ទីតាំង​កញ្ចប់ %s បានឡើយ" + +#: apt-pkg/cacheset.cc:603 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +msgid "Couldn't find task '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:609 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" +msgid "Couldn't find any package by regex '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" + +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "មិន​អាច​អាន​មូលដ្ឋាន​ទិន្នន័យ​​ស៊ីឌីរ៉ូម​​ %s បានឡើយ" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: 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" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"សូម​ប្រើ​ apt-cdrom ដើម្បី​បង្កើត​ស៊ីឌី-រ៉ូម​នេះ​ ដែលបានរៀបចំ​តាម​ APT​ ។ apt-get ធ្វើ​ឲ្យ​ទាន់សម័យ ​មិន​" -"ត្រូវ​បានប្រើ​ដើម្បី​បន្ថែម​ស៊ីឌី-រ៉ូមថ្មីឡើយ​" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "ស៊ីឌី-រ៉ូមខុស" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: methods/cdrom.cc:249 +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" + +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "មិនអាចអាន់ម៉ោន ស៊ីឌី​-រ៉ូម​ នៅ​​ក្នុង​ %s បានទេ វាអាចនៅតែប្រើបាន ។" +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "រក​ថាសមិ​ន​ឃើញ​ ។" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "បន្ទាត់​ដែលមិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារ​បង្វែរ ៖ %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "រកឯកសារ​មិន​ឃើញ​" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "បរាជ័យ​ក្នុងការថ្លែង" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "បន្ទាត់​ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "បរាជ័យក្នុងការកំណត់​ពេលវេលា​ការកែប្រែ​" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI មិនត្រឹមត្រូវ​ URIS មូលដ្ឋានមិនត្រូវ​ចាប់ផ្តើម​ជាមួយ​ // ឡើយ" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព %s (dist)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "កំពុង​ចូល​" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "មិន​អាច​កំណត់ឈ្មោះដែលត្រូវបង្ហាញ​បានឡើយ​" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "មិន​អាច​កំណត់ឈ្មោះមូលដ្ឋាន​បានឡើយ" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "ម៉ាស៊ីន​បម្រើបានបដិសេធ​ការតភ្ជាប់ ហើយ​ បាននិយាយ ៖ %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​ញ្ជី​ប្រភព​ %s (URI)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER បរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព %s (dist)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" - -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"ម៉ាស៊ីន​បម្រើ​ប្រូកស៊ី​ត្រូវ​បាន​បញ្ជាក់​ ប៉ុន្តែ​គ្មាន​ស្គ្រីប​ចូល​ទេ Acquire::ftp::ProxyLogin គឺ ទទេ ។" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "បន្ទាត់​ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "ពាក្យ​បញ្ជា​ស្គ្រីប​ចូល​ '%s' បានបរាជ័យ ម៉ាស៊ីន​បម្រើ​បាននិយាយ ៖ %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist លែងប្រើ)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាននិយាយ​ ៖ %s" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "អស់ពេល​ក្នុងការតភ្ជាប់​" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "កំពុង​បើក​ %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "ម៉ាស៊ីន​បម្រើ​បាន​បិទ​ការតភ្ជាប់​" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (ប្រភេទ​)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "ការអាន​មានកំហុស" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "ឆ្លើយតប​សតិ​បណ្តោះអាសន្ន​​អស់ចំណុះ ។" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "ការបង្ខូច​ពិធីការ​" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "បាន​ដំឡើង %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "ការសរសេរ​មានកំហុស" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "កំពុង​កំណត់​រចនា​សម្ព័ន្ធ %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "មិន​អាច​បង្កើត​រន្ធបានឡើយ" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "កំពុង​យក %s ចេញ" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "មិន​អាច​តភ្ជាប់​​រន្ធទិន្នន័យ​បានឡើយ អស់​ពេល​ក្នុងការតភ្ជាប់​" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "បាន​បរាជ័យ" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "មិនអាចតភ្ជាប់​​រន្ធអកម្ម​​បានឡើយ ។" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo មិន​អាច​​ទទួល​យក​រន្ធ​សម្រាប់​ស្តាប់​​បានឡើយ" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "មិន​អាច​ចងរន្ធ​បានបានឡើយ​" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "មិនអាច​ស្ដាប់នៅលើរន្ធ​បានឡើយ" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "កំពុងរៀបចំ​ %s" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "មិន​អាច​កំណត់​ឈ្មោះរបស់​រន្ធ​បានឡើយ" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "កំពុង​ស្រាយ %s" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "មិនអាច​ផ្ញើពាក្យ​បញ្ជា​ PORT បានឡើយ" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "កំពុងរៀបចំ​កំណត់រចនាសម្ព័ន្ធ %s" -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "មិន​ស្គាល់​អាសយដ្ឋាន​គ្រួសារ​ %u (AF_*)" +msgid "Installed %s" +msgstr "បាន​ដំឡើង %s" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT បរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ ៖ %s" +msgid "Preparing for removal of %s" +msgstr "កំពុងរៀបចំដើម្បី​ការយក​ចេញ​នៃ %s" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "ការតភ្ជាប់​រន្ធ​​ទិន្នន័បានអស់ពេល​" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "បាន​យក %s ចេញ" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "មិនអាច​ទទួលយក​ការតភ្ជាប់​បានឡើយ" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "បញ្ហា​ធ្វើឲ្យខូច​ឯកសារ" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "កំពុង​រៀបចំ​យក %s ចេញ​ទាំង​ស្រុង" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "មិន​អាច​ទៅ​ប្រមូល​យក​ឯកសារ​បានឡើយ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" +msgid "Completely removed %s" +msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "រន្ធ​ទិន្នន័យ​បាន​អស់​ពេល​" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "បរាជ័យក្នុងការ​ផ្ទេរ​ទិន្នន័យ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "មិន​អាច​សរសេរ​ទៅ %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "សំណួរ​" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "មិន​អាច​ហៅ​ " +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Connecting to %s (%s)" -msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" +msgid "Waited for %s but it wasn't there" +msgstr "រង់ចាំប់​ %s ប៉ុន្តែ ​វា​មិន​នៅទីនោះ" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" + +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP ៖ %s %s]" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/connect.cc:94 +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "មិន​អាច​បង្កើត​រន្ធ​សម្រាប់ %s (f=%u t=%u p=%u) បានឡើយ" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" + +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "មិនអាច​ចាប់ផ្ដើម​ការតភ្ជាប់​​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ។" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/connect.cc:108 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "មិន​អាច​តភ្ជាប់​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ការ​តភ្ជាប់​បានអស់​ពេល​" +msgid "%lih %limin %lis" +msgstr "" -#: methods/connect.cc:126 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​ %s:%s (%s) បានឡើយ ។" +msgid "%limin %lis" +msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Connecting to %s" -msgstr "កំពុង​តភ្ជាប់​ទៅកាន់ %s" +msgid "%lis" +msgstr "" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Could not resolve '%s'" -msgstr "មិន​អាច​ដោះស្រាយ​ '%s' បានឡើយ" +msgid "Selection %s not found" +msgstr "ជម្រើស​ %s រក​មិន​ឃើញ​ឡើយ" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "ការ​ដោះស្រាយ​ភាព​បរាជ័យ​​បណ្តោះអាសន្ន '%s'" +msgid "Not using locking for read only lock file %s" +msgstr "មិន​ប្រើប្រាស់​ការចាក់សោ សម្រាប់តែឯកសារចាក់សោ​ដែលបានតែអានប៉ុណ្ណោះ %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "មិន​អាច​បើក​ឯកសារ​ចាក់សោ​ %s បានឡើយ" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "មិនប្រើ​ការចាក់សោ សម្រាប់ nfs ឯកសារ​ចាក់សោដែលបានម៉ោន%s" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​​ %s %s ៖" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "មិន​អាច​ចាក់សោ %s បានឡើយ" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "កំហុស​ខាងក្នុង​ ៖ ហត្ថលេខា​​ល្អ ប៉ុន្តែ ​មិន​អាច​កំណត់​កូនសោ​ស្នាម​ម្រាមដៃ ?!" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "​បានជួប​ប្រទះ​​​​ហត្ថលេខា​យ៉ាងហោចណាស់មួយ ដែ​លត្រឹមត្រូវ​ ។" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "មិន​អាច​ប្រតិបត្តិ '%s' ដើម្បី​ផ្ទៀងផ្ទាត់​ហត្ថលេខា (តើ gpgv ត្រូវ​បាន​ដំឡើង​ឬនៅ ?)" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "មិនស្គាល់កំហុស ក្នុងការប្រតិបត្តិ gpgv" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "ហត្ថលេខា​ខាង​ក្រោម​មិន​ត្រឹមត្រូវ ៖\n" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "ហត្ថលេខា​ខាងក្រោម​មិន​អាចផ្ទៀងផ្ទាត់បាន​ទេ​ ព្រោះកូនសោ​សាធារណៈមិន​អាច​ប្រើ​បាន​ ៖\n" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "ដំណើរការ​រង​ %s បានត្រឡប់​ទៅកាន់​កូដ​មាន​កំហុស​ (%u)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "ដំណើរការ​រង​ %s បានចេញ ដោយ​មិន​រំពឹង​ទុក​ " -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "កំហុសក្នុងការ​សរសេរ​ទៅកាន់​ឯកសារ" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "ការសរសេរ​មានកំហុស" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការតភ្ជាប់" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារ" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "ជ្រើស​បាន​បរាជ័យ​" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "ការតភ្ជាប់​បាន​អស់ពេល​" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារលទ្ធផល" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "កំពុង​រង់ចាំ​បឋមកថា" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "ជួរ​បឋមកថា​ខូច​" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើបឋមកថាចម្លើយតបមិនត្រឹមត្រូវ" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​​បឋមកថាប្រវែង​​​មាតិកា​មិនត្រឹមត្រូវ​" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​បឋមកថា​ជួរ​មាតិកា​មិន​ត្រឹមត្រូវ​" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "ម៉ាស៊ីន​បម្រើ HTTP នេះបាន​ខូច​​​ជួរ​គាំទ្រ​" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆេទ" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​ដំណើរការ​រង​ IPC" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "ទិន្នន័យ​បឋមកថា​ខូច" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "បរាជ័យ​ក្នុង​ការ​ប្រតិបត្តិ​កម្មវិធី​បង្ហាប់ " -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "ការតភ្ជាប់​បាន​បរាជ័យ​" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "ការអាន​មានកំហុស" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "កំហុស​ខាង​ក្នុង​" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "អាន​, នៅតែ​មាន %lu ដើម្បី​អាន​ ប៉ុន្តែ​គ្មាន​អ្វី​នៅសល់" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "សរសេរ​, នៅតែមាន​ %lu ដើម្បី​សរសេរ​ ប៉ុន្តែ​មិន​អាច​" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "កំហុស​ខាងក្នុង ការធ្វើឲ្យប្រសើរ​ទាំងអស់បានធ្វើឲ្យ​ឧបករណ៍​ខូច" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "ធ្វើរួច​" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់តំណ​ឯកសារ" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "កំពុង​កែ​ភាពអាស្រ័យ​..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " បាន​បរាជ័យ ។" - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "មិន​អាច​កែ​ភាព​អាស្រ័យ​បានឡើយ​" +msgid "%c%s... Error!" +msgstr "%c%s... កំហុស ​!" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "មិនអាច​បង្រួម​ការ​កំណត់​ភាព​ប្រសើរ​​បាន​ឡើយ​" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... ធ្វើរួច​" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " ធ្វើ​រួច" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "អ្នក​ប្រហែល​ជា​ចង់រត់ 'apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនេះ​ហើយ ។" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... ធ្វើរួច​" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "ភាព​អាស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ការ​ប្រើ -f ។" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "មិនអាច mmap ឯកសារទទេ​បានឡើយ" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/mmap.cc:119 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [បានដំឡើង​]" +msgid "Couldn't make mmap of %llu bytes" +msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" -#: apt-private/private-output.cc:237 +#: apt-pkg/contrib/mmap.cc:146 #, fuzzy -msgid "[installed,local]" -msgstr " [បានដំឡើង​]" - -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +msgid "Unable to close mmap" +msgstr "មិន​អាចបើក​ %s បានឡើយ" -#: apt-private/private-output.cc:242 +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 #, fuzzy -msgid "[installed,automatic]" -msgstr " [បានដំឡើង​]" +msgid "Unable to synchronize mmap" +msgstr "មិន​អាច​ហៅ​ " -#: apt-private/private-output.cc:244 +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" + +#: apt-pkg/contrib/mmap.cc:322 #, fuzzy -msgid "[installed]" -msgstr " [បានដំឡើង​]" +msgid "Failed to truncate file" +msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "កញ្ចប់​ខាងក្រោម​មាន​ភាពអាស្រ័យ​ដែល​ខុស​គ្នា ៖" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "but %s is installed" -msgstr "ប៉ុន្តែ​ %s ត្រូវ​បាន​ដំឡើង​" +msgid "Unable to stat the mount point %s" +msgstr "មិនអាច​ថ្លែង ចំណុចម៉ោន %s បានឡើយ" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "បរាជ័យក្នុងការ​ថ្លែង ស៊ីឌីរ៉ូម" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "but %s is to be installed" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "មិន​បាន​​ទទួល​ស្គាល់​ប្រភេទ​អក្សរ​សង្ខេប ៖ '%c'" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ប៉ុន្តែ​​វា​មិន​អាច​ដំឡើង​បាន​ទេ​" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "កំពុង​បើ​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ %s" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ប៉ុន្តែ​​វា​ជា​កញ្ចប់​និម្មិត​" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ ប្លុក​ចាប់​ផ្តើម​​ដោយ​គ្មាន​ឈ្មោះ​ ។" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ប៉ុន្តែ​វា​មិន​បាន​ដំឡើង​ទេ​" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ស្លាក​ដែលបាន Malformed" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "ប៉ុន្តែ វា​នឹង​មិន​ត្រូវ​បាន​ដំឡើង​ទេ" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ តម្លៃ​ឥតបានការ​នៅ​ក្រៅ​" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " ឬ" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់​អាចត្រូវបានធ្វើ​តែនៅលើ​កម្រិត​កំពូល​តែប៉ុណ្ណោះ" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ មាន​ការរួមបញ្ចូល​ដែលដាក់​រួមគ្នា​យ៉ាងច្រើន" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "កញ្ចប់​ខាងក្រោម​នឹងត្រូវ​បាន​យកចេញ ៖" - -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "​កញ្ចប់​ខាង​ក្រោម​ត្រូវ​បាន​យក​ត្រឡប់​មក​វិញ ៖" - -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "កញ្ចប់​ខាងក្រោម​នឹង​​ត្រូវ​បាន​​ធ្វើ​ឲ្យប្រសើ​ឡើង ៖" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ បានរួម​បញ្ចូល​ពី​ទីនេះ​" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "កញ្ចប់​ខាងក្រោម​នឹង​​ត្រូវ​បាន​បន្ទាប ៖" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដី​បង្គាប់​ដែល​មិនបានគាំទ្រ '%s'" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "កញ្ចប់​រង់ចាំ​ខាងក្រោម​នឹង​ត្រូវ​​បានផ្លាស់​​ប្តូរ​ ៖" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់​អាចត្រូវបានធ្វើ​តែនៅលើ​កម្រិត​កំពូល​តែប៉ុណ្ណោះ" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "%s (due to %s) " -msgstr "%s (ដោយ​សារតែ​ %s) " +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ សារឥតបានការ​បន្ថែម ដែលនៅខាងចុង​ឯកសារ" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"ព្រមាន​ ៖ កញ្ចប់ដែល​ចាំបាច់​ខាងក្រោម​នឹង​ត្រូវ​បាន​យកចេញ ។\n" -"ការយកចេញ​នេះ​មិន​ត្រូវ​បានធ្វើ​ទេ​លុះត្រា​តែ​អ្នកដឹង​ថា​​អ្នក​កំពុង​ធ្វើ​អ្វីឲ្យប្រាកដ !" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu ត្រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ %lu ត្រូវ​បានដំឡើង​ថ្មី " +msgid "Command line option '%c' [from %s] is not known." +msgstr "ជម្រើស​បន្ទាត់​ពាក្យបញ្ជា '%c' [from %s] មិនស្គាល់ឡើយ ។" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu ត្រូវ​បាន​ដំឡើង​ឡើង​វិញ " +msgid "Command line option %s is not understood" +msgstr "មិនយល់​ពី​ជម្រើស​បន្ទាត់​ពាក្យ​បញ្ជា %s ឡើយ" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "%lu downgraded, " -msgstr "%lu ​ត្រូវបានបន្ទាប់ " +msgid "Command line option %s is not boolean" +msgstr "ជម្រើស​បន្ទាត់ពាក្យ​បញ្ជា​ %s មិនមែនជាប៊ូលីនទេ" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu ដែលត្រូវ​យក​ចេញ​ ហើយ​ %lu មិន​​បាន​ធ្វើ​ឲ្យ​ប្រសើរឡើយ ។\n" +msgid "Option %s requires an argument." +msgstr "ជម្រើស​ %s ត្រូវការ​អាគុយម៉ង់មួយ ។" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចេញបានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "ជម្រើស %s ៖ ការបញ្ជាក់​ធាតុ​កំណត់រចនាសម្ព័ន្ធត្រូវតែមាន =<val> មួយ ។" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "ជម្រើស​ %s ត្រូវ​ការ​អាគុយម៉ង់​ចំនួន​គត់​ មិន​មែន​ '%s'" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "ជម្រើស​ '%s' វែងពេក" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "មិនបានយល់អំពី​ការស្គាល់​ %s ឡើយ សូមព្យាយមយក​ ពិត​ ​​​ឫ មិន​ពិត ។" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Regex compilation error - %s" -msgstr "Regex កំហុស​ការចងក្រង​ - %s" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "កញ្ចប់ %s កំណែ %s មាន​ភាព​អាស្រ័យ​មិន​ត្រូវ​គ្នា ៖\n" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សម័យ​គ្មាន​អាគុយម៉ង់​ទេ" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " កញ្ចប់​ធម្មតា ៖ " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " កញ្ចប់​និម្មិត​សុទ្ធ ៖ " -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "កំហុស​ខាងក្នុង កញ្ចប់​ដំឡើង​ត្រូវ​បាន​ហៅ​​ជាមួយ​កញ្ចប់​ដែល​ខូច !" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " កញ្ចប់​និម្មិត​តែ​មួយ ៖ " -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "កញ្ចប់ ​ត្រូវការឲ្យ​យក​ចេញ​​ ប៉ុន្តែមិនអនុញ្ញាត​ឲ្យយកចេញឡើយ ។" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " កញ្ចប់​និម្មិត​លាយ ៖ " -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "កំហុស​ខាងក្នុង​ ការ​រៀប​តាម​លំដាប់​មិន​បាន​បញ្ចប់ឡើយ" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " បាត់បង់ ៖ " -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "យី អី​ក៏​ចម្លែង​ម្លេះ.. ទំហំ​មិន​ដូច​គ្នា​ឡើយ ។ សូម​ផ្ញើ​អ៊ីមែល​ទៅ apt@packages.debian.org" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "ត្រូវការ​​យក​ %sB/%sB នៃ​ប័ណ្ណសារ ។​\n" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "ត្រូវ​ការយក​ %sB នៃ​ប័ណ្ណសារ ។\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +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 -#: apt-private/private-install.cc:166 -#, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ថែម​​ទំហំ​ថាស​ត្រូវ​បាន​ប្រើ ។\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +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 -#: apt-private/private-install.cc:171 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ថាសនឹង​​ទំនេរ ។ \n" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ " -#: apt-private/private-install.cc:199 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនេរ​គ្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "ការផ្គូរផ្គង​ការផ្ដល់​សរុប ៖ " -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "មាន​បញ្ហា​ ហើយ -y ត្រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "ខ្សែ​អក្សរ​សរុប​ ៖ " -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "បានបញ្ជាក់​តែប្រតិបត្តិការដែលមិនសំខាន់ប៉ុណ្ណោះ ប៉ុន្តែ​នេះមិនមែនជាប្រតិបត្តិការមិនសំខាន់នោះទេ ។" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "ទំហំ​កំណែ​ភាព​អាស្រ័យ​សរុប ៖ " -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ខ្ញុំ​និយាយ !" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "ទំហំ slack សរុប ៖" + +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "ទំហំ​សរុប​ដែល​ទុក​សម្រាប់ ៖ " -#: apt-private/private-install.cc:221 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"អ្នកប្រហែល​ជា​ធ្វើ​អ្វីមួយ​ដែល​អាច​បង្ករ​ឲ្យ​មាន​មហន្ដរាយ ។\n" -"ដើម្បី​បន្ត ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n" -" ?] " +msgid "Package file %s is out of sync." +msgstr "ឯកសារ​កញ្ចប់ %s នៅ​ខាងក្រៅ​ការ​ធ្វើសមកាលកម្ម ។" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "បោះបង់ ។" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "រក​កញ្ចប់​មិន​ឃើញ" -#: apt-private/private-install.cc:242 +#: cmdline/apt-cache.cc:1254 #, fuzzy -msgid "Do you want to continue?" -msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " - -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​" +msgid "You must give at least one search pattern" +msgstr "អ្នក​ត្រូវ​តែ​ផ្ដល់​លំនាំ​មួយ​ដែល​ពិត​ប្រាកដ" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"អនុញ្ញាត​ឲ្យ​ទៅ​ប្រមូល​យក​ប័ណ្ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រត់​ភាព​ទាន់​សម័យ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --" -"fix- ដែលបាត់ឬ់ ?" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix- ដែលបាត់​ និង ​ស្វប​មេឌៀ​ដែល​មិនបាន​​គាំទ្រនៅពេល​បច្ចុប្បន្ន​" - -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាត់បង់​បានឡើយ ។" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "ឯកសារ​កញ្ចប់ ៖" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "ឃ្លាំង​សម្ងាត់​ឋិតនៅ​ក្រៅ​ការ​ធ្វើ​សមកាល​កម្ម ដែលមិន​អាច x-ref ឯកសារ​កញ្ចប់​បាន​ទេ" -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "កញ្ចប់​ដែល​បាន​ខ្ទាស់ ៖" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(រក​មិន​ឃើញ)" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " បាន​ដំឡើង ៖ " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " សាកល្បង ៖ " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "ព័ត៌មាន​ដូចតទៅនេះ អាចជួយ​ដោះស្រាយ​ស្ថានភាព​បាន ៖" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(គ្មាន)" -#: apt-private/private-install.cc:505 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " ខ្ទាស់​កញ្ចប់ ៖ " + +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " តារាង​កំណែ ៖" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s សម្រាប់ %s %s បាន​ចងក្រងនៅលើ​%s %s\n" -#: apt-private/private-install.cc:512 +#: cmdline/apt-cache.cc:1749 #, fuzzy 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] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +"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 "" +"ការ​ប្រើប្រាស់ ៖ apt-cache [options] ពាក្យ​បញ្ជា\n" +" apt-cache [options] add file1 [file2 ...]\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache គឺ​ជា​ឧបករណ៍​កម្រិតទាប​​ដែល​ប្រើ​សម្រាប់​រៀបចំ​ប្រព័ន្ធ​គោល​ពីរ​របស់ APT\n" +"ឯកសារ​ឃ្លាំង​សម្ងាត់ និង ​ព័ត៌មាន​សំណួរ​ពី​ពួក​វា\n" +"\n" +"ពាក្យ​បញ្ជា\n" +" add - បន្ថែម​ឯកសារ​កញ្ចប់​ទៅ​ឃ្លាំង​សម្ងាត់​ប្រភព\n" +" gencaches - បង្កើត​ទាំង​​កញ្ចប់​និង​ឃ្លាំង​សម្ងាត់​ប្រភព\n" +" showpkg - បង្ហាញ​ព័ត៌មាន​ទូទៅ​ខ្លះ​សម្រាប់​កញ្ចប់​តែ​មួយ\n" +" showsrc - បង្ហាញ​កំណត់​ត្រា​ប្រភព\n" +" stats - បង្ហាញ​ស្ថិតិ​មូលដ្ឋាន​ខ្លះ\n" +" dump - បង្ហាញ​ឯកសារ​ទាំងមូល​ក្នុង​ទ្រង់ទ្រាយ​សង្ខេប\n" +" dumpavail - បោះពុម្ព​ឯកសារ​ដែល​មាន​ទៅ stdout\n" +" unmet - បង្ហាញ​ភាពអាស្រ័យ​ unmet \n" +" search - ស្វែងរក​កញ្ចប់​​លំនាំ regex \n" +" show - បង្ហាញ​កំណត់​ត្រា​កញ្ចប់​ដែល​អាច​អាន​បាន\n" +" depends - បង្ហាញព័ត៌មាន​​ភាពអាស្រ័យ​កញ្ចប់​មិន​ទាន់​ច្នៃ\n" +" rdepends - បង្ហាញ​ព័ត៌មាន​ភាពអាស្រ័យ​កញ្ចប់​បញ្ច្រាស់​\n" +" pkgnames - រាយ​ឈ្មោះ​កញ្ចប់​ទាំងអស់​\n" +" dotty - បង្កើត​កញ្ចប់​ក្រាហ្វ​សម្រាប់​ GraphViz\n" +" xvcg - បង្កើត​កញ្ចប់​ក្រាហ្វ​សម្រាប់​ xvcg\n" +" policy - បង្ហាញ ការរៀបចំ​គោលការណ៍​\n" +"\n" +"ជម្រើស​ ៖\n" +" -h នេះ​ជា​អត្ថជំនួយ​\n" +" -p=? ឃ្លាំងសម្ងាត់​កញ្ចប់​ ។\n" +" -s=? ឃ្លាំងសម្ងាត់​ប្រភព ។\n" +" -q ទ្រនិច​ចង្អុល​វឌ្ឍនភាព មិន​អនុញ្ញាត​ ។\n" +" -i បាន​តែ​បង្ហាញ ព័ត៌មាន​ deps ដែល​សំខាន់​សម្រាប់ពាក្យ​បញ្ជាដែល​ខុស​គ្នា  ​​​។\n" +" -c=? អាន​ការកំណត់​រចនាសម្ព័ន្ធ​ឯកសារ​នេះ \n" +" -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. eg -o dir::cache=/tmp\n" +"មើល​ apt-cache(8) និង​ apt.conf(5) សម្រាប់​ព័ត៌មាន​បន្ថែម​​មាន​ក្នុង​ទំព័រ​សៀវភៅដៃ​ ។\n" -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "សូម​ផ្ដល់​ឈ្មោះ​ឲ្យ​ថាស​នេះ ឧទាហរណ៍​ដូចជា 'ដេបៀន 2.1r1 ថាស​ទី ១' ជាដើម" -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "សូម​បញ្ចូល​ថាស​ក្នុង​ដ្រាយ​ហើយ​ចុច​បញ្ចូល​" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" -#: apt-private/private-install.cc:614 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"ភាពអស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។" -#: apt-private/private-install.cc:628 -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 "" -"មិនអាច​ដំឡើងកញ្ចប់​មួយចំនួន​បានឡើយ ។ នេះ​មាន​ន័យ​ថា​អ្នក​\n" -"​បានស្នើរ​ស្ថានភាព​ដែល​មិន​អាច​ធ្វើបានមួយ ឬ ​ប្រសិន​បើ​​អ្នក​កំពុង​ប្រើការចែកចាយ​ពុំ​មាន​លំនឹង​នោះ កញ្ចប់​" -"ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើត​ឡើយ​\n" -" ឬ ​បានយក​ចេញ​ពីការមកដល់ ។" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "ធ្វើដំណើរការ​នេះ​ម្តង​ទៀត​ សម្រាប់​ស៊ីឌី​ទាំងអស់​​ក្នុង​សំណុំ​របស់​អ្នក ។" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "កញ្ចប់​ដែល​បាន​ខូច​" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "​អាគុយម៉ង់​មិន​មាន​គូ​ទេ" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "កញ្ចប់​បន្ថែម​ដូចតទៅនេះ នឹងត្រូវបាន​ដំឡើង ៖" +#: cmdline/apt-config.cc:89 +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 "" +"ការ​ប្រើប្រាស់ ៖ ពាក្យ​បញ្ជា​ apt-config [ជម្រើស] \n" +"\n" +"apt-config ជា​ឧបករណ៍​សាមញ្ញ​សម្រាប់​អាន​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ APT \n" +"\n" +"ពាក្យ​បញ្ជា​ ៖\n" +" shell - របៀប​សែល​\n" +" dump - បង្ហាញ​ការកំណត់​រចនាសម្ព័ន្ធ​\n" +"\n" +"ជម្រើស​\n" +" -h អត្ថនទ​ជំនួយ​នេះ​\n" +" -c=? អាន​ឯកសារ​ការកំណត់​រចនាសម្ព័ន្ធ​នេះ \n" +" -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. -o dir::cache=/tmp\n" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសន៍ ៖" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-private/private-install.cc:819 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" -#: apt-private/private-install.cc:831 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទេ វា​មិនអាចត្រូវបាន​ទាញយកបានឡើយ ។\n" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-private/private-install.cc:836 +#: cmdline/apt-get.cc:454 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" - -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" - -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" +msgid "Couldn't find package %s" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" +msgid "%s set to manually installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-private/private-install.cc:937 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" +msgid "%s set to automatically installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-private/private-main.cc:32 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 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!" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់ខាងក្រោមបានឡើយ !" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "បានបដិសេធ​ការព្រមាន​ការផ្ទៀងផ្ទាត់ភាព​ត្រឹមត្រូវ ។\n" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "មិនអាច​ផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់​មួយចំនួន​បានឡើយ​" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "មិន​អាច​ចាក់​សោ​ថត​ទាញ​យក​បាន​ឡើយ" -#: apt-private/private-download.cc:50 -#, fuzzy -msgid "Install these packages without verification?" -msgstr "ដំឡើង​កញ្ចប់​ទាំងនេះ ​ដោយគ្មានការពិនិត្យ​បញ្ជាក់ [y/N] ? " +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" +msgid "Unable to find a source package for %s" +msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "វាយ​" - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "យក​ ៖" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " - -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "បាន​ទៅ​ប្រមូល​ %sB ក្នុង​ %s (%sB/s)\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid " [Working]" -msgstr " [កំពុង​ធ្វើការ​]" +msgid "Couldn't determine free space in %s" +msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ​ក្នុង​ %s បានឡើយ" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"ផ្លាស់ប្តូរ​មេឌៀ ៖ សូម​បញ្ចូល​ថាស​ដែល​មាន​ស្លាក\n" -" '%s'\n" -"ក្នុង​ដ្រាយ​ '%s' ហើយ​ចុច​បញ្ចូល\n" +msgid "You don't have enough free space in %s" +msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​ទេ​នៅក្នុង​ %s ឡើយ" -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#. 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:891 #, c-format -msgid "Unable to read %s" -msgstr "មិន​អាច​អាន​ %s បានឡើយ" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "ត្រូវការ​យក​ %sB/%sB នៃ​ប័ណ្ណសារ​ប្រភព ។\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#. 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:896 #, c-format -msgid "Unable to change to %s" -msgstr "មិនអាច​ប្ដូរទៅ %s បានឡើយ" +msgid "Need to get %sB of source archives.\n" +msgstr "ត្រូវការ​យក​ %sB នៃ​ប័ណ្ណសារ​ប្រភព​ ។\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:902 #, c-format -msgid "No mirror file '%s' found " -msgstr "" +msgid "Fetch source %s\n" +msgstr "ទៅប្រមូល​ប្រភព​ %s\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "បរាជ័យ​ក្នុងការទៅប្រមូលយក​ប័ណ្ណសារ​មួយចំនួន ។" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​តែ​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:950 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​បំពង់​ IPC សម្រាប់​ដំណើរ​ការ​រង​" +#: cmdline/apt-get.cc:962 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជ័យ​ ។\n" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "បាន​បិទ​ការ​តភ្ជាប់​មុន​ពេល" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "ការ​កំណត់​លំនាំ​ដើម​មិន​ល្អ !" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជ័យ​ ។\n" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "សង្កត់​ បញ្ចូល ​ដើម្បី​បន្ត ។" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "ដំណើរ​ការ​កូន​បាន​បរាជ័យ​" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "ត្រូវតែ​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" + +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "កំហុ​ស​មួយ​ចំនួន​បាន​កើត​ឡើង​ខណៈពេល​ពន្លា​កញ្ចប់ ។ ខ្ញុំ​នឹង​កំណត់រចនាសម្ប័ន្ធ" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "មិន​អាច​សាងសង់​​ព័ត៌មាន​ភាពអស្រ័យ​សម្រាប់ %s" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "កញ្ចប់​ដែល​បាន​ដំឡើង​ ។ នេះ​ប្រហែល​ជា​លទ្ធផល​កំហុស​ស្ទួន​" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s មិនមានភាពអាស្រ័យ​ស្ថាបនាឡើយ​ ។\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "ឬ​ កំហុសដែលបង្ក​ដោយ​ការ​បាត់បង់​ភាពអាស្រ័យ​ ។ ​មិន​អី​ទេ​ គ្រាន់​តែ​ជា​កំហុស " +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: dselect/install:105 +#: cmdline/apt-get.cc:1289 +#, c-format msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "នៅខាងលើ​សារ​នេះ​គឺ​សំខាន់​ណាស់​ ។ សូម​ជួសជុល​ពួកវា​ ហើយ​រត់​ការដំឡើង​ម្តងទៀត​" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: dselect/update:30 -msgid "Merging available information" -msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" +#: cmdline/apt-get.cc:1312 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "ទម្លាក់​ថ្នាំង​ដែល​បាន​ហៅ​លើ​ថ្នាំងដែល​នៅតែតភ្ជាប់" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាច​តម្រូវចិត្តបានទេ ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​តម្រូវចិត្ត​" +"តម្រូវការ​កំណែបានឡើយ" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "បរាជ័យ​ក្នុងការ​ដាក់ទីតាំង​ធាតុ​ដែលរាយប៉ាយ !" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "បរាជ័យ​ក្នុងការ​បម្រុងទុក​ការបង្វែរ" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "កំហុស​ខាងក្នុង នៅក្នុង AddDiversion" - -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "កំពុង​ព្យាយាម​សរសេរ​ជាន់​ពីលើ​ការបង្វែរ %s -> %s និង​ %s/%s" - -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "ការបន្ថែម​ស្ទួន នៃការបង្វែរ​ %s -> %s" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​ស្ទួន​ %s/%s" - -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "ផ្លូវ​ %s វែង​ពេក" - -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "កំពុង​ពន្លា​ %s ច្រើន​ជាង​ម្តង​" - -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "ថត​ %s ត្រូវបាន​បង្វែរ" - -#: apt-inst/extract.cc:152 -#, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "កញ្ចប់ ​កំពុង​ព្យាយាម​សរសេរ​ទៅកាន់​គោលដៅ​បង្វែរ​ %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "ផ្លូវ​បង្វែរ វែងពេក" - -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "បាន​បរាជ័យ​ក្នុង​ការថ្លែង %s" - -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 -#, c-format -msgid "Failed to rename %s to %s" -msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" - -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "ថត​ %s ត្រូវ​បាន​ជំនួស​ដោយ​មិនមែន​ជា​ថត​" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "បរាជ័យ​ក្នុងការ​ដាក់ថ្នាំង​នៅក្នុង​ធុង​រាយប៉ាយ​របស់វា" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "ផ្លូវ​វែង​ពេក" - -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "សរសេរ​ជាន់​លើកញ្ចប់ផ្គួផ្គង​ដោយ​គ្មាន​កំណែ​សម្រាប់ %s" - -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "ឯកសារ​ %s/%s សរសេរជាន់​ពីលើ​មួយ​ក្នុង​កញ្ចប់ %s" - -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "មិន​អាច​ថ្លែង %s បានឡើយ" - -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" - -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "បរាជ័យ​ក្នុងការ​បិទឯកសារ %s" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "នេះ​ជាមិនមែនជា​ប័ណ្ណសារ​ DEB ​ត្រឹមត្រូវទេ បាត់បង់សមាជិក​ '%s'​" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s: %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "កំហុស​ខាងក្នុង ​មិន​អាច​កំណត់​ទីតាំង​សមាជិក​ %s បានឡើយ" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "ឯកសារត្រួតពិនិត្យ​ដែលមិនអាច​ញែកបាន" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "ហត្ថលេខា​ប័ណ្ណសា​រមិន​ត្រឹមត្រូវ​" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "ភាពអាស្រ័យ​ដែល​បង្កើត​ %s មិន​អាច​បំពេញ​សេចក្ដី​ត្រូវការ​បាន​ទេ ។" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "កំហុស​ក្នុងការ​អានបឋមកថា​សមាជិក​ប័ណ្ណសារ" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ដំណើរ​​ការ​បង្កើត​ភាព​អាស្រ័យ" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "ប័ណ្ណសារ ខ្លីពេក" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "បរាជ័យ​ក្នុងការ​អាន​បឋមកថា​ប័ណ្ណសារ" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "បាន​បរាជ័យក្នុង​ការ​បង្កើត​បំពង់​" - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "បាន​បរាជ័យក្នុង​ការ​ប្រតិបត្តិ gzip" - -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "ប័ណ្ណសារ​បាន​ខូច​" - -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar ឆេកសាំ​បាន​បរាជ័យ ប័ណ្ណសារ​បាន​ខូច" - -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "មិន​ស្គាល់​ប្រភេទ​បឋមកថា​ TAR %u ដែលជា​សមាជិក​ %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "មិនអាច​ថ្លែង %s បានឡើយ ។" +msgid "Changelog for %s (%s)" +msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"របៀបប្រើ ៖ ពាក្យបញ្ជា apt-get [options]\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] ប្រភព pkg1 [pkg2 ...]\n" +"\n" +"apt-get គឺជា​ចំណុចប្រទាក់​បន្ទាត់​ពាក្យបញ្ជា​សាមញ្ញ​មួយ សម្រាប់​ធ្វើការទាញយក និង\n" +"ដំឡើង​កញ្ចប់ ។ ជាញឹកញាប់​បំផុត គឺប្រើ​ពាក្យបញ្ជា​ដើម្បី​ធ្វើឲ្យទាន់សម័យ​\n" +"និង ដំឡើង ។\n" +"\n" +"ពាក្យ​បញ្ជា ៖\n" +" update - ទៅយក​បញ្ជី​កញ្ចប់​ថ្មី\n" +" upgrade - ធ្វើឲ្យប្រសើរ\n" +" install - ដំឡើង​កញ្ចប់​ថ្មី (pkg គឺ libc6 មិនមែន libc6.deb)\n" +" remove - យក​កញ្ចប់​ចេញ\n" +" source - ទាញយក​ប័ណ្ណសារ​ប្រភព\n" +" build-dep - កំណត់​រចនា​សម្ព័ន្ធ​ភាពអាស្រ័យ​ក្នុងការស្ថាបនា​សម្រាប់​កញ្ចប់​ប្រភព\n" +" dist-upgrade - ការចែកចាយ​ភាពល្អប្រសើរ សូមមើល apt-get(8)\n" +" dselect-upgrade - ដាក់ពីក្រោយ​ជម្រើស dselect\n" +" clean - លុប​ឯកសារប័ណ្ណសារ​ដែលបានទាញ​យក\n" +" autoclean - លុប​ឯកសារប័ណ្ណសារ​ដែលបានទាញយក​ចាស់\n" +" check - ផ្ទៀងផ្ទាត់​ថា​មិនមានភាព​អាស្រ័យ​ដែល​ខូចទេ\n" +"\n" +"ជម្រើស ៖\n" +" -h អត្ថបទ​ជំនួយ​នេះ ៖\n" +" -q ទិន្នផល​ដែល​អាច​ចុះកំណត់ហេតុបាន - មិនមាន​ទ្រនិចបង្ហាញ​ដំណើរការឡើយ\n" +" -qq គ្មាន​លទ្ធផល​ទេ លើកលែងតែ​កំហុស\n" +" -d ទាញយកតែប៉ុណ្ណោះ - កុំដំឡើង​ ឬ ស្រាយ​ប័ណ្ណសារ\n" +" -s No-act. ធ្វើការ​ក្លែង​ការរៀប​តាមលំដាប់\n" +" -y សន្មត​ថា បាទ/ចាស ទៅគ្រប់តម្រូវការ ហើយកុំ​រំលឹក\n" +" -f ប៉ុនប៉ង​ធ្វើការបន្ត​ ប្រសិនបើ​ការពិនិត្យ​ភាពត្រឹមត្រូវ​បរាជ័យ\n" +" -m ប៉ុនប៉ង​ធ្វើការបន្ត​ ប្រសិនបើ​ប័ណ្ណសារ​មិនអាច​ដាក់ទីតាំងបាន\n" +" -u បង្ហាញ​បញ្ជី​កញ្ចប់​ដែល​បានធ្វើឲ្យប្រសើរ​ផងដែរ\n" +" -b ស្ថាបនា​កញ្ចប់ប្រភព បន្ទាប់ពី​ទៅប្រមូលយកវា\n" +" -V បង្ហាញ​លេខកំណែ​ជា​អក្សរ\n" +" -c=? អាន​ឯកសារកំណត់​រចនា​សម្ព័ន្ធ​នេះ\n" +" -o=? កំណត់​ជម្រើស​កំណត់រចនាសម្ព័ន្ធ​តាមចិត្ត​មួយ ឧទ. -o dir::cache=/tmp\n" +"សូមមើល 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" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "មិន​គាំទ្រ​ប្រព័ន្ធ​កញ្ចប់'%s' ឡើយ" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "មិនអាច​កំណត់​ប្រភេទ​ប្រព័ន្ធ​កញ្ចប់​ដែល​សមរម្យ​បានឡើយ" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "បានសរសេរ %i កំណត់ត្រា ។\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់ ។\n" - -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "បានសរសេរ​ %i កំណត់ត្រា​ជាមួយួយ​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់​ និង​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​ ​\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "MD5Sum មិន​ផ្គួផ្គង​" - -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "មិនអាច​រកឃើញ​កម្មវិធី​បញ្ជា​វិធីសាស្ត្រ %s ឡើយ ។" +msgid "%s can not be marked as it is not installed.\n" +msgstr "ប៉ុន្តែ​វា​មិន​បាន​ដំឡើង​ទេ​" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "វិធីសាស្ត្រ​ %s មិន​អាច​ចាប់​ផ្តើម​ត្រឹមត្រូវ​ទេ​" +msgid "%s was already set to manually installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "សូម​បញ្ចូល​ស្លាក​ឌីស​ ៖ '%s' ក្នុង​ដ្រាយ​ '%s' ហើយ​សង្កត់​ចូល ។" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "បញ្ជី​កញ្ចប់​ ឬ ឯកសារ​ស្ថានភាព​មិន​អាចត្រូវបាន​​ញែក ​​ឬ ត្រូវបាន​បើកបានឡើយ​​ ។" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "អ្នកប្រហែលជា​ចង់ភាពទាន់សម័យ apt-get ដើម្បី​កែ​បញ្ហា​ទាំងនេះ" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "ឃ្លាំង​កញ្ចប់​ទទេ​" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ត្រឹមត្រូវ​" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "ឯកសារ​ឃ្លាំងសម្ងាត់​​កញ្ចប់​ជាកំណែ​មិន​ត្រូវគ្នា​" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ត្រឹមត្រូវ​" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT នេះ មិនគាំទ្រ​ប្រព័ន្ធ​ ការធ្វើកំណែនេះទេ​ '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "ឃ្លាំង​សម្ងាត់​កញ្ចប់ត្រូវ​បានស្ថាបនា់​សម្រាប់ស្ថាបត្យករ​ខុស​ៗគ្នា​​" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "អាស្រ័យ​" +msgid "Unable to read the cdrom database %s" +msgstr "មិន​អាច​អាន​មូលដ្ឋាន​ទិន្នន័យ​​ស៊ីឌីរ៉ូម​​ %s បានឡើយ" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "អាស្រ័យជា​មុន" +#: 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 "" +"សូម​ប្រើ​ apt-cdrom ដើម្បី​បង្កើត​ស៊ីឌី-រ៉ូម​នេះ​ ដែលបានរៀបចំ​តាម​ APT​ ។ apt-get ធ្វើ​ឲ្យ​ទាន់សម័យ ​មិន​" +"ត្រូវ​បានប្រើ​ដើម្បី​បន្ថែម​ស៊ីឌី-រ៉ូមថ្មីឡើយ​" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "ផ្ដល់យោបល់​" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "ស៊ីឌី-រ៉ូមខុស" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "ផ្តល់​អនុសាសន៍​" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "មិនអាចអាន់ម៉ោន ស៊ីឌី​-រ៉ូម​ នៅ​​ក្នុង​ %s បានទេ វាអាចនៅតែប្រើបាន ។" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "ប៉ះទង្គិច" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "រក​ថាសមិ​ន​ឃើញ​ ។" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "ជំនួស​" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "រកឯកសារ​មិន​ឃើញ​" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "លែង​ប្រើ" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "បរាជ័យ​ក្នុងការថ្លែង" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "បរាជ័យក្នុងការកំណត់​ពេលវេលា​ការកែប្រែ​" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI មិនត្រឹមត្រូវ​ URIS មូលដ្ឋានមិនត្រូវ​ចាប់ផ្តើម​ជាមួយ​ // ឡើយ" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "សំខាន់​" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "កំពុង​ចូល​" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "បាន​ទាមទារ" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "មិន​អាច​កំណត់ឈ្មោះដែលត្រូវបង្ហាញ​បានឡើយ​" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "គំរូ" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "មិន​អាច​កំណត់ឈ្មោះមូលដ្ឋាន​បានឡើយ" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "ស្រេចចិត្ត" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "ម៉ាស៊ីន​បម្រើបានបដិសេធ​ការតភ្ជាប់ ហើយ​ បាននិយាយ ៖ %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "បន្ថែម" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER បរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "ប្រភេទ​ឯកសារ​លិបិក្រម​ '%s' មិនត្រូវ​បាន​គាំទ្រ​" +msgid "PASS failed, server said: %s" +msgstr "PASS បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "ឃ្លាំងសម្ងាត់​មិន​ត្រូវ​គ្នា​នឹង ប្រព័ន្ធ ធ្វើកំណែ" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"ម៉ាស៊ីន​បម្រើ​ប្រូកស៊ី​ត្រូវ​បាន​បញ្ជាក់​ ប៉ុន្តែ​គ្មាន​ស្គ្រីប​ចូល​ទេ Acquire::ftp::ProxyLogin គឺ ទទេ ។" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "កំហុស​បានកើតឡើង​ខណៈពេល​កំពុង​ដំណើរការ​ %s (FindPkg)" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "ពាក្យ​បញ្ជា​ស្គ្រីប​ចូល​ '%s' បានបរាជ័យ ម៉ាស៊ីន​បម្រើ​បាននិយាយ ៖ %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "អស្ចារ្យ អ្នក​មាន​ឈ្មោះ​កញ្ចប់​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​​  ។" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាននិយាយ​ ៖ %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "អស់ពេល​ក្នុងការតភ្ជាប់​" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "ម៉ាស៊ីន​បម្រើ​បាន​បិទ​ការតភ្ជាប់​" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "អស្ចារ្យ​, អ្នក​មាន​ភាពអាស្រ័យ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "ឆ្លើយតប​សតិ​បណ្តោះអាសន្ន​​អស់ចំណុះ ។" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "កញ្ចប់​ %s %s រក​មិន​ឃើញ​ខណៈ​ពេល​កំពុង​ដំណើរការ​ភាពអាស្រ័យ​​ឯកសារ" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "ការបង្ខូច​ពិធីការ​" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "មិន​អាច​បង្កើត​រន្ធបានឡើយ" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "កំពុង​អាន​បញ្ជី​កញ្ចប់" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "មិន​អាច​តភ្ជាប់​​រន្ធទិន្នន័យ​បានឡើយ អស់​ពេល​ក្នុងការតភ្ជាប់​" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "ការផ្ដល់​ឯកសារ​ប្រមូលផ្ដុំ" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "បាន​បរាជ័យ" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "មិន​អាច​សរសេរ​ទៅ %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "មិនអាចតភ្ជាប់​​រន្ធអកម្ម​​បានឡើយ ។" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាត់​ប្រភព​" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo មិន​អាច​​ទទួល​យក​រន្ធ​សម្រាប់​ស្តាប់​​បានឡើយ" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "មិន​អាច​ចងរន្ធ​បានបានឡើយ​" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "មិនអាច​ស្ដាប់នៅលើរន្ធ​បានឡើយ" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "មិន​អាច​កំណត់​ឈ្មោះរបស់​រន្ធ​បានឡើយ" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "មិនអាច​ផ្ញើពាក្យ​បញ្ជា​ PORT បានឡើយ" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "មិន​ស្គាល់​អាសយដ្ឋាន​គ្រួសារ​ %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "ប្តូរ​ឈ្មោះ​បានបរាជ័យ​, %s (%s -> %s) ។" +msgid "EPRT failed, server said: %s" +msgstr "EPRT បរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ ៖ %s" -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "MD5Sum មិន​ផ្គួផ្គង​" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "ការតភ្ជាប់​រន្ធ​​ទិន្នន័បានអស់ពេល​" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "មិនអាច​ទទួលយក​ការតភ្ជាប់​បានឡើយ" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "បញ្ហា​ធ្វើឲ្យខូច​ឯកសារ" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "មិន​អាច​ទៅ​ប្រមូល​យក​ឯកសារ​បានឡើយ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "រន្ធ​ទិន្នន័យ​បាន​អស់​ពេល​" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ខាងក្រោម​នេះទេ ៖\n" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "បរាជ័យក្នុងការ​ផ្ទេរ​ទិន្នន័យ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "សំណួរ​" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "មិន​អាច​ហៅ​ " -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:76 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:87 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP ៖ %s %s]" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:94 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "មិន​អាច​បង្កើត​រន្ធ​សម្រាប់ %s (f=%u t=%u p=%u) បានឡើយ" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:100 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "មិនអាច​ចាប់ផ្ដើម​ការតភ្ជាប់​​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ។" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:108 #, 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 បាន​ទេ ។ ​មាន​ន័យ​ថា​អ្នក​ត្រូវការ​ជួសជុល​កញ្ចប់​នេះ​ដោយ​ដៃ ។ " -"(ដោយសារ​​បាត់​ស្ថាបត្យកម្ម)" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "មិន​អាច​តភ្ជាប់​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ការ​តភ្ជាប់​បានអស់​ពេល​" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:126 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​ %s:%s (%s) បានឡើយ ។" -#: apt-pkg/acquire-item.cc:1991 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "កញ្ចប់​ឯកសារ​លិបិក្រម​ត្រូវ​បាន​ខូច ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នេះ​ទេ​ %s ។" +msgid "Connecting to %s" +msgstr "កំពុង​តភ្ជាប់​ទៅកាន់ %s" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "ប្លុក​ក្រុមហ៊ុន​លក់​ %s គ្មាន​ស្នាម​ផ្តិត​ម្រាម​ដៃ" +msgid "Could not resolve '%s'" +msgstr "មិន​អាច​ដោះស្រាយ​ '%s' បានឡើយ" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "ការ​ដោះស្រាយ​ភាព​បរាជ័យ​​បណ្តោះអាសន្ន '%s'" + +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" +msgid "System error resolving '%s:%s'" +msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "ថត​ប័ណ្ណសារ​ %spartial គឺ​បាត់បង់​ ។" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" +msgid "Unable to connect to %s:%s:" +msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​​ %s %s ៖" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "កំពុង​ទៅ​យក​ឯកសារ %li នៃ %li (នៅសល់ %s)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "កំហុស​ខាងក្នុង​ ៖ ហត្ថលេខា​​ល្អ ប៉ុន្តែ ​មិន​អាច​កំណត់​កូនសោ​ស្នាម​ម្រាមដៃ ?!" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "កំពុង​ទៅយក​ឯកសារ %li នៃ %li" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "​បានជួប​ប្រទះ​​​​ហត្ថលេខា​យ៉ាងហោចណាស់មួយ ដែ​លត្រឹមត្រូវ​ ។" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"ឯកសារ​លិបិក្រម​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​​ទាញ​យក ​ពួកវាត្រូវបាន​មិន​អើពើ​ ឬ ប្រើ​​ឯកសារ​ចាស់​ជំនួសវិញ ​​។" - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "អ្នកត្រូវតែដាក់ 'ប្រភព' URIs មួយចំនួន​នៅក្នុង sources.list របស់អ្នក" +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "មិន​អាច​ប្រតិបត្តិ '%s' ដើម្បី​ផ្ទៀងផ្ទាត់​ហត្ថលេខា (តើ gpgv ត្រូវ​បាន​ដំឡើង​ឬនៅ ?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "កំណត់ត្រា​មិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារចំណង់ចំណូលចិត្ត មិនមាន​បឋមកថា​កញ្ចប់ទេ" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "មិន​បាន​យល់​ពី​ប្រភេទ​ម្ជុល %s ឡើយ" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "មិនស្គាល់កំហុស ក្នុងការប្រតិបត្តិ gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "គ្មាន​អទិភាព (ឬ សូន្យ​) បានបញ្ជាក់​សម្រាប់​ម្ជុល​ទេ" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "ហត្ថលេខា​ខាង​ក្រោម​មិន​ត្រឹមត្រូវ ៖\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 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:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "ហត្ថលេខា​ខាងក្រោម​មិន​អាចផ្ទៀងផ្ទាត់បាន​ទេ​ ព្រោះកូនសោ​សាធារណៈមិន​អាច​ប្រើ​បាន​ ៖\n" -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"ការរត់​ការដំឡើង​នេះ នឹងទាមទារ​ឲ្យយកកញ្ចប់ចាំបាច់ %s បណ្ដោះអាសន្ន ដោយសារ រង្វិល ការប៉ះទង្គិច/" -"ភាពអាស្រ័យជាមុន ។ ជាញឹកញាប់គឺ មិនត្រឹមត្រូវ ប៉ុន្តែ ប្រសិនបើអ្នក​ពិតជាចង់ធ្វើវា ធ្វើឲ្យជម្រើស APT::" -"Force-LoopBreak សកម្ម ។" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "បន្ទាត់​ %u មាន​ប្រវែង​វែងពេកនៅ​ក្នុង​បញ្ជី​ប្រភព​ %s ។" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "កំហុសក្នុងការ​សរសេរ​ទៅកាន់​ឯកសារ" -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "មិនកំពុងម៉ោន ស៊ីឌី​-រ៉ូម​ ទេ..." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការតភ្ជាប់" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "ប្រើប្រាស់ចំណុចម៉ោន​ ស៊ីឌី​-រ៉ូម​ %s\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "កំពុង​រង់ចាំឌីស​...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារ" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "កំពុង​ម៉ោន​ ស៊ីឌី​-រ៉ូម​...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "ជ្រើស​បាន​បរាជ័យ​" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "កំពុង​ធ្វើអត្តសញ្ញាណនា​... " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "ការតភ្ជាប់​បាន​អស់ពេល​" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "បានទុក​ស្លាក ៖ %s \n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារលទ្ធផល" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "កំពុង​ស្កេន​ឌីស​សម្រាប់​​ឯកសារ​លិបិក្រម​...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "កំពុង​រង់ចាំ​បឋមកថា" -#: apt-pkg/cdrom.cc:734 -#, fuzzy, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "បានរកឃើញ លិបិក្រម​កញ្ចប់ %i លិបិក្រម​ប្រភព%i និង ហត្ថលេខា %i \n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "ជួរ​បឋមកថា​ខូច​" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើបឋមកថាចម្លើយតបមិនត្រឹមត្រូវ" -#: apt-pkg/cdrom.cc:771 -#, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "បានទុក​ស្លាក ៖ %s \n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​​បឋមកថាប្រវែង​​​មាតិកា​មិនត្រឹមត្រូវ​" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "នោះមិនមែនជាឈ្មោះត្រឹមត្រូវទេ សូមព្យាយាម​ម្ដងទៀត ។\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​បឋមកថា​ជួរ​មាតិកា​មិន​ត្រឹមត្រូវ​" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"ឌីស​នេះ​ត្រូវ​បាន​ហៅ​ ៖ \n" -"'%s'\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "ម៉ាស៊ីន​បម្រើ HTTP នេះបាន​ខូច​​​ជួរ​គាំទ្រ​" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "កំពុង​ចម្លង​បញ្ជី​កញ្ចប់..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆេទ" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "កំពុងសរសេរ​បញ្ជី​ប្រភព​ថ្មី\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "ទិន្នន័យ​បឋមកថា​ខូច" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\n" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "ការតភ្ជាប់​បាន​បរាជ័យ​" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ​ ខ្ញុំ​មិន​អាច​រក​ប័ណ្ណសារ​សម្រាប់​វា​បាន​ទេ​ ។" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "កំហុស​ខាង​ក្នុង​" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើត នេះ​ប្រហែលជា បង្កដោយកញ្ចប់​" -"ដែលបាន​ទុក ។" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "មិន​អាច​កែ​បញ្ហាបានទេេ អ្កបានទុក​កញ្ចប់​ដែល​ខូច ។។" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "ធ្វើរួច​" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "កំពុងស្ថាបនា​មែកធាងភាពអាស្រ័យ" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "កំណែ​សាកល្បង​" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "ការបង្កើត​ភាពអាស្រ័យ​" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "កំពុង​កែ​ភាពអាស្រ័យ​..." -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " បាន​បរាជ័យ ។" -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "មិន​អាច​កែ​ភាព​អាស្រ័យ​បានឡើយ​" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "មិនអាច​បង្រួម​ការ​កំណត់​ភាព​ប្រសើរ​​បាន​ឡើយ​" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់​ %s (2) បានឡើយ" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " ធ្វើ​រួច" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "រក​មិន​ឃើញ​ការ​ចេញ​ផ្សាយ​ '%s' សម្រាប់​ '%s' ឡើយ" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "អ្នក​ប្រហែល​ជា​ចង់រត់ 'apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនេះ​ហើយ ។" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "រក​មិន​ឃើញ​កំណែ​ '%s' សម្រាប់ '%s'" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "ភាព​អាស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ការ​ប្រើ -f ។" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +msgid "[installed,upgradable to: %s]" +msgstr " [បានដំឡើង​]" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [បានដំឡើង​]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [បានដំឡើង​]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [បានដំឡើង​]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "ប៉ុន្តែ​ %s ត្រូវ​បាន​ដំឡើង​" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ប៉ុន្តែ​​វា​មិន​អាច​ដំឡើង​បាន​ទេ​" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ប៉ុន្តែ​​វា​ជា​កញ្ចប់​និម្មិត​" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ប៉ុន្តែ​វា​មិន​បាន​ដំឡើង​ទេ​" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "បន្ទាត់​ដែលមិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារ​បង្វែរ ៖ %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ប៉ុន្តែ វា​នឹង​មិន​ត្រូវ​បាន​ដំឡើង​ទេ" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ឬ" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "បន្ទាត់​ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "កញ្ចប់​ខាងក្រោម​មាន​ភាពអាស្រ័យ​ដែល​ខុស​គ្នា ៖" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព %s (dist)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "កញ្ចប់​ខាងក្រោម​នឹងត្រូវ​បាន​យកចេញ ៖" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "​កញ្ចប់​ខាង​ក្រោម​ត្រូវ​បាន​យក​ត្រឡប់​មក​វិញ ៖" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "កញ្ចប់​ខាងក្រោម​នឹង​​ត្រូវ​បាន​​ធ្វើ​ឲ្យប្រសើ​ឡើង ៖" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "កញ្ចប់​ខាងក្រោម​នឹង​​ត្រូវ​បាន​បន្ទាប ៖" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "កញ្ចប់​រង់ចាំ​ខាងក្រោម​នឹង​ត្រូវ​​បានផ្លាស់​​ប្តូរ​ ៖" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​ញ្ជី​ប្រភព​ %s (URI)" +msgid "%s (due to %s) " +msgstr "%s (ដោយ​សារតែ​ %s) " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"ព្រមាន​ ៖ កញ្ចប់ដែល​ចាំបាច់​ខាងក្រោម​នឹង​ត្រូវ​បាន​យកចេញ ។\n" +"ការយកចេញ​នេះ​មិន​ត្រូវ​បានធ្វើ​ទេ​លុះត្រា​តែ​អ្នកដឹង​ថា​​អ្នក​កំពុង​ធ្វើ​អ្វីឲ្យប្រាកដ !" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព %s (dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu ត្រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ %lu ត្រូវ​បានដំឡើង​ថ្មី " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "បន្ទាត់​ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" +msgid "%lu reinstalled, " +msgstr "%lu ត្រូវ​បាន​ដំឡើង​ឡើង​វិញ " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist លែងប្រើ)" +msgid "%lu downgraded, " +msgstr "%lu ​ត្រូវបានបន្ទាប់ " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu ដែលត្រូវ​យក​ចេញ​ ហើយ​ %lu មិន​​បាន​ធ្វើ​ឲ្យ​ប្រសើរឡើយ ។\n" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:719 #, c-format -msgid "Opening %s" -msgstr "កំពុង​បើក​ %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចេញបានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n" -#: apt-pkg/sourcelist.cc:371 +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សម័យ​គ្មាន​អាគុយម៉ង់​ទេ" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (ប្រភេទ​)" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "បាន​ដំឡើង %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "កំហុស​ខាងក្នុង កញ្ចប់​ដំឡើង​ត្រូវ​បាន​ហៅ​​ជាមួយ​កញ្ចប់​ដែល​ខូច !" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "កំពុង​កំណត់​រចនា​សម្ព័ន្ធ %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "កញ្ចប់ ​ត្រូវការឲ្យ​យក​ចេញ​​ ប៉ុន្តែមិនអនុញ្ញាត​ឲ្យយកចេញឡើយ ។" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "កំពុង​យក %s ចេញ" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "កំហុស​ខាងក្នុង​ ការ​រៀប​តាម​លំដាប់​មិន​បាន​បញ្ចប់ឡើយ" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "យី អី​ក៏​ចម្លែង​ម្លេះ.. ទំហំ​មិន​ដូច​គ្នា​ឡើយ ។ សូម​ផ្ញើ​អ៊ីមែល​ទៅ apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:99 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Noting disappearance of %s" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "ត្រូវការ​​យក​ %sB/%sB នៃ​ប័ណ្ណសារ ។​\n" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Running post-installation trigger %s" -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "ត្រូវ​ការយក​ %sB នៃ​ប័ណ្ណសារ ។\n" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:167 #, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ថែម​​ទំហំ​ថាស​ត្រូវ​បាន​ប្រើ ។\n" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:172 #, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ថាសនឹង​​ទំនេរ ។ \n" -#: apt-pkg/deb/dpkgpm.cc:989 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing %s" -msgstr "កំពុងរៀបចំ​ %s" +msgid "You don't have enough free space in %s." +msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនេរ​គ្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "កំពុង​ស្រាយ %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "មាន​បញ្ហា​ ហើយ -y ត្រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "កំពុងរៀបចំ​កំណត់រចនាសម្ព័ន្ធ %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "បានបញ្ជាក់​តែប្រតិបត្តិការដែលមិនសំខាន់ប៉ុណ្ណោះ ប៉ុន្តែ​នេះមិនមែនជាប្រតិបត្តិការមិនសំខាន់នោះទេ ។" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "បាន​ដំឡើង %s" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ខ្ញុំ​និយាយ !" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:222 #, c-format -msgid "Preparing for removal of %s" -msgstr "កំពុងរៀបចំដើម្បី​ការយក​ចេញ​នៃ %s" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"អ្នកប្រហែល​ជា​ធ្វើ​អ្វីមួយ​ដែល​អាច​បង្ករ​ឲ្យ​មាន​មហន្ដរាយ ។\n" +"ដើម្បី​បន្ត ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "បាន​យក %s ចេញ" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "បោះបង់ ។" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "កំពុង​រៀបចំ​យក %s ចេញ​ទាំង​ស្រុង" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"អនុញ្ញាត​ឲ្យ​ទៅ​ប្រមូល​យក​ប័ណ្ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រត់​ភាព​ទាន់​សម័យ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --" +"fix- ដែលបាត់ឬ់ ?" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "មិន​អាច​សរសេរ​ទៅ %s" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix- ដែលបាត់​ និង ​ស្វប​មេឌៀ​ដែល​មិនបាន​​គាំទ្រនៅពេល​បច្ចុប្បន្ន​" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាត់បង់​បានឡើយ ។" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:366 +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] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "ព័ត៌មាន​ដូចតទៅនេះ អាចជួយ​ដោះស្រាយ​ស្ថានភាព​បាន ៖" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +"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] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: apt-private/private-install.cc:517 +#, fuzzy, 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] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"ភាពអស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: apt-private/private-install.cc:638 +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 "" +"មិនអាច​ដំឡើងកញ្ចប់​មួយចំនួន​បានឡើយ ។ នេះ​មាន​ន័យ​ថា​អ្នក​\n" +"​បានស្នើរ​ស្ថានភាព​ដែល​មិន​អាច​ធ្វើបានមួយ ឬ ​ប្រសិន​បើ​​អ្នក​កំពុង​ប្រើការចែកចាយ​ពុំ​មាន​លំនឹង​នោះ កញ្ចប់​" +"ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើត​ឡើយ​\n" +" ឬ ​បានយក​ចេញ​ពីការមកដល់ ។" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "កញ្ចប់​ដែល​បាន​ខូច​" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "កញ្ចប់​បន្ថែម​ដូចតទៅនេះ នឹងត្រូវបាន​ដំឡើង ៖" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "ជម្រើស​ %s រក​មិន​ឃើញ​ឡើយ" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសន៍ ៖" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:825 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "មិន​ប្រើប្រាស់​ការចាក់សោ សម្រាប់តែឯកសារចាក់សោ​ដែលបានតែអានប៉ុណ្ណោះ %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "មិន​អាច​បើក​ឯកសារ​ចាក់សោ​ %s បានឡើយ" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:841 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "មិនប្រើ​ការចាក់សោ សម្រាប់ nfs ឯកសារ​ចាក់សោដែលបានម៉ោន%s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទេ វា​មិនអាចត្រូវបាន​ទាញយកបានឡើយ ។\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:846 #, c-format -msgid "Could not get lock %s" -msgstr "មិន​អាច​ចាក់សោ %s បានឡើយ" +msgid "%s is already the newest version.\n" +msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" + +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់ខាងក្រោមបានឡើយ !" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "បានបដិសេធ​ការព្រមាន​ការផ្ទៀងផ្ទាត់ភាព​ត្រឹមត្រូវ ។\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "ដំណើរការ​រង​ %s បានត្រឡប់​ទៅកាន់​កូដ​មាន​កំហុស​ (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "មិនអាច​ផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់​មួយចំនួន​បានឡើយ​" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "ដំណើរការ​រង​ %s បានចេញ ដោយ​មិន​រំពឹង​ទុក​ " +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "ដំឡើង​កញ្ចប់​ទាំងនេះ ​ដោយគ្មានការពិនិត្យ​បញ្ជាក់ [y/N] ? " -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" +msgid "Failed to parse %s. Edit again? " +msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​ដំណើរការ​រង​ IPC" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "បរាជ័យ​ក្នុង​ការ​ប្រតិបត្តិ​កម្មវិធី​បង្ហាប់ " +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "អាន​, នៅតែ​មាន %lu ដើម្បី​អាន​ ប៉ុន្តែ​គ្មាន​អ្វី​នៅសល់" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "សរសេរ​, នៅតែមាន​ %lu ដើម្បី​សរសេរ​ ប៉ុន្តែ​មិន​អាច​" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "វាយ​" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "យក​ ៖" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់តំណ​ឯកសារ" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "បាន​ទៅ​ប្រមូល​ %sB ក្នុង​ %s (%sB/s)\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... កំហុស ​!" +msgid " [Working]" +msgstr " [កំពុង​ធ្វើការ​]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... ធ្វើរួច​" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"ផ្លាស់ប្តូរ​មេឌៀ ៖ សូម​បញ្ចូល​ថាស​ដែល​មាន​ស្លាក\n" +" '%s'\n" +"ក្នុង​ដ្រាយ​ '%s' ហើយ​ចុច​បញ្ចូល\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... ធ្វើរួច​" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "មិនអាច mmap ឯកសារទទេ​បានឡើយ" +msgid "Can not read mirror file '%s'" +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" +msgid "No entry found in mirror file '%s'" +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" + +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​បំពង់​ IPC សម្រាប់​ដំណើរ​ការ​រង​" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "បាន​បិទ​ការ​តភ្ជាប់​មុន​ពេល" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "ការ​កំណត់​លំនាំ​ដើម​មិន​ល្អ !" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "សង្កត់​ បញ្ចូល ​ដើម្បី​បន្ត ។" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "" -#: apt-pkg/contrib/mmap.cc:146 +#: dselect/install:102 #, fuzzy -msgid "Unable to close mmap" -msgstr "មិន​អាចបើក​ %s បានឡើយ" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "កំហុ​ស​មួយ​ចំនួន​បាន​កើត​ឡើង​ខណៈពេល​ពន្លា​កញ្ចប់ ។ ខ្ញុំ​នឹង​កំណត់រចនាសម្ប័ន្ធ" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "មិន​អាច​ហៅ​ " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" +msgid "will be configured. This may result in duplicate errors" +msgstr "កញ្ចប់​ដែល​បាន​ដំឡើង​ ។ នេះ​ប្រហែល​ជា​លទ្ធផល​កំហុស​ស្ទួន​" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "ឬ​ កំហុសដែលបង្ក​ដោយ​ការ​បាត់បង់​ភាពអាស្រ័យ​ ។ ​មិន​អី​ទេ​ គ្រាន់​តែ​ជា​កំហុស " -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "នៅខាងលើ​សារ​នេះ​គឺ​សំខាន់​ណាស់​ ។ សូម​ជួសជុល​ពួកវា​ ហើយ​រត់​ការដំឡើង​ម្តងទៀត​" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "ទម្លាក់​ថ្នាំង​ដែល​បាន​ហៅ​លើ​ថ្នាំងដែល​នៅតែតភ្ជាប់" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "មិនអាច​ថ្លែង ចំណុចម៉ោន %s បានឡើយ" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "បរាជ័យ​ក្នុងការ​ដាក់ទីតាំង​ធាតុ​ដែលរាយប៉ាយ !" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "បរាជ័យក្នុងការ​ថ្លែង ស៊ីឌីរ៉ូម" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "បរាជ័យ​ក្នុងការ​បម្រុងទុក​ការបង្វែរ" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "មិន​បាន​​ទទួល​ស្គាល់​ប្រភេទ​អក្សរ​សង្ខេប ៖ '%c'" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "កំហុស​ខាងក្នុង នៅក្នុង AddDiversion" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "កំពុង​បើ​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "កំពុង​ព្យាយាម​សរសេរ​ជាន់​ពីលើ​ការបង្វែរ %s -> %s និង​ %s/%s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ ប្លុក​ចាប់​ផ្តើម​​ដោយ​គ្មាន​ឈ្មោះ​ ។" +msgid "Double add of diversion %s -> %s" +msgstr "ការបន្ថែម​ស្ទួន នៃការបង្វែរ​ %s -> %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ស្លាក​ដែលបាន Malformed" +msgid "Duplicate conf file %s/%s" +msgstr "ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​ស្ទួន​ %s/%s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ តម្លៃ​ឥតបានការ​នៅ​ក្រៅ​" +msgid "The path %s is too long" +msgstr "ផ្លូវ​ %s វែង​ពេក" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់​អាចត្រូវបានធ្វើ​តែនៅលើ​កម្រិត​កំពូល​តែប៉ុណ្ណោះ" +msgid "Unpacking %s more than once" +msgstr "កំពុង​ពន្លា​ %s ច្រើន​ជាង​ម្តង​" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ មាន​ការរួមបញ្ចូល​ដែលដាក់​រួមគ្នា​យ៉ាងច្រើន" +msgid "The directory %s is diverted" +msgstr "ថត​ %s ត្រូវបាន​បង្វែរ" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ បានរួម​បញ្ចូល​ពី​ទីនេះ​" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "កញ្ចប់ ​កំពុង​ព្យាយាម​សរសេរ​ទៅកាន់​គោលដៅ​បង្វែរ​ %s/%s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "ផ្លូវ​បង្វែរ វែងពេក" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដី​បង្គាប់​ដែល​មិនបានគាំទ្រ '%s'" +msgid "Failed to stat %s" +msgstr "បាន​បរាជ័យ​ក្នុង​ការថ្លែង %s" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់​អាចត្រូវបានធ្វើ​តែនៅលើ​កម្រិត​កំពូល​តែប៉ុណ្ណោះ" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ សារឥតបានការ​បន្ថែម ដែលនៅខាងចុង​ឯកសារ" +msgid "The directory %s is being replaced by a non-directory" +msgstr "ថត​ %s ត្រូវ​បាន​ជំនួស​ដោយ​មិនមែន​ជា​ថត​" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "បរាជ័យ​ក្នុងការ​ដាក់ថ្នាំង​នៅក្នុង​ធុង​រាយប៉ាយ​របស់វា" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "ជម្រើស​បន្ទាត់​ពាក្យបញ្ជា '%c' [from %s] មិនស្គាល់ឡើយ ។" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "ផ្លូវ​វែង​ពេក" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "មិនយល់​ពី​ជម្រើស​បន្ទាត់​ពាក្យ​បញ្ជា %s ឡើយ" +msgid "Overwrite package match with no version for %s" +msgstr "សរសេរ​ជាន់​លើកញ្ចប់ផ្គួផ្គង​ដោយ​គ្មាន​កំណែ​សម្រាប់ %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "ជម្រើស​បន្ទាត់ពាក្យ​បញ្ជា​ %s មិនមែនជាប៊ូលីនទេ" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "ឯកសារ​ %s/%s សរសេរជាន់​ពីលើ​មួយ​ក្នុង​កញ្ចប់ %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "ជម្រើស​ %s ត្រូវការ​អាគុយម៉ង់មួយ ។" +msgid "Unable to stat %s" +msgstr "មិន​អាច​ថ្លែង %s បានឡើយ" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "ជម្រើស %s ៖ ការបញ្ជាក់​ធាតុ​កំណត់រចនាសម្ព័ន្ធត្រូវតែមាន =<val> មួយ ។" +msgid "Failed to write file %s" +msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "ជម្រើស​ %s ត្រូវ​ការ​អាគុយម៉ង់​ចំនួន​គត់​ មិន​មែន​ '%s'" +msgid "Failed to close file %s" +msgstr "បរាជ័យ​ក្នុងការ​បិទឯកសារ %s" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "ជម្រើស​ '%s' វែងពេក" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "នេះ​ជាមិនមែនជា​ប័ណ្ណសារ​ DEB ​ត្រឹមត្រូវទេ បាត់បង់សមាជិក​ '%s'​" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "មិនបានយល់អំពី​ការស្គាល់​ %s ឡើយ សូមព្យាយមយក​ ពិត​ ​​​ឫ មិន​ពិត ។" +msgid "Internal error, could not locate member %s" +msgstr "កំហុស​ខាងក្នុង ​មិន​អាច​កំណត់​ទីតាំង​សមាជិក​ %s បានឡើយ" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "ឯកសារត្រួតពិនិត្យ​ដែលមិនអាច​ញែកបាន" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "ហត្ថលេខា​ប័ណ្ណសា​រមិន​ត្រឹមត្រូវ​" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "កំហុស​ក្នុងការ​អានបឋមកថា​សមាជិក​ប័ណ្ណសារ" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "ប័ណ្ណសារ ខ្លីពេក" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "បរាជ័យ​ក្នុងការ​អាន​បឋមកថា​ប័ណ្ណសារ" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "បាន​បរាជ័យក្នុង​ការ​បង្កើត​បំពង់​" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "បាន​បរាជ័យក្នុង​ការ​ប្រតិបត្តិ gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "ប័ណ្ណសារ​បាន​ខូច​" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar ឆេកសាំ​បាន​បរាជ័យ ប័ណ្ណសារ​បាន​ខូច" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "មិន​ស្គាល់​ប្រភេទ​បឋមកថា​ TAR %u ដែលជា​សមាជិក​ %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3478,7 +3483,7 @@ msgstr "បាន​បរាជ័យ​ក្នុង​ការអាន​ msgid "Problem unlinking %s" msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់តំណ %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3531,6 +3536,10 @@ msgstr "" " -c=? អាន​ឯកសារ​កំណត់​រចនាសម្ព័ន្ធនេះ​\n" " -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "កំហុស​ខាងក្នុង ការធ្វើឲ្យប្រសើរ​ទាំងអស់បានធ្វើឲ្យ​ឧបករណ៍​ខូច" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s មិនមែន​ជា​កញ្ចប់​ DEB ត្រឹមត្រូវ​ទេ​ ។" diff --git a/po/ko.po b/po/ko.po index 5b6ee0c84..daad55f1c 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n" "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n" @@ -15,3154 +15,3158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "%s 패키지의 %s 버전의 의존성이 맞지 않습니다:\n" +msgid "Unable to read %s" +msgstr "%s을(를) 읽을 수 없습니다" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "전체 패키지 이름 : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "%s 디렉토리로 이동할 수 없습니다" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "전체 패키지 구조: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s의 정보를 읽을 수 없습니다." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " 일반 패키지: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " 순수 가상 패키지: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "dpkg 실행하는 중입니다" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " 단일 가상 패키지: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "'%s' 패키지 시스템을 지원하지 않습니다" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " 혼합 가상 패키지: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "올바른 패키지 시스템 타입을 알아낼 수 없습니다" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " 빠짐: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "레코드 %i개를 썼습니다.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "개별 버전 전체: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "레코드 %i개를 파일 %i개가 빠진 상태로 썼습니다.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "개별 설명 전체: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "레코드 %i개를 파일 %i개가 맞지 않은 상태로 썼습니다\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "전체 의존성: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상태로 썼습니다\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "전체 버전/파일 관계: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "다음의 인증 기록을 찾을 수 없습니다: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "전체 설명/파일 관계: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "다음의 해시가 다릅니다: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "전체 제공 매핑: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "설치 방법 드라이버 %s을(를) 찾을 수 없습니다." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "전체 패턴 문자열: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "전체 의존성 버전 용량: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "설치 방법 %s이(가) 올바르게 시작하지 않았습니다" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "전체 빈 용량: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"'%2$s' 드라이브에 '%1$s'(으)로 표기된 디스크를 넣고 Enter를 누르십시오." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "차지하는 전체 용량: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "패키지 목록이나 상태 파일을 파싱할 수 없거나 열 수 없습니다." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "패키지 파일 %s 파일이 동기화되지 않았습니다." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "apt-get update를 실행하면 이 문제를 바로잡을 수도 있습니다." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "패키지가 없습니다" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "소스 목록을 읽을 수 없습니다." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "최소 한 개의 검색어를 지정해야 합니다" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "패키지 캐시가 비어 있습니다" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "패키지 캐시 파일이 손상되었습니다" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "패키지 캐시 파일이 호환되지 않는 버전입니다" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "패키지 캐시 파일이 손상되었습니다" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "%s 패키지를 찾을 수 없습니다" +msgid "This APT does not support the versioning system '%s'" +msgstr "이 APT는 '%s' 버전 시스템을 지원하지 않습니다" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "패키지 파일:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "패키지 캐시가 다른 아키텍쳐용입니다." -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "캐시가 동기화되지 않았습니다. 패키지 파일을 상호 참조할 수 없습니다" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "의존" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "핀 패키지:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "미리의존" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(없음)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "제안" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " 설치: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "추천" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 후보: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "충돌" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(없음)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "대체" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " 패키지 핀: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "없앰" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " 버전 테이블:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "망가뜨림" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s(%s), 컴파일 시각 %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "향상" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"사용법: apt-cache [옵션] 명령\n" -" apt-cache [옵션] add 파일1 [파일2 ...]\n" -" apt-cache [옵션] showpkg 패키지1 [패키지2 ...]\n" -" apt-cache [옵션] showsrc 패키지1 [패키지2 ...]\n" -"\n" -"apt-cache는 APT의 바이너리 캐시 파일을 처리하고, 캐시 파일에\n" -"정보를 질의하는 저수준 도구입니다.\n" -"\n" -"명령:\n" -" add - 소스 캐시에 패키지 파일을 추가합니다\n" -" gencaches - 패키지 캐시 및 소스 캐시를 만듭니다\n" -" showpkg - 한 개의 패키지에 대한 일반적인 정보를 봅니다\n" -" showsrc - 소스 기록을 봅니다\n" -" stats - 기본적인 통계를 봅니다\n" -" dump - 전체 파일을 간략한 형태로 봅니다\n" -" dumpavail - 사용 가능한 파일을 표준출력에 표시합니다\n" -" unmet - 맞지 않는 의존성을 봅니다\n" -" search - 정규식 패턴에 맞는 패키지 목록을 찾습니다\n" -" show - 패키지에 대해 읽을 수 있는 기록을 봅니다\n" -" showauto - 자동으로 설치한 패키지 목록을 표시합니다\n" -" depends - 패키지에 대해 의존성 정보를 그대로 봅니다\n" -" rdepends - 패키지의 역 의존성 정보를 봅니다\n" -" pkgnames - 시스템에 들어 있는 패키지의 이름을 모두 봅니다\n" -" dotty - GraphViz용 패키지 그래프를 만듭니다\n" -" xvcg - xvcg용 패키지 그래프를 만듭니다\n" -" policy - 정책 설정을 봅니다\n" -"\n" -"옵션:\n" -" -h 이 도움말.\n" -" -p=? 패키지 캐시.\n" -" -s=? 소스 캐시.\n" -" -q 상태 표시를 하지 않습니다.\n" -" -i unmet 명령에서 중요한 의존성만 봅니다.\n" -" -c=? 지정한 설정 파일을 읽습니다.\n" -" -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" -"좀 더 자세한 정보는 apt-cache(8) 및 apt.conf(5) 매뉴얼 페이지를 보십시오.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "중요" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "이 디스크의 이름을 정하십시오 (예: 'Debian 5.0.3 Disk 1')" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "필수" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "드라이브에 디스크를 넣고 Enter를 누르십시오" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "표준" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "옵션" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "별도" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "현재 갖고 있는 다른 CD에도 이 과정을 반복하십시오." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "인수가 두 개가 아닙니다" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "정규식 컴파일 오류 - %s" -#: cmdline/apt-config.cc:89 -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 "" -"사용법: apt-config [옵션] 명령\n" -"\n" -"apt-config는 APT 설정 파일을 읽는 간단한 프로그램입니다\n" -"\n" -"명령:\n" -" shell - 쉘 모드\n" -" dump - 설정을 봅니다\n" -"\n" -"옵션:\n" -" -h 이 도움말.\n" -" -c=? 해당 설정 파일을 읽습니다\n" -" -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "캐시의 버전 시스템이 호환되지 않습니다" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s 처리 중에 오류가 발생했습니다 (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 패키지 이름 개수를 넘어갔습니다." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 버전 개수를 넘어갔습니다." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "소스 패키지로 '%s'을(를) '%s' 대신 선택합니다\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 설명 개수를 넘어갔습니다." -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "'%2$s' 패키지의 '%1$s' 버전은 없으므로 무시합니다." +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습니다." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "%s 패키지를 찾을 수 없습니다" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "파일 의존성을 처리하는 데, %s %s 패키지가 없습니다" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s 패키지 수동설치로 지정합니다.\n" +msgid "Couldn't stat source package list %s" +msgstr "소스 패키지 목록 %s의 정보를 읽을 수 없습니다" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "패키지 목록을 읽는 중입니다" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "파일에서 제공하는 것을 모으는 중입니다" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s 패키지는 수동설치로 지정합니다.\n" +msgid "Unable to write to %s" +msgstr "%s에 쓸 수 없습니다" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "소스 캐시를 저장하는데 입출력 오류가 발생했습니다" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "다운로드 디렉터리를 잠글 수 없습니다" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s의 소스 패키지를 찾을 수 없습니다" +msgid "rename failed, %s (%s -> %s)." +msgstr "이름 바꾸기가 실패했습니다. %s (%s -> %s)." -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "해시 합이 맞지 않습니다" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "크기가 맞지 않습니다" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "잘못된 작업 %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"알림: '%s' 패키징은 다음 '%s' 버전 컨트롤 시스템에서 관리합니다:\n" -"%s\n" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "다음 키 ID의 공개키가 없습니다:\n" + +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"패키지의 최근 (아마도 릴리스되지 않은) 업데이트를 받으려면\n" -"다음과 같이 하십시오:\n" -"bzr get %s\n" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"디지털 서명 확인에 오류가 발생했습니다. 저장고를 업데이트하지 않고\n" +"예전의 인덱스 파일을 사용합니다. GPG 오류: %s: %s\n" -#: cmdline/apt-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s에 충분한 공간이 없습니다" +msgid "GPG error: %s: %s" +msgstr "GPG 오류: %s: %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:891 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n" +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 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습" +"니다. (아키텍쳐가 빠졌기 때문입니다)" -#. 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:896 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Fetch source %s\n" -msgstr "%s 소스를 가져옵니다\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"패키지 인덱스 파일이 손상되었습니다. %s 패키지에 Filename: 필드가 없습니다." -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "일부 아카이브를 가져오는데 실패했습니다." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "벤더 블럭 %s의 핑거프린트가 없습니다" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "목록 디렉터리 %spartial이 빠졌습니다." -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n" +msgid "Archives directory %spartial is missing." +msgstr "아카이브 디렉터리 %spartial이 빠졌습니다." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "압축 풀기 명령 '%s' 실패.\n" +msgid "Unable to lock directory %s" +msgstr "%s 디렉터리를 잠글 수 없습니다" -#: cmdline/apt-get.cc:963 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "파일 받아오는 중: %2$li 중 %1$li (%3$s 남았음)" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "빌드 명령 '%s' 실패.\n" +msgid "Retrieving file %li of %li" +msgstr "파일 받아오는 중: %2$li 중 %1$li" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "하위 프로세스가 실패했습니다" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "%s 파일을 받는데 실패했습니다 %s\n" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"일부 인덱스 파일을 다운로드하는데 실패했습니다. 해당 파일을 무시하거나 과거" +"의 버전을 대신 사용합니다." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "sources.list에 '소스' URI를 써 넣어야 합니다" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "기본 설정 파일 %s에 잘못된 데이터가 있습니다. Package 헤더가 없습니다" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s 패키지에 빌드 의존성이 없습니다.\n" +msgid "Did not understand pin type %s" +msgstr "핀 타입 %s이(가) 무엇인지 이해할 수 없습니다" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "핀에 우선순위(혹은 0)를 지정하지 않았습니다" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" -"다" +"'%s'에 대해 즉시 설정을 할 수 없습니다. 자세한 설명은 man 5 apt.conf 페이지에" +"서 APT::Immediate-Configure 항목을 보십시오. (%d)" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "'%s' 파일을 열 수 없습니다" + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"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 "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" -"다" +"이번에 설치할 때 충돌/선의존성이 루프가 걸렸기 때문에 ê¼­ 필요한 %s 패키지를 " +"잠깐 제거해야 합니다. 이 패키지를 제거하는 ê±´ 좋지 않지만, 정말 지우려면 " +"APT::Force-LoopBreak 옵션을 켜십시오." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: 설치한 %3$s 패키지가 너" -"무 최근 버전입니다" +msgid "Line %u too long in source list %s." +msgstr "소스 리스트 %2$s의 %1$u번 줄이 너무 깁니다." -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지의 사용 가능한 버" -"전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM을 마운트 해제하는 중입니다...\n" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" -"다" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM 마운트 위치 %s 사용\n" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "디스크를 기다리는 중입니다...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM 마운트하는 중입니다...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "알아보는 중입니다... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: %3$s" +msgid "Stored label: %s\n" +msgstr "저장된 레이블: %s\n" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "디스크에서 색인 파일을 찾는 중입니다...\n" + +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s의 빌드 의존성을 만족시키지 못했습니다." +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "패키지 색인 %zu개, 소스 색인 %zu개, 번역 색인 %zu개, 서명 %zu개 발견\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "빌드 의존성을 처리하는데 실패했습니다" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"패키지 파일이 하나도 없습니다. 아마도 데비안 디스크가 아니거나 아키텍처가 잘" +"못된 것 같습니다?" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s(%s)에 연결하는 중입니다" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "레이블 발견: %s \n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "지원하는 모듈:" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "올바른 이름이 아닙니다. 다시 시도하십시오.\n" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:817 +#, c-format 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 "" -"사용법: apt-get [옵션] 명령어\n" -" apt-get [옵션] install|remove 패키지1 [패키지2 ...]\n" -" apt-get [옵션] source 패키지1 [패키지2 ...]\n" -"\n" -"apt-get은 패키지를 내려받고 설치하는 간단한 명령행 인터페이스입니다.\n" -"가장 자주 사용하는 명령은 update와 install입니다.\n" -"\n" -"명령어:\n" -" update - 패키지 목록을 새로 가져옵니다\n" -" upgrade - 업그레이드를 합니다\n" -" install - 새 패키지를 설치합니다 (패키지는 libc6 식으로. libc6.deb 아님)\n" -" remove - 패키지를 지웁니다\n" -" autoremove - 사용하지 않는 패키지를 자동으로 전부 지웁니다\n" -" purge - 패키지를 완전히 지웁니다\n" -" source - 소스 아카이브를 다운로드합니다\n" -" build-dep - 소스 패키지의 빌드 의존성을 설정합니다\n" -" dist-upgrade - 배포판 업그레이드, apt-get(8) 참고\n" -" dselect-upgrade - dselect에서 선택한 걸 따릅니다\n" -" clean - 내려받은 아카이브 파일들을 지웁니다\n" -" autoclean - 과거에 내려받은 아카이브 파일들을 지웁니다\n" -" check - 의존성이 망가지지 않았는지 확인합니다\n" -" markauto - 패키지를 자동 설치로 표시합니다\n" -" unmarkauto - 패키지를 수동 설치로 표시합니다\n" -"\n" -"옵션:\n" -" -h 이 도움말.\n" -" -q 기록 가능한 출력 - 진행 상황 표시를 하지 않습니다\n" -" -qq 오류만 출력 합니다\n" -" -d 내려받기만 합니다 - 아카이브를 설치하거나 풀거나 하지 않습니다\n" -" -s 실제 작업을 하지 않고, 순서대로 시뮬레이션만 합니다\n" -" -y 모든 질문에 대해 \"예\"라고 가정하고 물어보지 않습니다\n" -" -f 패키지 내용 검사가 실패해도 계속 진행해봅니다\n" -" -m 아카이브를 찾을 수 없어도 계속 진행해봅니다\n" -" -u 업그레이드하는 패키지의 목록도 봅니다\n" -" -b 소스 패키지를 받은 다음에 빌드합니다\n" -" -V 버전 번호를 자세히 봅니다\n" -" -c=? 이 설정 파일을 읽습니다\n" -" -o=? 임의의 옵션을 지정합니다. 예를 들어 -o dir::cache=/tmp\n" -"더 자세한 정보와 옵션을 보려면 apt-get(8), sources.list(5)나\n" -"apt.conf(5) 매뉴얼 페이지를 보십시오.\n" -" 이 APT는 Super Cow Powers로 무장했습니다.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" - -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"This disc is called: \n" +"'%s'\n" msgstr "" +"이 디스크는 다음과 같습니다: \n" +"'%s'\n" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "하지만 설치하지 않았습니다" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s 패키지 수동설치로 지정합니다.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s 패키지는 수동설치로 지정합니다.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "패키지 목록을 복사하는 중입니다..." -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s 패키지는 이미 최신 버전입니다.\n" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "새 소스 리스트를 쓰는 중입니다\n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s 패키지는 이미 최신 버전입니다.\n" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s 패키지 수동설치로 지정합니다.\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s 파일을 여는데 실패했습니다" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" - -#: cmdline/apt-mark.cc:392 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"오류, pkgProblemResolver::Resolve가 망가졌습니다. 고정 패키지때문에 발생할 수" +"도 있습니다." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "CD-ROM 데이터베이스 %s을(를) 읽을 수 없습니다" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다." -#: 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 "" -"이 CD를 APT에서 인식하려면 apt-cdrom을 사용하십시오. apt-get update로는 새 " -"CD를 추가할 수 없습니다." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "의존성 트리를 만드는 중입니다" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "잘못된 CD" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "후보 버전" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s 안의 CD-ROM을 마운트 해제할 수 없습니다. 사용 중일 것입니다." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "의존성 만들기" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "디스크가 없습니다." +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "상태 정보를 읽는 중입니다" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "파일이 없습니다" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "상태파일 %s 여는데 실패했습니다" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "파일 정보를 읽는데 실패했습니다" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "임시 상태파일 %s 쓰는데 실패했습니다" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "파일 변경 시각을 설정하는데 실패했습니다" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (1)" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI가 틀렸습니다. 로컬 URI는 //로 시작해야 합니다." +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (2)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "로그인하는 중입니다" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "%2$s 패키지의 '%1$s' 릴리즈를 찾을 수 없습니다" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "상대방의 이름을 알 수 없습니다" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "%2$s 패키지의 '%1$s' 버전을 찾을 수 없습니다" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "로컬 이름을 알 수 없습니다" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "%s 패키지를 찾을 수 없습니다" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "서버에서 다음과 같이 연결을 거부했습니다: %s" +msgid "Couldn't find task '%s'" +msgstr "'%s' 작업을 찾을 수 없습니다" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 실패, 서버에서는: %s" +msgid "Couldn't find any package by regex '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 실패, 서버에서는: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "'%s' 패키지는 가상 패키지이므로 버전을 선택할 수 없습니다" -#: methods/ftp.cc:252 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"프록시 서버를 지정했지만 로그인 스크립트가 없습니다. Acquire::ftp::" -"ProxyLogin 값이 비어 있습니다." +"'%s' 패키지에서 설치한 버전이나 후보 버전을 선택할 수 없습니다. 둘 다 아닙니" +"다." -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "로그인 스크립트 명령 '%s' 실패, 서버에서는: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "'%s' 패키지에서 최신 버전을 선택할 수 없습니다. 가상 패키지입니다." -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 실패, 서버에서는: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "연결 시간 초과" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "'%s' 패키지에서 후보 버전을 선택할 수 없습니다. 후보가 없습니다." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "서버에서 연결을 닫았습니다" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "'%s' 패키지에서 설치한 버전을 선택할 수 없습니다. 설치하지 않았습니다." -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "읽기 오류" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "응답이 버퍼 크기를 넘어갔습니다." +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Release 파일 %s에 섹션이 없습니다" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "프로토콜이 틀렸습니다" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Release 파일 %s에 Hash 항목이 없습니다" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "쓰기 오류" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Release 파일 %s에 'Valid-Until' 항목이 잘못되었습니다" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "소켓을 만들 수 없습니다" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Release 파일 %s에 'Date' 항목이 잘못되었습니다" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "데이터 소켓을 연결할 수 없습니다. 연결 시간이 초과되었습니다" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "실패" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 파싱 불가)" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "수동(passive) 소켓을 연결할 수 없습니다." +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 너무 짧음)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo에서 소켓에 listen할 수 없습니다" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 대입이 아님)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "소켓을 bind할 수 없습니다" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 키가 없음)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "소켓에 listen할 수 없습니다" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] %4$s 키에 값이 없음)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "소켓의 이름을 알아낼 수 없습니다" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT 명령을 보낼 수 없습니다" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "주소 %u의 종류(AF_*)를 알 수 없습니다" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT 실패, 서버에서는: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (절대 dist)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "데이터 소켓 연결 시간 초과" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist 파싱)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "연결을 받을 수 없습니다" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s 파일을 여는 중입니다" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "파일 해싱에 문제가 있습니다" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "파일을 가져올 수 없습니다. 서버 왈, '%s'" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "데이터 소켓에 제한 시간이 초과했습니다" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "데이터 전송 실패, 서버에서는: %s" +msgid "Installing %s" +msgstr "%s 설치하는 중입니다" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "질의" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s 설정 중입니다" + +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s 패키지를 지우는 중입니다" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "다음을 실행할 수 없습니다: " +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s 패키지를 완전히 지우는 중입니다" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "%s(%s)에 연결하는 중입니다" +msgid "Noting disappearance of %s" +msgstr "%s 사라짐 발견했습니다" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Running post-installation trigger %s" +msgstr "설치 후 트리거 %s 실행하는 중입니다" -#: methods/connect.cc:94 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s에 대한 소켓을 만들 수 없습니다 (f=%u t=%u p=%u)" +msgid "Directory '%s' missing" +msgstr "디렉터리 '%s' 없습니다." -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s에 연결을 초기화할 수 없습니다 (%s)." +msgid "Could not open file '%s'" +msgstr "'%s' 파일을 열 수 없습니다" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s에 연결할 수 없습니다 (%s). 연결 제한 시간이 초과했습니다" +msgid "Preparing %s" +msgstr "%s 준비 중입니다" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "%s:%s에 연결할 수 없습니다 (%s)." +msgid "Unpacking %s" +msgstr "%s 푸는 중입니다" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Connecting to %s" -msgstr "%s에 연결하는 중입니다" +msgid "Preparing to configure %s" +msgstr "%s 패키지를 설정할 준비하는 중입니다" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not resolve '%s'" -msgstr "'%s'의 주소를 알아낼 수 없습니다" +msgid "Installed %s" +msgstr "%s 설치" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s'의 주소를 알아내는데 임시로 실패했습니다" +msgid "Preparing for removal of %s" +msgstr "%s 패키지를 지울 준비하는 중입니다" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s 지움" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" +msgid "Preparing to completely remove %s" +msgstr "%s 패키지를 완전히 지울 준비를 하는 중입니다" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s:%s에 연결할 수 없습니다:" +msgid "Completely removed %s" +msgstr "%s 패키지를 완전히 지웠습니다" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "내부 오류: 서명은 올바르지만 키 핑거프린트를 확인할 수 없습니다?!" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "최소한 하나 이상의 서명이 잘못되었습니다." +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "%s에 쓸 수 없습니다" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -"서명을 확인하는 'gpgv' 프로그램을 실행할 수 없습니다. (gpgv를 설치했습니까?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv 실행 도중 알 수 없는 오류 발생" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "다음 서명이 올바르지 않습니다:\n" - -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다:\n" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "해당 파일에 쓰는데 오류가 발생했습니다" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "서버에서 읽고 연결을 닫는데 오류가 발생했습니다" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "서버에서 읽는데 오류가 발생했습니다" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "파일에 쓰는데 오류가 발생했습니다" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select가 실패했습니다" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "연결 시간이 초과했습니다" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "출력 파일에 쓰는데 오류가 발생했습니다" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "헤더를 기다리는 중입니다" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "헤더 줄이 잘못되었습니다" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP 서버에서 잘못된 응답 헤더를 보냈습니다" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP 서버에서 잘못된 Content-Length 헤더를 보냈습니다" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP 서버에서 잘못된 Content-Range 헤더를 보냈습니다" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "보고서를 작성하지 않습니다. 이미 MaxReports 값에 도달했습니다." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP 서버에 범위 지원 기능이 잘못되어 있습니다" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "의존성 문제 - 설정하지 않은 상태로 남겨둡니다" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "데이터 형식을 알 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 예전의 실패 때문에 생긴 부수" +"적인 오류입니다." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "헤더 데이터가 잘못되었습니다" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "연결이 실패했습니다" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "보고서를 작성하지 않습니다. 오류 메시지에 따르면 메모리가 부족합니다." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "내부 오류" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "업그레이드를 계산하는 중입니다... " +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 dpkg 입출력 오류입니다." -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "내부 오류, AllUpgrade 프로그램이 무언가를 망가뜨렸습니다" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"관리 디렉터리를 (%s) 잠글 수 없습니다. 다른 프로세스가 사용하고 있지 않습니" +"까?" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "완료" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "관리 디렉터리를 (%s) 잠글 수 없습니다. 루트 사용자가 맞습니까?" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" +"dpkg가 중단되었습니다. 수동으로 '%s' 명령을 실행해 문제점을 바로잡으십시오." -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "잠기지 않음" -#: apt-private/private-list.cc:164 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "의존성을 바로잡는 중입니다..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 실패." +msgid "%lid %lih %limin %lis" +msgstr "%li일 %li시간 %li분 %li초" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "의존성을 바로잡을 수 없습니다" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li시간 %li분 %li초" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "업그레이드 집합을 최소화할 수 없습니다" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li분 %li초" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 완료" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li초" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "" -"이 상황을 바로잡으려면 'apt-get -f install'을 실행해야 할 수도 있습니다." +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "선택한 %s이(가) 없습니다" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "의존성이 맞지 않습니다. -f 옵션을 사용해 보십시오." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "읽기 전용 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "잠금 파일 %s 파일을 열 수 없습니다" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [설치함]" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "NFS로 마운트된 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [설치함]" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "%s 잠금 파일을 얻을 수 없습니다" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [설치함]" - -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [설치함]" - -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "[upgradable from: %s]" +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "다음 패키지의 의존성이 맞지 않습니다:" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "but %s is installed" -msgstr "하지만 %s 패키지를 설치했습니다" +msgid "Sub-process %s received a segmentation fault." +msgstr "하위 프로세스 %s 프로세스가 세그멘테이션 오류를 받았습니다." -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "but %s is to be installed" -msgstr "하지만 %s 패키지를 설치할 것입니다" +msgid "Sub-process %s received signal %u." +msgstr "하위 프로세스 %s 프로세스가 %u번 시그널을 받았습니다." -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "하지만 설치할 수 없습니다" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "하지만 가상 패키지입니다" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "하위 프로세스 %s 프로세스가 예상치 못하게 끝났습니다" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "하지만 설치하지 않았습니다" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "쓰기 오류" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "하지만 %s 패키지를 설치하지 않을 것입니다" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "%s gzip 파일을 닫는데 문제가 있습니다" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " 혹은" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "%s 파일을 열 수 없습니다" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "다음 새 패키지를 설치할 것입니다:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "%d 파일 디스크립터를 열 수 없습니다" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "다음 패키지를 지울 것입니다:" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "하위 프로세스 IPC를 만드는데 실패했습니다" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "다음 패키지를 과거 버전으로 유지합니다:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "다음 압축 프로그램을 실행하는데 실패했습니다: " -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "다음 패키지를 업그레이드할 것입니다:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "읽기 오류" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "다음 패키지를 다운그레이드할 것입니다:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "%lu만큼 더 읽어야 하지만 더 이상 읽을 데이터가 없습니다" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "고정되었던 다음 패키지를 바꿀 것입니다:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "%lu만큼 더 써야 하지만 더 이상 쓸 수 없습니다" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "%s (due to %s) " -msgstr "%s (%s때문에) " - -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"경고: ê¼­ 필요한 다음 패키지를 지우게 됩니다.\n" -"무슨 일을 하고 있는 지 정확히 알지 못한다면 지우지 마십시오!" +msgid "Problem closing the file %s" +msgstr "%s 파일을 닫는데 문제가 있습니다" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu개 업그레이드, %lu개 새로 설치, " +msgid "Problem renaming the file %s to %s" +msgstr "%s 파일을 %s(으)로 이름을 바꾸는데 문제가 있습니다" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu개 다시 설치, " +msgid "Problem unlinking the file %s" +msgstr "%s 파일을 삭제하는데 문제가 있습니다" -#: apt-private/private-output.cc:700 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu개 업그레이드, " +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "파일을 동기화하는데 문제가 있습니다" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu개 제거 및 %lu개 업그레이드 안 함.\n" +msgid "%c%s... Error!" +msgstr "%c%s... 오류!" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n" +msgid "%c%s... Done" +msgstr "%c%s... 완료" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[Y/n]" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[y/N]" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 완료" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "빈 파일에 메모리 매핑할 수 없습니다" + +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%i 파일 디스크립터를 복사할 수 없습니다" + +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "%lu바이트를 메모리 매핑할 수 없습니다" + +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap을 닫을 수 없습니다" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap을 동기화할 수 없습니다" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Regex compilation error - %s" -msgstr "정규식 컴파일 오류 - %s" +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu바이트를 메모리 매핑할 수 없습니다" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "update 명령은 인수를 받지 않습니다" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "파일을 자르는데 실패했습니다" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"동적 mmap이 한계를 벗어났습니다. APT::Cache-Start의 크기를 높이십시오. 현재 " +"값: %lu. (man 5 apt.conf)" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "mmap 크기를 늘릴 수 없습니다. 이미 %lu 바이트 한계에 도달했습니다." -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"mmap 크기를 늘릴 수 없습니다. 자동으로 늘리는 기능을 사용자가 금지했습니다." -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "내부 오류. 망가진 패키지에서 InstallPackages를 호출했습니다!" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "마운트 위치 %s의 정보를 읽을 수 없습니다" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "패키지를 제거해야 하지만 제거가 금지되어 있습니다." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "CD-ROM의 정보를 읽을 수 없습니다" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "이 타입 줄임말을 알 수 없습니다: '%c'" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"이상하게도 크기가 서로 다릅니다. apt@packages.debian.org로 이메일을 보내주십" -"시오." +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%s바이트/%s바이트 아카이브를 받아야 합니다.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "문법 오류 %s:%u: 블럭이 이름으로 시작하지 않습니다." -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%s바이트 아카이브를 받아야 합니다.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "문법 오류 %s:%u: 태그의 형식이 잘못되었습니다" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "이 작업 후 %s바이트의 디스크 공간을 더 사용하게 됩니다.\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "문법 오류 %s:%u: 값 뒤에 쓰레기 데이터가 더 있습니다" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "이 작업 후 %s바이트의 디스크 공간이 비워집니다.\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계에서만 쓸 수 있습니다" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s 안에 충분한 여유 공간이 없습니다." +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "문법 오류 %s:%u: include가 너무 많이 겹쳐 있습니다" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "문제가 발생했고 -y 옵션이 --force-yes 옵션 없이 사용되었습니다" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "문법 오류 %s:%u: 여기서 include됩니다" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 " -"아닙니다." +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "문법 오류 %s:%u: 지원하지 않는 지시어 '%s'" -# 입력을 받아야 한다. 한글 입력을 못 할 수 있으므로 원문 그대로 사용. -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "문법 오류 %s:%u: clear 지시어는 인수로 option 트리를 지정해야 합니다" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"시스템에 무언가 해가 되는 작업을 하려고 합니다.\n" -"계속하시려면 다음 문구를 입력하십시오: '%s'\n" -" ?] " +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "문법 오류 %s:%u: 파일의 끝에 쓰레기 데이터가 더 있습니다" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "중단." +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "%s에 키 모음을 설치하지 않았습니다." -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "계속 하시겠습니까?" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "명령행 옵션 '%c' 옵션을 [%s에서] 알 수 없습니다." -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "일부 파일을 받는데 실패했습니다" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "명령행 옵션 '%s' 옵션을 알 수 없습니다" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-" -"missing 옵션을 줘서 실행해야 할 것입니다." +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "명령행 옵션 '%s' 옵션은 불리언이 아닙니다" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "%s 옵션에는 인수가 필요합니다." -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "빠진 패키지를 바로잡을 수 없습니다." +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "%s 옵션: 설정 항목 지정은 =<값> 형태여야 합니다." -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "설치를 중단합니다." +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s 옵션에는 정수 인수가 필요합니다. '%s'이(가) 아닙니다" -#: apt-private/private-install.cc:365 -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] "" -"다음 패키지는 패키지의 파일을 모두 다른 패키지가\n" -"덮어썼기 때문에 사라졌습니다:" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "'%s' 옵션이 너무 깁니다" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "주의: dpkg에서 자동으로 의도적으로 수행했습니다." +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "%s 센스를 이해할 수 없습니다. ì°¸ 아니면 거짓으로 해 보십시오." -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "잘못된 작업 %s" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"AutoRemover가 뭔가를 망가뜨린 것으로 보입니다. 이 문제는 실제 일어나서는\n" -"안 됩니다. apt에 대해 버그 보고를 하십시오." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s 패키지의 %s 버전의 의존성이 맞지 않습니다:\n" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "이 상황을 해결하는데 다음 정보가 도움이 될 수도 있습니다:" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "전체 패키지 이름 : " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "전체 패키지 구조: " -#: apt-private/private-install.cc:512 -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] "다음 패키지가 자동으로 설치되었지만 더 이상 필요하지 않습니다:" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " 일반 패키지: " + +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " 순수 가상 패키지: " -#: apt-private/private-install.cc:516 -#, 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-cache.cc:321 +msgid " Single virtual packages: " +msgstr " 단일 가상 패키지: " -#: apt-private/private-install.cc:518 -#, 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-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " 혼합 가상 패키지: " -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "다음을 바로잡으려면 'apt-get -f install'을 실행해 보십시오:" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " 빠짐: " -# FIXME: specify a solution? 무슨 솔루션? -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"의존성이 맞지 않습니다. 패키지 없이 'apt-get -f install'을 시도해 보십시오 " -"(아니면 해결 방법을 지정하십시오)." +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "개별 버전 전체: " -#: apt-private/private-install.cc:628 -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 "" -"몇몇 패키지를 설치할 수 없습니다. 요청한 상황이 불가능할 수도 있고,\n" -"불안정 배포판을 사용해서 일부 필요한 패키지를 아직 만들지 않았거나,\n" -"아직 Incoming에서 나오지 않은 경우일 수도 있습니다." +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "개별 설명 전체: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "망가진 패키지" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "전체 의존성: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "다음 패키지를 더 설치할 것입니다:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "전체 버전/파일 관계: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "제안하는 패키지:" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "전체 설명/파일 관계: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "추천하는 패키지:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "전체 제공 매핑: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"%s 패키지를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "전체 패턴 문자열: " -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "%s 패키지를 건너 뜁니다. 설치되지 않았고 업그레이드만 요청합니다.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "전체 의존성 버전 용량: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s 패키지를 다시 설치하는 ê±´ 불가능합니다. 다운로드할 수 없습니다.\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "전체 빈 용량: " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s 패키지는 이미 최신 버전입니다.\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "차지하는 전체 용량: " -#: apt-private/private-install.cc:884 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n" - -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n" +msgid "Package file %s is out of sync." +msgstr "패키지 파일 %s 파일이 동기화되지 않았습니다." -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "패키지가 없습니다" -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "최소 한 개의 검색어를 지정해야 합니다" -#: apt-private/private-main.cc:32 -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!" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"알림: 시험 동작입니다!\n" -" 실행하려면 apt-get을 실행할 때 루트 권한이 필요합니다.\n" -" 또 잠금 기능을 사용하지 않는 상태이므로, 현재 상황에 의존하지\n" -" 않도록 하십시오!" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "경고: 다음 패키지를 인증할 수 없습니다!" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "패키지 파일:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "인증 경고를 무시합니다.\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "캐시가 동기화되지 않았습니다. 패키지 파일을 상호 참조할 수 없습니다" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "인증할 수 없는 패키지가 있습니다" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "핀 패키지:" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "확인하지 않고 패키지를 설치하시겠습니까?" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(없음)" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s 파일을 받는데 실패했습니다 %s\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " 설치: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " 후보: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(없음)" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " 패키지 핀: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "기존 " +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " 버전 테이블:" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "받기:" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s(%s), 컴파일 시각 %s %s\n" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "무시" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"사용법: apt-cache [옵션] 명령\n" +" apt-cache [옵션] add 파일1 [파일2 ...]\n" +" apt-cache [옵션] showpkg 패키지1 [패키지2 ...]\n" +" apt-cache [옵션] showsrc 패키지1 [패키지2 ...]\n" +"\n" +"apt-cache는 APT의 바이너리 캐시 파일을 처리하고, 캐시 파일에\n" +"정보를 질의하는 저수준 도구입니다.\n" +"\n" +"명령:\n" +" add - 소스 캐시에 패키지 파일을 추가합니다\n" +" gencaches - 패키지 캐시 및 소스 캐시를 만듭니다\n" +" showpkg - 한 개의 패키지에 대한 일반적인 정보를 봅니다\n" +" showsrc - 소스 기록을 봅니다\n" +" stats - 기본적인 통계를 봅니다\n" +" dump - 전체 파일을 간략한 형태로 봅니다\n" +" dumpavail - 사용 가능한 파일을 표준출력에 표시합니다\n" +" unmet - 맞지 않는 의존성을 봅니다\n" +" search - 정규식 패턴에 맞는 패키지 목록을 찾습니다\n" +" show - 패키지에 대해 읽을 수 있는 기록을 봅니다\n" +" showauto - 자동으로 설치한 패키지 목록을 표시합니다\n" +" depends - 패키지에 대해 의존성 정보를 그대로 봅니다\n" +" rdepends - 패키지의 역 의존성 정보를 봅니다\n" +" pkgnames - 시스템에 들어 있는 패키지의 이름을 모두 봅니다\n" +" dotty - GraphViz용 패키지 그래프를 만듭니다\n" +" xvcg - xvcg용 패키지 그래프를 만듭니다\n" +" policy - 정책 설정을 봅니다\n" +"\n" +"옵션:\n" +" -h 이 도움말.\n" +" -p=? 패키지 캐시.\n" +" -s=? 소스 캐시.\n" +" -q 상태 표시를 하지 않습니다.\n" +" -i unmet 명령에서 중요한 의존성만 봅니다.\n" +" -c=? 지정한 설정 파일을 읽습니다.\n" +" -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" +"좀 더 자세한 정보는 apt-cache(8) 및 apt.conf(5) 매뉴얼 페이지를 보십시오.\n" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "오류 " +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "이 디스크의 이름을 정하십시오 (예: 'Debian 5.0.3 Disk 1')" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "내려받기 %s바이트, 소요시간 %s (%s바이트/초)\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "드라이브에 디스크를 넣고 Enter를 누르십시오" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid " [Working]" -msgstr " [작업중]" +msgid "Failed to mount '%s' to '%s'" +msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-cdrom.cc:178 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"미디어 바꾸기: '%2$s' 드라이브에 다음 레이블이 달린\n" -"디스크를 넣고 enter를 누르십시오\n" -" '%1$s'\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "%s을(를) 읽을 수 없습니다" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "현재 갖고 있는 다른 CD에도 이 과정을 반복하십시오." -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "%s 디렉토리로 이동할 수 없습니다" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "인수가 두 개가 아닙니다" -#. 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' 미러 파일이 없습니다 " +#: cmdline/apt-config.cc:89 +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 "" +"사용법: apt-config [옵션] 명령\n" +"\n" +"apt-config는 APT 설정 파일을 읽는 간단한 프로그램입니다\n" +"\n" +"명령:\n" +" shell - 쉘 모드\n" +" dump - 설정을 봅니다\n" +"\n" +"옵션:\n" +" -h 이 도움말.\n" +" -c=? 해당 설정 파일을 읽습니다\n" +" -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "'%s' 미러 파일이 없습니다 " +msgid "Can not find a package for architecture '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "'%s' 미러 파일이 없습니다 " - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[미러 사이트: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "하위 프로세스에 대한 IPC 파이프를 만드는데 실패했습니다" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "연결이 너무 빨리 끊어졌습니다" +msgid "Can not find a package '%s' with version '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "기본 설정이 잘못되었습니다!" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "계속 하시려면 enter를 누르십시오." +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "소스 패키지로 '%s'을(를) '%s' 대신 선택합니다\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "이전에 다운로드 받았던 .deb 파일을 지우시겠습니까?" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "'%2$s' 패키지의 '%1$s' 버전은 없으므로 무시합니다." -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "압축을 푸는데 몇몇 오류가 발생했습니다. 설치된 패키지를" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "%s 패키지를 찾을 수 없습니다" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "설정합니다. 오류때문에 의존성을 만족하지 못해 설정하는 과정에서" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s 패키지 수동설치로 지정합니다.\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"오류가 중복되어 나타날 수 있습니다. 하지만 상관없고, 이 메세지 위에 나온" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s 패키지는 수동설치로 지정합니다.\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "오류만 중요합니다. 이 오류를 고친 다음에 설치(I)를 다시 시도하십시오" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "이용 가능 패키지 정보를 합칩니다" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode가 아직 연결되어 있는 노드에 대해 호출되었습니다" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "해시 항목을 찾는데 실패했습니다" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "diversion을 할당하는데 실패했습니다" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion에서 내부 오류" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "다운로드 디렉터리를 잠글 수 없습니다" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "전환된 파일을 덮어 쓰려고 합니다 (%s -> %s 및 %s/%s)" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "전환된 파일을 두 번 추가합니다 (%s -> %s)" +msgid "Unable to find a source package for %s" +msgstr "%s의 소스 패키지를 찾을 수 없습니다" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "%s/%s 설정 파일이 중복되었습니다" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"알림: '%s' 패키징은 다음 '%s' 버전 컨트롤 시스템에서 관리합니다:\n" +"%s\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "경로 %s이(가) 너무 깁니다" +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"패키지의 최근 (아마도 릴리스되지 않은) 업데이트를 받으려면\n" +"다음과 같이 하십시오:\n" +"bzr get %s\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s을(를) 두 번 이상 풀었습니다" +msgid "Skipping already downloaded file '%s'\n" +msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "The directory %s is diverted" -msgstr "%s 디렉터리가 전환되었습니다" +msgid "Couldn't determine free space in %s" +msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "이 패키지에서 전환된 대상에 쓰려고 합니다 (%s/%s)" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "전환하는 경로가 너무 깁니다" +msgid "You don't have enough free space in %s" +msgstr "%s에 충분한 공간이 없습니다" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#. 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:891 #, c-format -msgid "Failed to stat %s" -msgstr "%s의 정보를 읽는데 실패했습니다" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. 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:896 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" +msgid "Need to get %sB of source archives.\n" +msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "%s 디렉터리를 디렉터리가 아닌 파일로 덮어쓰려고 합니다" +msgid "Fetch source %s\n" +msgstr "%s 소스를 가져옵니다\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "해시 버킷에서 노드를 찾는데 실패했습니다" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "일부 아카이브를 가져오는데 실패했습니다." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "경로가 너무 깁니다" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "덮어 쓰는 패키지가 %s 패키지의 어떤 버전과도 맞지 않습니다" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:962 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "%s/%s 파일은 %s 패키지에 있는 파일을 덮어 씁니다" +msgid "Unpack command '%s' failed.\n" +msgstr "압축 풀기 명령 '%s' 실패.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to stat %s" -msgstr "%s의 정보를 읽을 수 없습니다" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Failed to write file %s" -msgstr "%s 파일을 쓰는데 실패했습니다" +msgid "Build command '%s' failed.\n" +msgstr "빌드 명령 '%s' 실패.\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "%s 파일을 닫는데 실패했습니다" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "하위 프로세스가 실패했습니다" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다" + +#: cmdline/apt-get.cc:1054 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "올바른 DEB 아카이브가 아닙니다. '%s' 멤버가 없습니다" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "내부 오류, %s 멤버를 찾을 수 없습니다" +msgid "Unable to get build-dependency information for %s" +msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "control 파일을 파싱할 수 없습니다" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s 패키지에 빌드 의존성이 없습니다.\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "아카이브 서명이 틀렸습니다" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" +"다" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "아카이브 멤버 헤더를 읽는데 오류가 발생했습니다" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" +"다" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Invalid archive member header %s" -msgstr "아카이브 멤버 헤더 %s이(가) 잘못되었습니다" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: 설치한 %3$s 패키지가 너" +"무 최근 버전입니다" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "아카이브 멤버 헤더가 잘못되었습니다" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지의 사용 가능한 버" +"전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "아카이브 길이가 너무 짧습니다" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" +"다" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "아카이브 헤더를 읽는데 실패했습니다" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: %3$s" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "파이프 만들기가 실패했습니다" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s의 빌드 의존성을 만족시키지 못했습니다." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip 실행이 실패했습니다" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "빌드 의존성을 처리하는데 실패했습니다" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "아카이브가 손상되었습니다" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "%s(%s)에 연결하는 중입니다" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "tar 체크섬 실패, 아카이브가 손상되었습니다" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "지원하는 모듈:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "알 수 없는 TAR 헤더 타입 %u, 멤버 %s" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"사용법: apt-get [옵션] 명령어\n" +" apt-get [옵션] install|remove 패키지1 [패키지2 ...]\n" +" apt-get [옵션] source 패키지1 [패키지2 ...]\n" +"\n" +"apt-get은 패키지를 내려받고 설치하는 간단한 명령행 인터페이스입니다.\n" +"가장 자주 사용하는 명령은 update와 install입니다.\n" +"\n" +"명령어:\n" +" update - 패키지 목록을 새로 가져옵니다\n" +" upgrade - 업그레이드를 합니다\n" +" install - 새 패키지를 설치합니다 (패키지는 libc6 식으로. libc6.deb 아님)\n" +" remove - 패키지를 지웁니다\n" +" autoremove - 사용하지 않는 패키지를 자동으로 전부 지웁니다\n" +" purge - 패키지를 완전히 지웁니다\n" +" source - 소스 아카이브를 다운로드합니다\n" +" build-dep - 소스 패키지의 빌드 의존성을 설정합니다\n" +" dist-upgrade - 배포판 업그레이드, apt-get(8) 참고\n" +" dselect-upgrade - dselect에서 선택한 걸 따릅니다\n" +" clean - 내려받은 아카이브 파일들을 지웁니다\n" +" autoclean - 과거에 내려받은 아카이브 파일들을 지웁니다\n" +" check - 의존성이 망가지지 않았는지 확인합니다\n" +" markauto - 패키지를 자동 설치로 표시합니다\n" +" unmarkauto - 패키지를 수동 설치로 표시합니다\n" +"\n" +"옵션:\n" +" -h 이 도움말.\n" +" -q 기록 가능한 출력 - 진행 상황 표시를 하지 않습니다\n" +" -qq 오류만 출력 합니다\n" +" -d 내려받기만 합니다 - 아카이브를 설치하거나 풀거나 하지 않습니다\n" +" -s 실제 작업을 하지 않고, 순서대로 시뮬레이션만 합니다\n" +" -y 모든 질문에 대해 \"예\"라고 가정하고 물어보지 않습니다\n" +" -f 패키지 내용 검사가 실패해도 계속 진행해봅니다\n" +" -m 아카이브를 찾을 수 없어도 계속 진행해봅니다\n" +" -u 업그레이드하는 패키지의 목록도 봅니다\n" +" -b 소스 패키지를 받은 다음에 빌드합니다\n" +" -V 버전 번호를 자세히 봅니다\n" +" -c=? 이 설정 파일을 읽습니다\n" +" -o=? 임의의 옵션을 지정합니다. 예를 들어 -o dir::cache=/tmp\n" +"더 자세한 정보와 옵션을 보려면 apt-get(8), sources.list(5)나\n" +"apt.conf(5) 매뉴얼 페이지를 보십시오.\n" +" 이 APT는 Super Cow Powers로 무장했습니다.\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "%s의 정보를 읽을 수 없습니다." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "dpkg 실행하는 중입니다" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "'%s' 패키지 시스템을 지원하지 않습니다" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "올바른 패키지 시스템 타입을 알아낼 수 없습니다" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "레코드 %i개를 썼습니다.\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "레코드 %i개를 파일 %i개가 빠진 상태로 썼습니다.\n" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "레코드 %i개를 파일 %i개가 맞지 않은 상태로 썼습니다\n" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "하지만 설치하지 않았습니다" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상태로 썼습니다\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s 패키지 수동설치로 지정합니다.\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "다음의 인증 기록을 찾을 수 없습니다: %s" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s 패키지는 수동설치로 지정합니다.\n" -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "다음의 해시가 다릅니다: %s" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s 패키지는 이미 최신 버전입니다.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "설치 방법 드라이버 %s을(를) 찾을 수 없습니다." +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s 패키지는 이미 최신 버전입니다.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" +msgid "%s set on hold.\n" +msgstr "%s 패키지 수동설치로 지정합니다.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "설치 방법 %s이(가) 올바르게 시작하지 않았습니다" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "%s 파일을 여는데 실패했습니다" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"'%2$s' 드라이브에 '%1$s'(으)로 표기된 디스크를 넣고 Enter를 누르십시오." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "패키지 목록이나 상태 파일을 파싱할 수 없거나 열 수 없습니다." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "apt-get update를 실행하면 이 문제를 바로잡을 수도 있습니다." - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "소스 목록을 읽을 수 없습니다." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "패키지 캐시가 비어 있습니다" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "패키지 캐시 파일이 손상되었습니다" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "패키지 캐시 파일이 호환되지 않는 버전입니다" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "패키지 캐시 파일이 손상되었습니다" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "이 APT는 '%s' 버전 시스템을 지원하지 않습니다" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "패키지 캐시가 다른 아키텍쳐용입니다." - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "의존" +msgid "Unable to read the cdrom database %s" +msgstr "CD-ROM 데이터베이스 %s을(를) 읽을 수 없습니다" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "미리의존" +#: 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 "" +"이 CD를 APT에서 인식하려면 apt-cdrom을 사용하십시오. apt-get update로는 새 " +"CD를 추가할 수 없습니다." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "제안" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "잘못된 CD" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "추천" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s 안의 CD-ROM을 마운트 해제할 수 없습니다. 사용 중일 것입니다." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "충돌" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "디스크가 없습니다." -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "대체" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "파일이 없습니다" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "없앰" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "파일 정보를 읽는데 실패했습니다" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "망가뜨림" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "파일 변경 시각을 설정하는데 실패했습니다" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "향상" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI가 틀렸습니다. 로컬 URI는 //로 시작해야 합니다." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "중요" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "로그인하는 중입니다" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "필수" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "상대방의 이름을 알 수 없습니다" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "표준" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "로컬 이름을 알 수 없습니다" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "옵션" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "서버에서 다음과 같이 연결을 거부했습니다: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "별도" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER 실패, 서버에서는: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다" +msgid "PASS failed, server said: %s" +msgstr "PASS 실패, 서버에서는: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "캐시의 버전 시스템이 호환되지 않습니다" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"프록시 서버를 지정했지만 로그인 스크립트가 없습니다. Acquire::ftp::" +"ProxyLogin 값이 비어 있습니다." -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s 처리 중에 오류가 발생했습니다 (FindPkg)" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "로그인 스크립트 명령 '%s' 실패, 서버에서는: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "우와, 이 APT가 처리할 수 있는 패키지 이름 개수를 넘어갔습니다." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE 실패, 서버에서는: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "우와, 이 APT가 처리할 수 있는 버전 개수를 넘어갔습니다." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "연결 시간 초과" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "우와, 이 APT가 처리할 수 있는 설명 개수를 넘어갔습니다." +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "서버에서 연결을 닫았습니다" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "우와, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습니다." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "응답이 버퍼 크기를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "파일 의존성을 처리하는 데, %s %s 패키지가 없습니다" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "프로토콜이 틀렸습니다" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "소스 패키지 목록 %s의 정보를 읽을 수 없습니다" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "소켓을 만들 수 없습니다" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "패키지 목록을 읽는 중입니다" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "데이터 소켓을 연결할 수 없습니다. 연결 시간이 초과되었습니다" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "파일에서 제공하는 것을 모으는 중입니다" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "실패" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "%s에 쓸 수 없습니다" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "수동(passive) 소켓을 연결할 수 없습니다." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "소스 캐시를 저장하는데 입출력 오류가 발생했습니다" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo에서 소켓에 listen할 수 없습니다" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "소켓을 bind할 수 없습니다" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "소켓에 listen할 수 없습니다" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "소켓의 이름을 알아낼 수 없습니다" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "PORT 명령을 보낼 수 없습니다" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "주소 %u의 종류(AF_*)를 알 수 없습니다" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "이름 바꾸기가 실패했습니다. %s (%s -> %s)." +msgid "EPRT failed, server said: %s" +msgstr "EPRT 실패, 서버에서는: %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "해시 합이 맞지 않습니다" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "데이터 소켓 연결 시간 초과" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "크기가 맞지 않습니다" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "연결을 받을 수 없습니다" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "잘못된 작업 %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "파일 해싱에 문제가 있습니다" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" +msgid "Unable to fetch file, server said '%s'" +msgstr "파일을 가져올 수 없습니다. 서버 왈, '%s'" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "다음 키 ID의 공개키가 없습니다:\n" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "데이터 소켓에 제한 시간이 초과했습니다" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:935 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Data transfer failed, server said '%s'" +msgstr "데이터 전송 실패, 서버에서는: %s" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "질의" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "다음을 실행할 수 없습니다: " + +#: methods/connect.cc:76 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"디지털 서명 확인에 오류가 발생했습니다. 저장고를 업데이트하지 않고\n" -"예전의 인덱스 파일을 사용합니다. GPG 오류: %s: %s\n" +msgid "Connecting to %s (%s)" +msgstr "%s(%s)에 연결하는 중입니다" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:87 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG 오류: %s: %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:94 #, 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 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습" -"니다. (아키텍쳐가 빠졌기 때문입니다)" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s에 대한 소켓을 만들 수 없습니다 (f=%u t=%u p=%u)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:100 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s에 연결을 초기화할 수 없습니다 (%s)." -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:108 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"패키지 인덱스 파일이 손상되었습니다. %s 패키지에 Filename: 필드가 없습니다." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "%s:%s에 연결할 수 없습니다 (%s). 연결 제한 시간이 초과했습니다" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "벤더 블럭 %s의 핑거프린트가 없습니다" +msgid "Could not connect to %s:%s (%s)." +msgstr "%s:%s에 연결할 수 없습니다 (%s)." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "List directory %spartial is missing." -msgstr "목록 디렉터리 %spartial이 빠졌습니다." +msgid "Connecting to %s" +msgstr "%s에 연결하는 중입니다" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "아카이브 디렉터리 %spartial이 빠졌습니다." +msgid "Could not resolve '%s'" +msgstr "'%s'의 주소를 알아낼 수 없습니다" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "%s 디렉터리를 잠글 수 없습니다" +msgid "Temporary failure resolving '%s'" +msgstr "'%s'의 주소를 알아내는데 임시로 실패했습니다" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "파일 받아오는 중: %2$li 중 %1$li (%3$s 남았음)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "파일 받아오는 중: %2$li 중 %1$li" +msgid "Unable to connect to %s:%s:" +msgstr "%s:%s에 연결할 수 없습니다:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"일부 인덱스 파일을 다운로드하는데 실패했습니다. 해당 파일을 무시하거나 과거" -"의 버전을 대신 사용합니다." +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "내부 오류: 서명은 올바르지만 키 핑거프린트를 확인할 수 없습니다?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "sources.list에 '소스' URI를 써 넣어야 합니다" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "최소한 하나 이상의 서명이 잘못되었습니다." -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" +"서명을 확인하는 'gpgv' 프로그램을 실행할 수 없습니다. (gpgv를 설치했습니까?)" -#: apt-pkg/policy.cc:422 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "기본 설정 파일 %s에 잘못된 데이터가 있습니다. Package 헤더가 없습니다" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "핀 타입 %s이(가) 무엇인지 이해할 수 없습니다" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv 실행 도중 알 수 없는 오류 발생" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "핀에 우선순위(혹은 0)를 지정하지 않았습니다" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "다음 서명이 올바르지 않습니다:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다:\n" + +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"'%s'에 대해 즉시 설정을 할 수 없습니다. 자세한 설명은 man 5 apt.conf 페이지에" -"서 APT::Immediate-Configure 항목을 보십시오. (%d)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "'%s' 파일을 열 수 없습니다" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "해당 파일에 쓰는데 오류가 발생했습니다" -#: apt-pkg/packagemanager.cc:583 -#, 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 "" -"이번에 설치할 때 충돌/선의존성이 루프가 걸렸기 때문에 ê¼­ 필요한 %s 패키지를 " -"잠깐 제거해야 합니다. 이 패키지를 제거하는 ê±´ 좋지 않지만, 정말 지우려면 " -"APT::Force-LoopBreak 옵션을 켜십시오." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "서버에서 읽고 연결을 닫는데 오류가 발생했습니다" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "소스 리스트 %2$s의 %1$u번 줄이 너무 깁니다." +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "서버에서 읽는데 오류가 발생했습니다" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM을 마운트 해제하는 중입니다...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "파일에 쓰는데 오류가 발생했습니다" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "CD-ROM 마운트 위치 %s 사용\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "select가 실패했습니다" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "디스크를 기다리는 중입니다...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "연결 시간이 초과했습니다" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM 마운트하는 중입니다...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "출력 파일에 쓰는데 오류가 발생했습니다" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "알아보는 중입니다... " +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "헤더를 기다리는 중입니다" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "저장된 레이블: %s\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "헤더 줄이 잘못되었습니다" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "디스크에서 색인 파일을 찾는 중입니다...\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP 서버에서 잘못된 응답 헤더를 보냈습니다" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "패키지 색인 %zu개, 소스 색인 %zu개, 번역 색인 %zu개, 서명 %zu개 발견\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP 서버에서 잘못된 Content-Length 헤더를 보냈습니다" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"패키지 파일이 하나도 없습니다. 아마도 데비안 디스크가 아니거나 아키텍처가 잘" -"못된 것 같습니다?" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP 서버에서 잘못된 Content-Range 헤더를 보냈습니다" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "레이블 발견: %s \n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP 서버에 범위 지원 기능이 잘못되어 있습니다" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "올바른 이름이 아닙니다. 다시 시도하십시오.\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "데이터 형식을 알 수 없습니다" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"이 디스크는 다음과 같습니다: \n" -"'%s'\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "헤더 데이터가 잘못되었습니다" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "패키지 목록을 복사하는 중입니다..." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "연결이 실패했습니다" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "새 소스 리스트를 쓰는 중입니다\n" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "내부 오류" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "업그레이드를 계산하는 중입니다... " -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "완료" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다." -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"오류, pkgProblemResolver::Resolve가 망가졌습니다. 고정 패키지때문에 발생할 수" -"도 있습니다." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다." +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "의존성 트리를 만드는 중입니다" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "의존성을 바로잡는 중입니다..." -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "후보 버전" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " 실패." -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "의존성 만들기" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "의존성을 바로잡을 수 없습니다" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "상태 정보를 읽는 중입니다" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "업그레이드 집합을 최소화할 수 없습니다" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "상태파일 %s 여는데 실패했습니다" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " 완료" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "임시 상태파일 %s 쓰는데 실패했습니다" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"이 상황을 바로잡으려면 'apt-get -f install'을 실행해야 할 수도 있습니다." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (1)" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "의존성이 맞지 않습니다. -f 옵션을 사용해 보십시오." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (2)" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "%2$s 패키지의 '%1$s' 릴리즈를 찾을 수 없습니다" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [설치함]" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "%2$s 패키지의 '%1$s' 버전을 찾을 수 없습니다" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [설치함]" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "'%s' 작업을 찾을 수 없습니다" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [설치함]" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [설치함]" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "'%s' 패키지는 가상 패키지이므로 버전을 선택할 수 없습니다" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"'%s' 패키지에서 설치한 버전이나 후보 버전을 선택할 수 없습니다. 둘 다 아닙니" -"다." -#: apt-pkg/cacheset.cc:647 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "'%s' 패키지에서 최신 버전을 선택할 수 없습니다. 가상 패키지입니다." +msgid "but %s is installed" +msgstr "하지만 %s 패키지를 설치했습니다" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "'%s' 패키지에서 후보 버전을 선택할 수 없습니다. 후보가 없습니다." +msgid "but %s is to be installed" +msgstr "하지만 %s 패키지를 설치할 것입니다" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "'%s' 패키지에서 설치한 버전을 선택할 수 없습니다. 설치하지 않았습니다." +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "하지만 설치할 수 없습니다" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "하지만 가상 패키지입니다" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Release 파일 %s에 섹션이 없습니다" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "하지만 설치하지 않았습니다" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Release 파일 %s에 Hash 항목이 없습니다" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "하지만 %s 패키지를 설치하지 않을 것입니다" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Release 파일 %s에 'Valid-Until' 항목이 잘못되었습니다" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " 혹은" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Release 파일 %s에 'Date' 항목이 잘못되었습니다" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "다음 패키지의 의존성이 맞지 않습니다:" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "다음 새 패키지를 설치할 것입니다:" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 파싱 불가)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "다음 패키지를 지울 것입니다:" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 너무 짧음)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "다음 패키지를 과거 버전으로 유지합니다:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 대입이 아님)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "다음 패키지를 업그레이드할 것입니다:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 키가 없음)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "다음 패키지를 다운그레이드할 것입니다:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] %4$s 키에 값이 없음)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "고정되었던 다음 패키지를 바꿀 것입니다:" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI)" +msgid "%s (due to %s) " +msgstr "%s (%s때문에) " -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"경고: ê¼­ 필요한 다음 패키지를 지우게 됩니다.\n" +"무슨 일을 하고 있는 지 정확히 알지 못한다면 지우지 마십시오!" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu개 업그레이드, %lu개 새로 설치, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (절대 dist)" +msgid "%lu reinstalled, " +msgstr "%lu개 다시 설치, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist 파싱)" +msgid "%lu downgraded, " +msgstr "%lu개 업그레이드, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:715 #, c-format -msgid "Opening %s" -msgstr "%s 파일을 여는 중입니다" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu개 제거 및 %lu개 업그레이드 안 함.\n" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "%s 설치하는 중입니다" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s 설정 중입니다" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s 패키지를 지우는 중입니다" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "update 명령은 인수를 받지 않습니다" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-update.cc:90 #, c-format -msgid "Completely removing %s" -msgstr "%s 패키지를 완전히 지우는 중입니다" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "%s 사라짐 발견했습니다" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "설치 후 트리거 %s 실행하는 중입니다" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "디렉터리 '%s' 없습니다." +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "'%s' 파일을 열 수 없습니다" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "내부 오류. 망가진 패키지에서 InstallPackages를 호출했습니다!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s 준비 중입니다" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "패키지를 제거해야 하지만 제거가 금지되어 있습니다." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s 푸는 중입니다" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s 패키지를 설정할 준비하는 중입니다" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"이상하게도 크기가 서로 다릅니다. apt@packages.debian.org로 이메일을 보내주십" +"시오." -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s 설치" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%s바이트/%s바이트 아카이브를 받아야 합니다.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s 패키지를 지울 준비하는 중입니다" +msgid "Need to get %sB of archives.\n" +msgstr "%s바이트 아카이브를 받아야 합니다.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s 지움" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "이 작업 후 %s바이트의 디스크 공간을 더 사용하게 됩니다.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "%s 패키지를 완전히 지울 준비를 하는 중입니다" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "이 작업 후 %s바이트의 디스크 공간이 비워집니다.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s 패키지를 완전히 지웠습니다" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "You don't have enough free space in %s." +msgstr "%s 안에 충분한 여유 공간이 없습니다." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "%s에 쓸 수 없습니다" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "문제가 발생했고 -y 옵션이 --force-yes 옵션 없이 사용되었습니다" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" +"사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 " +"아닙니다." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +# 입력을 받아야 한다. 한글 입력을 못 할 수 있으므로 원문 그대로 사용. +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"시스템에 무언가 해가 되는 작업을 하려고 합니다.\n" +"계속하시려면 다음 문구를 입력하십시오: '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "보고서를 작성하지 않습니다. 이미 MaxReports 값에 도달했습니다." +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "중단." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "의존성 문제 - 설정하지 않은 상태로 남겨둡니다" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "계속 하시겠습니까?" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 예전의 실패 때문에 생긴 부수" -"적인 오류입니다." +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "일부 파일을 받는데 실패했습니다" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." +"아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-" +"missing 옵션을 줘서 실행해야 할 것입니다." -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다" + +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "빠진 패키지를 바로잡을 수 없습니다." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "설치를 중단합니다." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "보고서를 작성하지 않습니다. 오류 메시지에 따르면 메모리가 부족합니다." +"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] "" +"다음 패키지는 패키지의 파일을 모두 다른 패키지가\n" +"덮어썼기 때문에 사라졌습니다:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "주의: dpkg에서 자동으로 의도적으로 수행했습니다." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." +"AutoRemover가 뭔가를 망가뜨린 것으로 보입니다. 이 문제는 실제 일어나서는\n" +"안 됩니다. apt에 대해 버그 보고를 하십시오." -#: apt-pkg/deb/dpkgpm.cc:1685 +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "이 상황을 해결하는데 다음 정보가 도움이 될 수도 있습니다:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" + +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 dpkg 입출력 오류입니다." +"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] "다음 패키지가 자동으로 설치되었지만 더 이상 필요하지 않습니다:" -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:517 #, 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" + +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "이들을 지우려면 'apt-get autoremove'를 사용하십시오." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "다음을 바로잡으려면 'apt-get -f install'을 실행해 보십시오:" + +# FIXME: specify a solution? 무슨 솔루션? +#: apt-private/private-install.cc:614 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"관리 디렉터리를 (%s) 잠글 수 없습니다. 다른 프로세스가 사용하고 있지 않습니" -"까?" - -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "관리 디렉터리를 (%s) 잠글 수 없습니다. 루트 사용자가 맞습니까?" +"의존성이 맞지 않습니다. 패키지 없이 'apt-get -f install'을 시도해 보십시오 " +"(아니면 해결 방법을 지정하십시오)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"dpkg가 중단되었습니다. 수동으로 '%s' 명령을 실행해 문제점을 바로잡으십시오." +"몇몇 패키지를 설치할 수 없습니다. 요청한 상황이 불가능할 수도 있고,\n" +"불안정 배포판을 사용해서 일부 필요한 패키지를 아직 만들지 않았거나,\n" +"아직 Incoming에서 나오지 않은 경우일 수도 있습니다." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "잠기지 않음" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "망가진 패키지" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li일 %li시간 %li분 %li초" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "다음 패키지를 더 설치할 것입니다:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%li시간 %li분 %li초" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "제안하는 패키지:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%li분 %li초" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "추천하는 패키지:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:825 #, c-format -msgid "%lis" -msgstr "%li초" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"%s 패키지를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:829 #, c-format -msgid "Selection %s not found" -msgstr "선택한 %s이(가) 없습니다" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "%s 패키지를 건너 뜁니다. 설치되지 않았고 업그레이드만 요청합니다.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:841 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "읽기 전용 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s 패키지를 다시 설치하는 ê±´ 불가능합니다. 다운로드할 수 없습니다.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:846 #, c-format -msgid "Could not open lock file %s" -msgstr "잠금 파일 %s 파일을 열 수 없습니다" +msgid "%s is already the newest version.\n" +msgstr "%s 패키지는 이미 최신 버전입니다.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:894 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "NFS로 마운트된 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "%s 잠금 파일을 얻을 수 없습니다" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" + +#: apt-private/private-main.cc:32 +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 "" +"알림: 시험 동작입니다!\n" +" 실행하려면 apt-get을 실행할 때 루트 권한이 필요합니다.\n" +" 또 잠금 기능을 사용하지 않는 상태이므로, 현재 상황에 의존하지\n" +" 않도록 하십시오!" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "경고: 다음 패키지를 인증할 수 없습니다!" + +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "인증 경고를 무시합니다.\n" + +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "인증할 수 없는 패키지가 있습니다" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "확인하지 않고 패키지를 설치하시겠습니까?" + +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "하위 프로세스 %s 프로세스가 세그멘테이션 오류를 받았습니다." +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "기존 " -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "하위 프로세스 %s 프로세스가 %u번 시그널을 받았습니다." +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "받기:" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "무시" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "하위 프로세스 %s 프로세스가 예상치 못하게 끝났습니다" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "오류 " -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "%s gzip 파일을 닫는데 문제가 있습니다" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "내려받기 %s바이트, 소요시간 %s (%s바이트/초)\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Could not open file %s" -msgstr "%s 파일을 열 수 없습니다" +msgid " [Working]" +msgstr " [작업중]" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Could not open file descriptor %d" -msgstr "%d 파일 디스크립터를 열 수 없습니다" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "하위 프로세스 IPC를 만드는데 실패했습니다" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"미디어 바꾸기: '%2$s' 드라이브에 다음 레이블이 달린\n" +"디스크를 넣고 enter를 누르십시오\n" +" '%1$s'\n" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "다음 압축 프로그램을 실행하는데 실패했습니다: " +#. 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' 미러 파일이 없습니다 " -#: apt-pkg/contrib/fileutl.cc:1514 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "%lu만큼 더 읽어야 하지만 더 이상 읽을 데이터가 없습니다" +msgid "Can not read mirror file '%s'" +msgstr "'%s' 미러 파일이 없습니다 " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "%lu만큼 더 써야 하지만 더 이상 쓸 수 없습니다" +msgid "No entry found in mirror file '%s'" +msgstr "'%s' 미러 파일이 없습니다 " -#: apt-pkg/contrib/fileutl.cc:1915 +#: methods/mirror.cc:445 #, c-format -msgid "Problem closing the file %s" -msgstr "%s 파일을 닫는데 문제가 있습니다" +msgid "[Mirror: %s]" +msgstr "[미러 사이트: %s]" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "%s 파일을 %s(으)로 이름을 바꾸는데 문제가 있습니다" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "하위 프로세스에 대한 IPC 파이프를 만드는데 실패했습니다" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "%s 파일을 삭제하는데 문제가 있습니다" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "연결이 너무 빨리 끊어졌습니다" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "파일을 동기화하는데 문제가 있습니다" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "기본 설정이 잘못되었습니다!" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... 오류!" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "계속 하시려면 enter를 누르십시오." -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... 완료" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "이전에 다운로드 받았던 .deb 파일을 지우시겠습니까?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "압축을 푸는데 몇몇 오류가 발생했습니다. 설치된 패키지를" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "설정합니다. 오류때문에 의존성을 만족하지 못해 설정하는 과정에서" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"오류가 중복되어 나타날 수 있습니다. 하지만 상관없고, 이 메세지 위에 나온" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... 완료" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "오류만 중요합니다. 이 오류를 고친 다음에 설치(I)를 다시 시도하십시오" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "빈 파일에 메모리 매핑할 수 없습니다" +#: dselect/update:30 +msgid "Merging available information" +msgstr "이용 가능 패키지 정보를 합칩니다" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "%i 파일 디스크립터를 복사할 수 없습니다" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode가 아직 연결되어 있는 노드에 대해 호출되었습니다" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%lu바이트를 메모리 매핑할 수 없습니다" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "해시 항목을 찾는데 실패했습니다" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "mmap을 닫을 수 없습니다" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "diversion을 할당하는데 실패했습니다" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "mmap을 동기화할 수 없습니다" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion에서 내부 오류" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu바이트를 메모리 매핑할 수 없습니다" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "파일을 자르는데 실패했습니다" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "전환된 파일을 덮어 쓰려고 합니다 (%s -> %s 및 %s/%s)" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/filelist.cc:506 #, 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 "" -"동적 mmap이 한계를 벗어났습니다. APT::Cache-Start의 크기를 높이십시오. 현재 " -"값: %lu. (man 5 apt.conf)" +msgid "Double add of diversion %s -> %s" +msgstr "전환된 파일을 두 번 추가합니다 (%s -> %s)" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/filelist.cc:549 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "mmap 크기를 늘릴 수 없습니다. 이미 %lu 바이트 한계에 도달했습니다." - -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"mmap 크기를 늘릴 수 없습니다. 자동으로 늘리는 기능을 사용자가 금지했습니다." +msgid "Duplicate conf file %s/%s" +msgstr "%s/%s 설정 파일이 중복되었습니다" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "마운트 위치 %s의 정보를 읽을 수 없습니다" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "CD-ROM의 정보를 읽을 수 없습니다" +msgid "The path %s is too long" +msgstr "경로 %s이(가) 너무 깁니다" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:132 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "이 타입 줄임말을 알 수 없습니다: '%c'" +msgid "Unpacking %s more than once" +msgstr "%s을(를) 두 번 이상 풀었습니다" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:142 #, c-format -msgid "Opening configuration file %s" -msgstr "설정 파일 %s 파일을 여는 중입니다" +msgid "The directory %s is diverted" +msgstr "%s 디렉터리가 전환되었습니다" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "문법 오류 %s:%u: 블럭이 이름으로 시작하지 않습니다." +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "이 패키지에서 전환된 대상에 쓰려고 합니다 (%s/%s)" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "문법 오류 %s:%u: 태그의 형식이 잘못되었습니다" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "전환하는 경로가 너무 깁니다" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "문법 오류 %s:%u: 값 뒤에 쓰레기 데이터가 더 있습니다" +msgid "Failed to stat %s" +msgstr "%s의 정보를 읽는데 실패했습니다" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계에서만 쓸 수 있습니다" +msgid "Failed to rename %s to %s" +msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "문법 오류 %s:%u: include가 너무 많이 겹쳐 있습니다" +msgid "The directory %s is being replaced by a non-directory" +msgstr "%s 디렉터리를 디렉터리가 아닌 파일로 덮어쓰려고 합니다" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "문법 오류 %s:%u: 여기서 include됩니다" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "해시 버킷에서 노드를 찾는데 실패했습니다" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "문법 오류 %s:%u: 지원하지 않는 지시어 '%s'" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "경로가 너무 깁니다" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "문법 오류 %s:%u: clear 지시어는 인수로 option 트리를 지정해야 합니다" +msgid "Overwrite package match with no version for %s" +msgstr "덮어 쓰는 패키지가 %s 패키지의 어떤 버전과도 맞지 않습니다" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "문법 오류 %s:%u: 파일의 끝에 쓰레기 데이터가 더 있습니다" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "%s/%s 파일은 %s 패키지에 있는 파일을 덮어 씁니다" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:498 #, c-format -msgid "No keyring installed in %s." -msgstr "%s에 키 모음을 설치하지 않았습니다." +msgid "Unable to stat %s" +msgstr "%s의 정보를 읽을 수 없습니다" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "명령행 옵션 '%c' 옵션을 [%s에서] 알 수 없습니다." +msgid "Failed to write file %s" +msgstr "%s 파일을 쓰는데 실패했습니다" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Command line option %s is not understood" -msgstr "명령행 옵션 '%s' 옵션을 알 수 없습니다" +msgid "Failed to close file %s" +msgstr "%s 파일을 닫는데 실패했습니다" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Command line option %s is not boolean" -msgstr "명령행 옵션 '%s' 옵션은 불리언이 아닙니다" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "올바른 DEB 아카이브가 아닙니다. '%s' 멤버가 없습니다" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option %s requires an argument." -msgstr "%s 옵션에는 인수가 필요합니다." +msgid "Internal error, could not locate member %s" +msgstr "내부 오류, %s 멤버를 찾을 수 없습니다" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "%s 옵션: 설정 항목 지정은 =<값> 형태여야 합니다." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "control 파일을 파싱할 수 없습니다" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "%s 옵션에는 정수 인수가 필요합니다. '%s'이(가) 아닙니다" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "아카이브 서명이 틀렸습니다" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "'%s' 옵션이 너무 깁니다" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "아카이브 멤버 헤더를 읽는데 오류가 발생했습니다" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s 센스를 이해할 수 없습니다. ì°¸ 아니면 거짓으로 해 보십시오." +msgid "Invalid archive member header %s" +msgstr "아카이브 멤버 헤더 %s이(가) 잘못되었습니다" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "아카이브 멤버 헤더가 잘못되었습니다" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "아카이브 길이가 너무 짧습니다" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "아카이브 헤더를 읽는데 실패했습니다" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "파이프 만들기가 실패했습니다" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "gzip 실행이 실패했습니다" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "아카이브가 손상되었습니다" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "tar 체크섬 실패, 아카이브가 손상되었습니다" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "잘못된 작업 %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "알 수 없는 TAR 헤더 타입 %u, 멤버 %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3510,7 +3514,7 @@ msgstr "MD5를 계산하는 동안 읽는데 실패했습니다" msgid "Problem unlinking %s" msgstr "%s의 링크를 해제하는데 문제가 있습니다" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3564,6 +3568,10 @@ msgstr "" " -c=? 이 설정 파일을 읽습니다\n" " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "내부 오류, AllUpgrade 프로그램이 무언가를 망가뜨렸습니다" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s은(는) 올바른 DEB 패키지가 아닙니다." diff --git a/po/ku.po b/po/ku.po index 66665ad04..05561e35a 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,3018 +8,3023 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" -"Last-Translator: Erdal Ronahi <erdal dot ronahi at gmail dot com>\n" +"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n" "Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n" -"Language: \n" +"Language: ku\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KAider 0.1\n" "Plural-Forms: nplurals=2; plural= n != 1;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 #, c-format -msgid "Package %s version %s has an unmet dep:\n" +msgid "Clean of %s is not supported" msgstr "" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Navên paketan bi giştî :" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#, c-format +msgid "Unable to read %s" +msgstr "Nikare %s bixwîne" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Navên paketan bi giştî :" +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Nikarî derbasa %s bike" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pakêtên normal:" +#: apt-pkg/clean.cc:64 +#, fuzzy, c-format +msgid "Unable to stat %s." +msgstr "Nivîsandin ji bo %s ne pêkane" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pakêtên farazî yên safî:" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pakêta tenê ya farazî:" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pakêtên hevbeş yên farazî:" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Winda: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Guhertoyên vekirî yên giştî:" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i tomar hatin nivîsîn.\n" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Guhertoyên vekirî yên giştî:" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Bindestên giştî:" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "Guhertoyên vekirî yên giştî:" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash Sum li hev nayên" + +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" msgstr "" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Cihê giştî yê sist:" +#: apt-pkg/acquire-worker.cc:455 +#, fuzzy, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Cihê giştî yê veqetandî: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakêta dosya %s li derveyî demê ye." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Pakêt nayên dîtin" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Pêwist e tu mînakekê bidî" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 -#, c-format -msgid "Unable to locate package %s" -msgstr "Pakêt nehate dîtin %s" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pelgehên Pakêt:" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" msgstr "" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nehate dîtin)" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Bindest" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Sazkirî: " +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "PêşBindest" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Berendam: " +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Pêşniyaz dike" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ne tiştek)" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Tawsiye dike" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Destika pakêtê:" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Nakokî" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabloya guhertoyan:" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Dikeve şunve" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s ji bo %s %s komkirî di %s %s de\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Kevin dike" -#: cmdline/apt-cache.cc:1749 -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" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Dişkîne" + +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" msgstr "" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Ji kerema xwe re navekî li vî Dîsketî bike, wekî 'Debian 2.1r1 Disk 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "girîng" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "pêwist" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Anîna %s %s biserneket\n" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opsiyonel" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ekstra" + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" msgstr "" -"Bikaranîn: apt-config [vebijark] ferman\n" -"apt-config, amûra xwendina dosyeya mîhengên APTê ye\n" -"\n" -"Ferman\n" -" shell - moda shell\n" -" dump - Mîhengan nîşan dide\n" -"\n" -"Vebijark:\n" -" -h Ev dosyeya alîkariyê ye.\n" -" -c=? Dosyeya mîhengan nîşan dide\n" -" -o=? Rê li ber vedike ku tu karibe li gorî dilê xwe vebijarkan diyar bike. " -"mînak -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nikarî pakêta %s bibîne" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Dema şixulandina naveroka %s çewtî" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nikarî pakêta %s bibîne" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nikarî pakêta %s bibîne" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Nikarî pakêta %s bibîne" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "lê %s dê were sazkirin" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "lê %s dê were sazkirin" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lîsteya pakêtan tê xwendin" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Nivîsandin ji bo %s ne pêkane" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Pelrêça daxistinê nayê quflekirin" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nikarî cihê vala li %s tesbît bike" +msgid "rename failed, %s (%s -> %s)." +msgstr "nav guherandin biserneket, %s (%s -> %s)" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Cihê vala li %s têre nake" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash Sum li hev nayê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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Mezinahî li hev nayê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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "Çavkanîna %s bîne\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Anîna çend arşîvan biserneket." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Pakêt nehate dîtin %s" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" +msgid "GPG error: %s: %s" msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" +msgid "Vendor block %s contains no fingerprint" msgstr "" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Peldanka '%s' kêm e" + +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Peldanka '%s' kêm e" + +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "W: pelrêça %s nayê xwendin\n" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "%s has no build depends.\n" +msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Pel tê anîn %li ji %li" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Anîna %s %s biserneket\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:444 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "Did not understand pin type %s" msgstr "" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nikarî pelê %s veke" + +#: apt-pkg/packagemanager.cc:583 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" +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 "" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Build-dependencies for %s could not be satisfied." +msgid "Line %u too long in source list %s." msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Girêdan bi %s (%s) re pêk tê" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" msgstr "" -#: cmdline/apt-get.cc:1632 -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" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" msgstr "" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" msgstr "" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " msgstr "" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "lê ne sazkirî ye" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "lê %s dê were sazkirin" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "lê %s dê were sazkirin" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s jixwe guhertoya nûtirîn e.\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Etîketa '%s' hatiye dîtin\n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s jixwe guhertoya nûtirîn e.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Navê dîskê: \n" +"'%s'\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "lê %s dê were sazkirin" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Lîsteyên pakêtan tên jibergirtin..." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s venebû" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" msgstr "" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -#: methods/cdrom.cc:203 -#, fuzzy, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Pakêt nehate dîtin %s" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" -#: 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" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" msgstr "" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM a şaş" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Guhartoyên berendam" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" msgstr "" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Dîsk nehate dîtin." +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Pel nehate dîtin" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Vekirina StateFile %s biserneket" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -#, fuzzy -msgid "Failed to stat" -msgstr "%s venebû" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "%s ji hev nehate veçirandin" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" +#: apt-pkg/tagfile.cc:140 +#, fuzzy, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Pakêt nehate dîtin %s" + +#: apt-pkg/tagfile.cc:237 +#, fuzzy, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Pakêt nehate dîtin %s" + +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Têketin" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Pakêt nehate dîtin %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Peywira %s nehate dîtin" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nikare navê herêmî tesbît bike" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nikarî pakêta %s bibîne" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "The server refused the connection and said: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "USER failed, server said: %s" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "PASS failed, server said: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Pakêt nehate dîtin %s" + +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "TYPE failed, server said: %s" +msgid "No sections in Release file %s" msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Çewiya xwendinê" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Pakêt nehate dîtin %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Çewtiya nivîsînê" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Serneket" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Unknown address family %u (AF_*)" +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "" +msgid "Opening %s" +msgstr "%s tê vekirin" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Danegira %s nehate vekirin: %s" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "" +msgid "Installing %s" +msgstr "%s hatine sazkirin" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "" +msgid "Configuring %s" +msgstr "%s tê mîhengkirin" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Lêpirsîn" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s tê rakirin" -#: methods/ftp.cc:1128 -#, fuzzy -msgid "Unable to invoke " -msgstr "%s venebû" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s bi tevahî hatine rakirin" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Girêdan bi %s (%s) re pêk tê" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Running post-installation trigger %s" +msgstr "" -#: methods/connect.cc:94 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "" +msgid "Directory '%s' missing" +msgstr "Peldanka '%s' kêm e" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Nikarî pelê %s veke" + +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "" +msgid "Preparing %s" +msgstr "%s tê amadekirin" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "" +msgid "Unpacking %s" +msgstr "%s tê derxistin" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "" +msgid "Preparing to configure %s" +msgstr "Mîhengkirina %s tê amadekirin" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Connecting to %s" -msgstr "Bi %s re tê girêdan" +msgid "Installed %s" +msgstr "%s hatine sazkirin" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nikarî '%s' çareser bike" +msgid "Preparing for removal of %s" +msgstr "Rakirina %s tê amadekirin" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "" +msgid "Removed %s" +msgstr "%s hatine rakirin" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "" +msgid "Preparing to completely remove %s" +msgstr "Bi tevahî rakirina %s tê amadekirin" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "Completely removed %s" +msgstr "%s bi tevahî hatine rakirin" + +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nikare bi %s re girêdan pêk bîne %s:" +msgid "Can not write log (%s)" +msgstr "Nivîsandin ji bo %s ne pêkane" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Di xebitandina gpgv de çewtiya nenas" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -#, fuzzy -msgid "The following signatures were invalid:\n" -msgstr "Ev pakêtên NÛ dê werine sazkirin:" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Dema li pelî dihate nivîsîn çewtî" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Dema li pelî dihate nivîsîn çewtî" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Hilbijartin neserketî" - -#: methods/http.cc:626 -msgid "Connection timed out" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: methods/http.cc:649 -#, fuzzy -msgid "Error writing to output file" -msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" - -#: methods/server.cc:51 -msgid "Waiting for headers" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Pelrêça daxistinê nayê quflekirin" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Girêdan pêk nehatiye" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Hilbijartina %s nehatiye dîtin" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Çewtiya hundirîn" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Bilindkirin tê hesibandin..." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nikarî qufila pelê %s veke" -#: apt-private/private-upgrade.cc:30 -msgid "Internal error, Upgrade broke stuff" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Temam" - -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Bindestî tên serrastkirin..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " neserketî." +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nikare bindestiyan rast kirin" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Temam" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Çewtiya nivîsînê" + +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Sazkirî]" +msgid "Problem closing the gzip file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Sazkirî]" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nikarî pelê %s veke" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Nikarî pelê %s veke" + +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Sazkirî]" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Sazkirî]" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Çewiya xwendinê" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "[upgradable from: %s]" +msgid "read, still have %llu to read but none left" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" + +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Di girtina pelî de pirsgirêkek derket" + +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" + +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" msgstr "" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is installed" -msgstr "lê %s sazkirî ye" +msgid "%c%s... Error!" +msgstr "%c%s... Çewtî!" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "but %s is to be installed" -msgstr "lê %s dê were sazkirin" +msgid "%c%s... Done" +msgstr "%c%s... Çêbû" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "lê sazkirina wê ne gengaz e" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "lê paketeke farazî ye" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Çêbû" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "lê ne sazkirî ye" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "lê dê neyê sazkirin" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " û" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nikarî li %s biguherîne" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Ev pakêtên NÛ dê werine sazkirin:" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "%s venebû" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Ev pakêt dê werine RAKIRIN:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "%s venebû" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" msgstr "" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Ev paket dê werine bilindkirin:" - -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Nivîsîna pelê %s biserneket" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" +#: 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 "" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (ji ber %s)" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" + +#: apt-pkg/contrib/cdromutl.cc:65 +#, fuzzy, c-format +msgid "Unable to stat the mount point %s" +msgstr "Nivîsandin ji bo %s ne pêkane" + +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" msgstr "" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin." +msgid "Unrecognized type abbreviation: '%c'" +msgstr "" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu ji nû ve sazkirî," +msgid "Opening configuration file %s" +msgstr "" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu downgraded, " -msgstr "%lu hatine nizmkirin." +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "%lu not fully installed or removed.\n" +msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -#, fuzzy -msgid "[Y/n]" -msgstr "[E/n]" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "E" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "Regex compilation error - %s" +msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Sazkirin tê betalkirin." -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" msgstr "" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" msgstr "" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." msgstr "" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\n" +msgid "Option %s requires an integer argument, not '%s'" +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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Anîna %sB ji arşîvan pêwist e.\n" +msgid "Option '%s' is too long" +msgstr "Opsiyona '%s' zêde dirêj e" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" +msgid "Sense %s is not understood, try true or false." 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" +msgid "Invalid operation %s" msgstr "" -#: apt-private/private-install.cc:199 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Cihê vala li %s têre nake." - -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "" - -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." +msgid "Package %s version %s has an unmet dep:\n" msgstr "" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Erê, wusa bike!" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Navên paketan bi giştî :" -#: apt-private/private-install.cc:221 -#, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Navên paketan bi giştî :" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Betal." +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pakêtên normal:" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Dixwazî bidomînî?" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pakêtên farazî yên safî:" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Daxistina çend pelan biserneket" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pakêta tenê ya farazî:" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pakêtên hevbeş yên farazî:" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Winda: " -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Guhertoyên vekirî yên giştî:" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Sazkirin tê betalkirin." +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Guhertoyên vekirî yên giştî:" -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Bindestên giştî:" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " msgstr "" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Guhertoyên vekirî yên giştî:" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " msgstr "" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " msgstr "" -#: apt-private/private-install.cc:512 -#, fuzzy -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] "Ev pakêtên NÛ dê werine sazkirin:" -msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Cihê giştî yê sist:" -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "Ev pakêtên NÛ dê werine sazkirin:" -msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Cihê giştî yê veqetandî: " -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Pakêta dosya %s li derveyî demê ye." -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Pakêt nayên dîtin" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Pêwist e tu mînakekê bidî" -#: apt-private/private-install.cc:628 -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." +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Paketên şikestî" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pelgehên Pakêt:" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Paketên tên pêşniyaz kirin:" - -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Paketên tên tawsiyê kirin:" - -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" msgstr "" -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nehate dîtin)" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Sazkirî: " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s jixwe guhertoya nûtirîn e.\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Berendam: " -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ne tiştek)" -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Destika pakêtê:" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabloya guhertoyan:" -#: apt-private/private-install.cc:937 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s ji bo %s %s komkirî di %s %s de\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 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 "" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" +"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 "" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Ji kerema xwe re navekî li vî Dîsketî bike, wekî 'Debian 2.1r1 Disk 1'" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Anîna %s %s biserneket\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s ji hev nehate veçirandin" +msgid "Failed to mount '%s' to '%s'" +msgstr "Anîna %s %s biserneket\n" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" msgstr "" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Anîn:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " +#: cmdline/apt-config.cc:89 +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 "" +"Bikaranîn: apt-config [vebijark] ferman\n" +"apt-config, amûra xwendina dosyeya mîhengên APTê ye\n" +"\n" +"Ferman\n" +" shell - moda shell\n" +" dump - Mîhengan nîşan dide\n" +"\n" +"Vebijark:\n" +" -h Ev dosyeya alîkariyê ye.\n" +" -c=? Dosyeya mîhengan nîşan dide\n" +" -o=? Rê li ber vedike ku tu karibe li gorî dilê xwe vebijarkan diyar bike. " +"mînak -o dir::cache=/tmp\n" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Çewt" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s hatine anîn..." +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Dixebite]" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:367 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Picking '%s' as source package instead of '%s'\n" 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Nikare %s bixwîne" - -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Unable to change to %s" -msgstr "Nikarî derbasa %s bike" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:454 #, c-format -msgid "No mirror file '%s' found " -msgstr "" +msgid "Couldn't find package %s" +msgstr "Nikarî pakêta %s bibîne" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nikarî pelê %s veke" +msgid "%s set to manually installed.\n" +msgstr "lê %s dê were sazkirin" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nikarî pelê %s veke" +msgid "%s set to automatically installed.\n" +msgstr "lê %s dê were sazkirin" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Girêdan zû hatiye girtin" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Pelrêça daxistinê nayê quflekirin" -#: dselect/install:33 -msgid "Bad default setting!" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "" - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#, c-format +msgid "Unable to find a source package for %s" msgstr "" -#: dselect/install:105 +#: cmdline/apt-get.cc:786 +#, c-format msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "" - -#: apt-inst/filelist.cc:459 -#, fuzzy -msgid "Failed to allocate diversion" -msgstr "%s venebû" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Double add of diversion %s -> %s" +msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "Nikarî cihê vala li %s tesbît bike" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The path %s is too long" -msgstr "Rêça %s zêde dirêj e" +msgid "You don't have enough free space in %s" +msgstr "Cihê vala li %s têre nake" -#: apt-inst/extract.cc:132 +#. 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:891 #, c-format -msgid "Unpacking %s more than once" +msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: apt-inst/extract.cc:142 +#. 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:896 #, c-format -msgid "The directory %s is diverted" +msgid "Need to get %sB of source archives.\n" msgstr "" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" +msgid "Fetch source %s\n" +msgstr "Çavkanîna %s bîne\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -#, fuzzy -msgid "The diversion path is too long" -msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Anîna çend arşîvan biserneket." -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to rename %s to %s" +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:962 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" +msgid "Unpack command '%s' failed.\n" msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Rêç zêde dirêj e" - -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Overwrite package match with no version for %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:991 #, c-format -msgid "File %s/%s overwrites the one in the package %s" +msgid "Build command '%s' failed.\n" msgstr "" -#: apt-inst/extract.cc:498 -#, fuzzy, c-format -msgid "Unable to stat %s" -msgstr "Nivîsandin ji bo %s ne pêkane" - -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "Nivîsîna pelê %s biserneket" - -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Girtina pelê %s biserneket" - -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 -#, c-format -msgid "This is not a valid DEB archive, missing '%s' member" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" msgstr "" -#: apt-inst/deb/debfile.cc:132 -#, c-format -msgid "Internal error, could not locate member %s" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" msgstr "" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" msgstr "" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Invalid archive member header %s" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arşîv zêde kin e" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" +#: cmdline/apt-get.cc:1312 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -#, fuzzy -msgid "Failed to create pipes" -msgstr "%s ji hev nehate veçirandin" - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Xebitandina gzip biserneket" - -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" +#: cmdline/apt-get.cc:1351 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" +#: cmdline/apt-get.cc:1357 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: apt-pkg/clean.cc:61 -#, fuzzy, c-format -msgid "Unable to stat %s." -msgstr "Nivîsandin ji bo %s ne pêkane" - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Progress: [%3i%%]" +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Girêdan bi %s (%s) re pêk tê" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i tomar hatin nivîsîn.\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" +#: cmdline/apt-get.cc:1632 +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 "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash Sum li hev nayên" +msgid "%s can not be marked as it is not installed.\n" +msgstr "lê ne sazkirî ye" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" +msgid "%s was already not hold.\n" +msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "%s venebû" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "" +#: methods/cdrom.cc:203 +#, fuzzy, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Pakêt nehate dîtin %s" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" +#: 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 "" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM a şaş" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Bindest" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PêşBindest" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Pêşniyaz dike" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Tawsiye dike" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Nakokî" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Dikeve şunve" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Dîsk nehate dîtin." -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Kevin dike" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Pel nehate dîtin" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Dişkîne" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +#, fuzzy +msgid "Failed to stat" +msgstr "%s venebû" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "girîng" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "pêwist" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Têketin" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opsiyonel" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ekstra" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nikare navê herêmî tesbît bike" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" +msgid "The server refused the connection and said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" 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:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Dema şixulandina naveroka %s çewtî" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" msgstr "" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" +#: methods/ftp.cc:350 +msgid "Server closed the connection" msgstr "" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." msgstr "" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lîsteya pakêtan tê xwendin" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Nivîsandin ji bo %s ne pêkane" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Serneket" + +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." msgstr "" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" msgstr "" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:802 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nav guherandin biserneket, %s (%s -> %s)" +msgid "Unknown address family %u (AF_*)" +msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash Sum li hev nayên" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Mezinahî li hev nayên" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" msgstr "" -#: apt-pkg/acquire-item.cc:1581 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" msgstr "" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:890 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Pakêt nehate dîtin %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Danegira %s nehate vekirin: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" msgstr "" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:935 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +msgid "Data transfer failed, server said '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Lêpirsîn" + +#: methods/ftp.cc:1128 +#, fuzzy +msgid "Unable to invoke " +msgstr "%s venebû" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:76 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Girêdan bi %s (%s) re pêk tê" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:87 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:94 #, 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)" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:100 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" +msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:108 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." +msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" +msgid "Could not connect to %s:%s (%s)." msgstr "" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Peldanka '%s' kêm e" - -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Peldanka '%s' kêm e" - -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "W: pelrêça %s nayê xwendin\n" - -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "" +msgid "Connecting to %s" +msgstr "Bi %s re tê girêdan" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Pel tê anîn %li ji %li" +msgid "Could not resolve '%s'" +msgstr "Nikarî '%s' çareser bike" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" msgstr "" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s'" msgstr "" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:211 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" +#: 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:" + +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Nikarî pelê %s veke" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Di xebitandina gpgv de çewtiya nenas" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Ev pakêtên NÛ dê werine sazkirin:" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Dema li pelî dihate nivîsîn çewtî" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" msgstr "" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" +#: methods/http.cc:525 +msgid "Error reading from server" msgstr "" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Dema li pelî dihate nivîsîn çewtî" + +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Hilbijartin neserketî" + +#: methods/http.cc:626 +msgid "Connection timed out" msgstr "" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " +#: methods/http.cc:649 +#, fuzzy +msgid "Error writing to output file" +msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" + +#: methods/server.cc:51 +msgid "Waiting for headers" msgstr "" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" +#: methods/server.cc:109 +msgid "Bad header line" msgstr "" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" msgstr "" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Etîketa '%s' hatiye dîtin\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" +#: methods/server.cc:220 +msgid "Unknown date format" msgstr "" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: methods/server.cc:489 +msgid "Bad header data" msgstr "" -"Navê dîskê: \n" -"'%s'\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Lîsteyên pakêtan tên jibergirtin..." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Girêdan pêk nehatiye" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Çewtiya hundirîn" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Bilindkirin tê hesibandin..." + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Temam" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-list.cc:164 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Bindestî tên serrastkirin..." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " neserketî." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nikare bindestiyan rast kirin" + +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" msgstr "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Guhartoyên berendam" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Temam" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." msgstr "" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Vekirina StateFile %s biserneket" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s ji hev nehate veçirandin" +msgid "[installed,upgradable to: %s]" +msgstr " [Sazkirî]" -#: apt-pkg/tagfile.cc:140 -#, fuzzy, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Pakêt nehate dîtin %s" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Sazkirî]" -#: apt-pkg/tagfile.cc:237 -#, fuzzy, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Pakêt nehate dîtin %s" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Sazkirî]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Sazkirî]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Release '%s' for '%s' was not found" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Peywira %s nehate dîtin" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "lê %s sazkirî ye" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nikarî pakêta %s bibîne" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nikarî pakêta %s bibîne" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "lê sazkirina wê ne gengaz e" + +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "lê paketeke farazî ye" + +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "lê ne sazkirî ye" + +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "lê dê neyê sazkirin" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " û" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Ev pakêtên NÛ dê werine sazkirin:" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Ev pakêt dê werine RAKIRIN:" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" msgstr "" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Pakêt nehate dîtin %s" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Ev paket dê werine bilindkirin:" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" msgstr "" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" msgstr "" -#: apt-pkg/indexrecords.cc:130 +#: apt-private/private-output.cc:668 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "" - -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Pakêt nehate dîtin %s" +msgid "%s (due to %s) " +msgstr "%s (ji ber %s)" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -#: apt-pkg/sourcelist.cc:170 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin." -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" +msgid "%lu reinstalled, " +msgstr "%lu ji nû ve sazkirî," -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" +msgid "%lu downgraded, " +msgstr "%lu hatine nizmkirin." -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%lu not fully installed or removed.\n" msgstr "" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +#, fuzzy +msgid "[Y/n]" +msgstr "[E/n]" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" msgstr "" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "E" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" msgstr "" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-update.cc:90 #, c-format -msgid "Opening %s" -msgstr "%s tê vekirin" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-show.cc:156 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "%s hatine sazkirin" - -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s tê mîhengkirin" - -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s tê rakirin" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s bi tevahî hatine rakirin" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Directory '%s' missing" -msgstr "Peldanka '%s' kêm e" - -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Nikarî pelê %s veke" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\n" -#: apt-pkg/deb/dpkgpm.cc:989 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing %s" -msgstr "%s tê amadekirin" +msgid "Need to get %sB of archives.\n" +msgstr "Anîna %sB ji arşîvan pêwist e.\n" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Unpacking %s" -msgstr "%s tê derxistin" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to configure %s" -msgstr "Mîhengkirina %s tê amadekirin" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:200 #, c-format -msgid "Installed %s" -msgstr "%s hatine sazkirin" +msgid "You don't have enough free space in %s." +msgstr "Cihê vala li %s têre nake." -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Rakirina %s tê amadekirin" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s hatine rakirin" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Bi tevahî rakirina %s tê amadekirin" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Erê, wusa bike!" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:222 #, c-format -msgid "Completely removed %s" -msgstr "%s bi tevahî hatine rakirin" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nivîsandin ji bo %s ne pêkane" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Betal." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Dixwazî bidomînî?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Daxistina çend pelan biserneket" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Sazkirin tê betalkirin." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "Ev pakêtên NÛ dê werine sazkirin:" +msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Pelrêça daxistinê nayê quflekirin" +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] "Ev pakêtên NÛ dê werine sazkirin:" +msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:638 +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 "" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paketên şikestî" + +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" msgstr "" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paketên tên pêşniyaz kirin:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paketên tên tawsiyê kirin:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "%lih %limin %lis" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:829 #, c-format -msgid "%limin %lis" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:841 #, c-format -msgid "%lis" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:846 #, c-format -msgid "Selection %s not found" -msgstr "Hilbijartina %s nehatiye dîtin" +msgid "%s is already the newest version.\n" +msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:894 #, c-format -msgid "Not using locking for read only lock file %s" +msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:899 #, c-format -msgid "Could not open lock file %s" -msgstr "Nikarî qufila pelê %s veke" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:218 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Not using locking for nfs mounted lock file %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:947 #, c-format -msgid "Could not get lock %s" +msgid "Package '%s' is not installed, so not removed\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" +#: apt-private/private-main.cc:32 +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 "" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" msgstr "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" msgstr "" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "%s ji hev nehate veçirandin" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Sub-process %s received signal %u." +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" +#: apt-private/acqprogress.cc:66 +msgid "Hit " msgstr "" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Di girtina pelî de pirsgirêkek derket" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Anîn:" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Nikarî pelê %s veke" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Çewt" + +#: apt-private/acqprogress.cc:146 #, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Nikarî pelê %s veke" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s hatine anîn..." -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "" +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Dixebite]" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " +#: apt-private/acqprogress.cc:297 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "read, still have %llu to read but none left" +msgid "No mirror file '%s' found " msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, fuzzy, c-format +msgid "Can not read mirror file '%s'" +msgstr "Nikarî pelê %s veke" + +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nikarî pelê %s veke" + +#: methods/mirror.cc:445 #, c-format -msgid "write, still have %llu to write but couldn't" +msgid "[Mirror: %s]" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Di girtina pelî de pirsgirêkek derket" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Di girtina pelî de pirsgirêkek derket" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Girêdan zû hatiye girtin" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Di girtina pelî de pirsgirêkek derket" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." msgstr "" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Çewtî!" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Çêbû" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Çêbû" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" +#: dselect/update:30 +msgid "Merging available information" msgstr "" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nikarî li %s biguherîne" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "%s venebû" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: apt-inst/filelist.cc:459 #, fuzzy -msgid "Unable to synchronize mmap" +msgid "Failed to allocate diversion" msgstr "%s venebû" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Nivîsîna pelê %s biserneket" - -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +msgid "Double add of diversion %s -> %s" msgstr "" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 -#, fuzzy, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nivîsandin ji bo %s ne pêkane" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Rêça %s zêde dirêj e" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" msgstr "" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:142 #, c-format -msgid "Unrecognized type abbreviation: '%c'" +msgid "The directory %s is diverted" msgstr "" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:152 #, c-format -msgid "Opening configuration file %s" +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +#, fuzzy +msgid "The diversion path is too long" +msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." +msgid "Failed to stat %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Malformed tag" +msgid "Failed to rename %s to %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" +msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Rêç zêde dirêj e" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" +msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Included from here" +msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:498 +#, fuzzy, c-format +msgid "Unable to stat %s" +msgstr "Nivîsandin ji bo %s ne pêkane" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "" +msgid "Failed to write file %s" +msgstr "Nivîsîna pelê %s biserneket" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" +msgid "Failed to close file %s" +msgstr "Girtina pelê %s biserneket" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" +msgid "This is not a valid DEB archive, missing '%s' member" msgstr "" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Sazkirin tê betalkirin." - -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Command line option '%c' [from %s] is not known." +msgid "Internal error, could not locate member %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" msgstr "" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" msgstr "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" msgstr "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +msgid "Invalid archive member header %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" msgstr "" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opsiyona '%s' zêde dirêj e" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arşîv zêde kin e" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" msgstr "" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:124 +#, fuzzy +msgid "Failed to create pipes" +msgstr "%s ji hev nehate veçirandin" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Xebitandina gzip biserneket" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" +msgid "Unknown TAR header type %u, member %s" msgstr "" #: cmdline/apt-extracttemplates.cc:224 @@ -3315,7 +3320,7 @@ msgstr "" msgid "Problem unlinking %s" msgstr "" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" diff --git a/po/lt.po b/po/lt.po index 75f67ece4..e523d0d48 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n" "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n" @@ -16,3041 +16,3047 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2008-08-02 05:04+0000\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paketas %s versijos numeriu %s turi netenkinamą priklausomybę:\n" - -#: cmdline/apt-cache.cc:277 -#, fuzzy -msgid "Total package names: " -msgstr "Visi paketų pavadinimai: " - -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Visi paketų pavadinimai: " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " NormalÅ«s paketai: " - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " VirtualÅ«s paketai: " - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pavieniai virtualÅ«s paketai: " - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " MiÅ¡rÅ«s virtualÅ«s paketai: " - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " TrÅ«ksta: " - -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Viso skirtingų versijų: " - -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Viso skirtingų apraÅ¡ymų: " - -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Viso priklausomybių: " +msgid "Clean of %s is not supported" +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Viso versijų/failų santykių yra: " +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#, c-format +msgid "Unable to read %s" +msgstr "Nepavyko perskaityti %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Viso apraÅ¡ymų/failų santykių yra: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Nepavyko pakeisti į %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" msgstr "" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" msgstr "" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "Package file %s is out of sync." +msgid "Wrote %i records.\n" msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Paketų nerasta" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Unable to locate package %s" -msgstr "Nepavyko rasti paketo %s" +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Paketų failai:" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "MaiÅ¡os sumos nesutapimas" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." msgstr "" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "SuriÅ¡ti paketai:" - -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nerasta)" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Ä®diegta: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidatas: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Ä®dėkite diską „%s“ į įrenginį „%s“ ir paspauskite Enter." -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nėra)" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Nepavyko perskaityti arba atverti paketų sąraÅ¡o arba bÅ«klės failo." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketo susiejimai: " +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Greičiausiai norėsite paleisti „apt-get update“, kad Å¡ios problemos bÅ«tų " +"iÅ¡taisytos" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versijų lentelė:" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nepavyko perskaityti Å¡altinių sąraÅ¡o." -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" msgstr "" -#: cmdline/apt-cache.cc:1749 -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" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" msgstr "" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" msgstr "" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "PraÅ¡ome įdėti diską į įrenginį ir paspausti Enter" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Nepavyko pervadinti %s į %s" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Pakartokite Å¡itą procesą su kitais CD savo rinkinyje." +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Priklauso" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parametrai nurodyti ne poromis" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "PrieÅ¡priklauso" -#: cmdline/apt-config.cc:89 -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 "" -"Panaudojimas: apt-config [parametrai] komanda\n" -"\n" -"apt-config yra paprastas įrankis nuskaityti APT konfigÅ«racijos failui\n" -"\n" -"Komandos:\n" -" shell - Shell rėžimas\n" -" dump - Parodyti konfigÅ«raciją\n" -"\n" -"Parinktys:\n" -" -h Å is pagalbos ekranas.\n" -" -c=? Nuskaityti pateiktą konfigÅ«racijos failą\n" -" -o=? Nurodyti tam tikrą konfigÅ«racijos parametrą, pvz -o dir::cache=/tmp\n" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "SiÅ«lo" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nepavyko rasti paketo %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Rekomenduoja" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nepavyko rasti paketo %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Konfliktuoja" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nepavyko rasti paketo %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Pakeičia" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Pakeičia" + +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Sugadina" + +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" msgstr "" -#: cmdline/apt-get.cc:423 +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "Svarbu" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "privaloma" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standartinis" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "nebÅ«tinas" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "papildomas" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "Index file type '%s' is not supported" msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 #, c-format -msgid "Couldn't find package %s" -msgstr "Nepavyko rasti paketo %s" +msgid "Regex compilation error - %s" +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Klaida apdorojant turinį %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Vidinė klaida, problemos sprendimas kažką sugadino" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nepavyko užrakinti parsiuntimų aplanko" - -#: cmdline/apt-get.cc:726 -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ą" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Nepavyko surasti iÅ¡eities teksto paketo, skirto %s" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Praleidžiama jau parsiųsta byla „%s“\n" +msgid "Couldn't stat source package list %s" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nepavyko nustatyti %s laisvos vietos" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Skaitomi paketų sąraÅ¡ai" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Neturite pakankamai laisvos vietos %s" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +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:891 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Reikia parsiųsti %sB/%sB iÅ¡eities archyvų.\n" +msgid "Unable to write to %s" +msgstr "Nepavyko įraÅ¡yti į %s" -#. 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Reikia parsiųsti %sB iÅ¡eities archyvų.\n" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Parsiunčiamas archyvas %s\n" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nepavyko gauti kai kurių arhcyvų." +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Pavyko parsiųsti tik parsiuntimo režime" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Jau iÅ¡pakuotas archyvas %s praleidžiama\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Nepavyko įvykdyti iÅ¡pakavimo komandos „%s“\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "MaiÅ¡os sumos nesutapimas" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Klaida procese-palikuonyje" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Neatitinka dydžiai" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "BÅ«tina nurodyti bent vieną paketą, kuriam norite įvykdyti builddeps" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Klaidingas veiksmas %s" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nepavyko gauti kÅ«rimo-priklausomybių informacijos paketui %s" - -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "" - -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nepavyko atverti DB failo %s: %s" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -"%s priklausomybė %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"%s priklausomybė %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -"Nepavyko patenkinti %s priklausomybės %s paketui: Ä®diegtas paketas %s yra " -"per naujas" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"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 priklausomybė %s paketui negali bÅ«ti patenkinama, nes nėra tinkamos " -"versijos %s paketo" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG klaida: %s: %s" + +#: apt-pkg/acquire-item.cc:1859 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 priklausomybė %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Nepavyko patenkinti %s priklausomybės %s: %s" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Build-dependencies for %s could not be satisfied." +msgid "" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Jungiamasi prie %s (%s)" +msgid "List directory %spartial is missing." +msgstr "TrÅ«ksta aplanko „%s“" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Palaikomi moduliai:" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "TrÅ«ksta aplanko „%s“" -#: cmdline/apt-get.cc:1632 -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 "" +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Nepavyko užrakinti sąraÅ¡o aplanko" -#: cmdline/apt-helper.cc:35 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Parsiunčiamas %li failas iÅ¡ %li (liko %s)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Parsiunčiamas %li failas iÅ¡ %li" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Nepavyko parsiųsti %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 #, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "BÅ«tina nurodyti bent vieną paketą, kad parsiųsti jo iÅ¡eities tekstą" +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Kai kurių indeksų failų nepavyko parsiųsti, jie buvo ignoruoti arba vietoje " +"jų panaudoti seni." -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/policy.cc:83 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "bet jis nėra įdiegtas" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ir taip jau yra naujausias.\n" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ir taip jau yra naujausias.\n" +msgid "Could not configure '%s'. " +msgstr "Nepavyko atverti failo %s" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/packagemanager.cc:583 #, c-format -msgid "Waited for %s but it wasn't there" +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 "" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Nepavyko atverti %s" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Atjungiamas CD-ROM...\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Naudojama CD-ROM prijungimo vieta %s\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Laukiama disko...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Prijungiamas CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifikuojama... " + +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" msgstr "" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -#: cmdline/apt.cc:47 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nepavyko perskaityti cdrom duomenų bazės %s" +msgid "Found label '%s'\n" +msgstr "Rasta žymė „%s“\n" -#: 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" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" msgstr "" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Klaidingas CD-ROM" - -#: methods/cdrom.cc:249 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nepavyko atjungti CD-ROM įrenginyje %s, galbÅ«t jis vis dar naudojamas." +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Å io disko pavadinimas: \n" +"„%s“\n" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Diskas nerastas." +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopijuojami paketų sąraÅ¡ai..." -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Failas nerastas" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "RaÅ¡omas naujas Å¡altinių sąraÅ¡as\n" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" msgstr "" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Jungiamasi" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Konstruojamas priklausomybių medis" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Galimos versijos" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Priklausomybių generavimas" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Skaitoma bÅ«senos informacija" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "The server refused the connection and said: %s" +msgid "Failed to open StateFile %s" msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "USER failed, server said: %s" +msgid "Failed to write temporary StateFile %s" msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "PASS failed, server said: %s" +msgid "Unable to parse package file %s (1)" msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" msgstr "" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "" +msgid "Release '%s' for '%s' was not found" +msgstr "Nebuvo rastas „%s“ leidimas paketui „%s“" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "" +msgid "Version '%s' for '%s' was not found" +msgstr "Nebuvo rasta „%s“ versija paketui „%s“" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Jungiamasi per ilgai" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nepavyko rasti paketo %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Nepavyko rasti užduoties %s" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Skaitymo klaida" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nepavyko rasti paketo %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nepavyko rasti paketo %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "RaÅ¡ymo klaida" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Nepavyko" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Nepavyko atverti DB failo %s: %s" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Pastaba: pažymimas %s vietoje %s\n" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Pastaba: pažymimas %s vietoje %s\n" -#: methods/ftp.cc:802 +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Nepavyko atverti DB failo %s: %s" + +#: apt-pkg/sourcelist.cc:127 #, c-format -msgid "Unknown address family %u (AF_*)" +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "EPRT failed, server said: %s" +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nepavyko atsiųsti failo, serveris atsakė „%s“" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Data transfer failed, server said '%s'" +msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Užklausti" - -#: methods/ftp.cc:1128 -msgid "Unable to invoke " +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: methods/connect.cc:76 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Jungiamasi prie %s (%s)" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" -#: methods/connect.cc:94 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "" +msgid "Opening %s" +msgstr "Atveriama %s" -#: methods/connect.cc:108 +#: apt-pkg/sourcelist.cc:371 #, 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" +msgid "Malformed line %u in source list %s (type)" +msgstr "" -#: methods/connect.cc:126 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nepavyko prisijungti prie %s:%s (%s)." +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "Connecting to %s" -msgstr "Jungiamasi prie %s" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "Ä®diegta %s" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nepavyko surasti vardo „%s“" +msgid "Configuring %s" +msgstr "KonfigÅ«ruojamas %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" +msgid "Removing %s" +msgstr "Å alinamas %s" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" +msgid "Completely removing %s" +msgstr "VisiÅ¡kai paÅ¡alintas %s" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "Noting disappearance of %s" msgstr "" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nepavyko prisijungti prie %s %s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "TrÅ«ksta aplanko „%s“" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Nepavyko atverti failo %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Nežinoma klaida kviečiant gpgv" +msgid "Preparing %s" +msgstr "RuoÅ¡iamas %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Å ie paraÅ¡ai buvo nevalidÅ«s:\n" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "IÅ¡pakuojamas %s" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "Å ių parašų nebuvo galima patikrinti, nes nėra vieÅ¡ojo rakto:\n" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "RuoÅ¡iamasi konfigÅ«ruoti %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Ä®diegta %s" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "RuoÅ¡iamasi %s paÅ¡alinimui" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "PaÅ¡alintas %s" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "RuoÅ¡iamasi visiÅ¡kai paÅ¡alinti %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Klaida bandant raÅ¡yti į failą" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "VisiÅ¡kai paÅ¡alintas %s" -#: methods/http.cc:621 -msgid "Select failed" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Prisijungimo laiko limitas baigėsi" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nepavyko įraÅ¡yti į %s" -#: methods/http.cc:649 -msgid "Error writing to output file" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Laukiama antraščių" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Prisijungti nepavyko" - -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Vidinė klaida" - -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Skaičiuojami atnaujinimai... " - -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Vidinė klaida, problemos sprendimas kažką sugadino" - -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Ä®vykdyta" - -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Taisomos priklausomybės..." +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nepavyko užrakinti sąraÅ¡o aplanko" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " nepavyko." +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nepavyko patenkinti priklausomybių" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: apt-private/private-cachefile.cc:102 -#, fuzzy -msgid "Unable to minimize the upgrade set" -msgstr "Nepavyko minimizuoti atnaujinimo rinkinio" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Ä®vykdyta" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Ä®vykdykite „apt-get -f install“, jei norite iÅ¡taisyti Å¡ias klaidas." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nepatenkintos priklausomybės. Bandykit naudoti -f." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" msgstr "" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Ä®diegtas]" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Ä®diegtas]" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nepavyko atverti rakinimo failo %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Ä®diegtas]" - -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Ä®diegtas]" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Nepavyko rezervuoti rakinimo failo %s" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "[upgradable from: %s]" +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Å ie paketai turi neįdiegtų priklausomybių:" - -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "but %s is installed" -msgstr "bet %s yra įdiegtas" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "but %s is to be installed" -msgstr "bet %s bus įdiegtas" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "tačiau jis negali bÅ«ti įdiegtas" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Procesas %s gavo segmentavimo klaidą" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "bet tai yra virtualus paketas" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Procesas %s gavo segmentavimo klaidą" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "bet jis nėra įdiegtas" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Procesas %s grąžino klaidos kodą (%u)" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "bet jis nebus įdiegtas" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Procesas %s netikėtai išėjo" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " arba" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "RaÅ¡ymo klaida" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Bus įdiegti Å¡ie NAUJI paketai:" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Klaida užveriant failą" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Bus PAÅ ALINTI Å¡ie paketai:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nepavyko atverti failo %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Å ių paketų atnaujinimas sulaikomas:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Nepavyko atverti failo %s" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Bus atnaujinti Å¡ie paketai:" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nepavyko sukurti subproceso IPC" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Bus PAKEISTI SENESNIAIS Å¡ie paketai:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nepavyko paleisti suspaudėjo " -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Bus pakeisti Å¡ie sulaikyti paketai:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Skaitymo klaida" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "%s (due to %s) " -msgstr "%s (dėl %s) " - -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +msgid "read, still have %llu to read but none left" msgstr "" -"Ä®spėjimas: Å ie bÅ«tini paketai bus paÅ¡alinti.\n" -"Tai NETURĖTŲ bÅ«ti daroma, kol tiksliai nežinote ką darote!" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu atnaujinti, %lu naujai įdiegti, " +msgid "write, still have %llu to write but couldn't" +msgstr "" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu įdiegti iÅ¡ naujo, " +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Klaida užveriant failą" -#: apt-private/private-output.cc:700 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu pasendinti, " +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Klaida sinchronizuojant failą" -#: apt-private/private-output.cc:702 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu bus paÅ¡alinta ir %lu neatnaujinta.\n" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Klaida užveriant failą" + +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Klaida sinchronizuojant failą" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nepilnai įdiegti ar paÅ¡alinti.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Klaida!" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[T/n]" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Baigta" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[t/N]" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "T" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Baigta" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" msgstr "" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Regex compilation error - %s" +msgid "Couldn't duplicate file descriptor %i" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Atnaujinimo komandai argumentų nereikia" - -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Couldn't make mmap of %llu bytes" +msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Nepavyko atverti %s" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Nepavyko pakeisti į %s" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Couldn't make mmap of %lu bytes" +msgstr "" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Nepavyko patikrinti %s" + +#: 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 "" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Reikia paÅ¡alinti paketus, tačiau Å¡alinimas iÅ¡jungtas." +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" msgstr "" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "Keista... Dydis neatitinka, ParaÅ¡ykite laiÅ¡ką apt@packages.debian.org" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Reikia parsiųsti %sB/%sB archyvų.\n" +msgid "Unrecognized type abbreviation: '%c'" +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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Reikia parsiųsti %sB archyvų.\n" +msgid "Opening configuration file %s" +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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po Å¡ios operacijos bus naudojama %sB papildomos disko vietos.\n" +msgid "Syntax error %s:%u: Block starts with no name." +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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Po Å¡ios operacijos bus atlaisvinta %sB disko vietos.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s nėra pakankamai laisvos vietos." +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Atsirado problemų ir -y buvo panaudotas be --force-yes" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Taip, daryk kaip liepiu!" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -"Bandote atlikti tikėtinai pavojingą veiksmą.\n" -"Jei norite tęsti, įveskite frazę „%s“\n" -" ?] " -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Nutraukti." +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Ar norite tęsti?" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Nepavyko parsiųsti kai kurių failų" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Diegimas nutraukiamas." -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." msgstr "" -"Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ " -"arba pabandykite su parametru --fix-missing?" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Nepavyko pataisyti dingusių paketų." +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Diegimas nutraukiamas." +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Parametrui %s reikia argumento." -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" msgstr "" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Å i informacija gali padėti iÅ¡spręsti Å¡ią situaciją:" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Klaidingas veiksmas %s" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paketas %s versijos numeriu %s turi netenkinamą priklausomybę:\n" -#: apt-private/private-install.cc:512 +#: cmdline/apt-cache.cc:277 #, fuzzy -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] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebėra reikalingi:" -msgstr[1] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebėra reikalingi:" - -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebėra reikalingi:" -msgstr[1] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebėra reikalingi:" +msgid "Total package names: " +msgstr "Visi paketų pavadinimai: " -#: apt-private/private-install.cc:518 +#: cmdline/apt-cache.cc:279 #, 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“" +msgid "Total package structures: " +msgstr "Visi paketų pavadinimai: " -#: apt-private/private-install.cc:612 -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-cache.cc:319 +msgid " Normal packages: " +msgstr " NormalÅ«s paketai: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be " -"nurodytų paketų (arba nurodykite iÅ¡eitį)." +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " VirtualÅ«s paketai: " -#: apt-private/private-install.cc:628 -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 "" -"Nepavyko įdiegti kai kurių paketų. Tai gali reikÅ¡ti, kad jÅ«s\n" -"paprašėte neįmanomo dalyko, arba, jei jÅ«s naudojate nestabilų\n" -"leidimą, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n" -"paÅ¡alinti iÅ¡ \"Incoming\" aplanko." +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pavieniai virtualÅ«s paketai: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Sugadinti paketai" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " MiÅ¡rÅ«s virtualÅ«s paketai: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Bus įdiegti Å¡ie papildomi paketai:" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " TrÅ«ksta: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "SiÅ«lomi paketai:" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Viso skirtingų versijų: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Rekomenduojami paketai:" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Viso skirtingų apraÅ¡ymų: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Viso priklausomybių: " + +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Viso versijų/failų santykių yra: " + +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Viso apraÅ¡ymų/failų santykių yra: " + +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " msgstr "" -"Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n" -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " msgstr "" -"Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Pakartotinas %s įdiegimas neįmanomas, jo nepavyksta parsiųsti.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "" -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ir taip jau yra naujausias.\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "" -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Pažymėta versija %s (%s) paketui %s\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "" -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Pažymėta versija %s (%s) paketui %s\n" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Paketas %s nėra įdiegtas, todėl nebuvo paÅ¡alintas\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Paketų nerasta" -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paketas %s nėra įdiegtas, todėl nebuvo paÅ¡alintas\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "" -#: apt-private/private-main.cc:32 -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!" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "DĖMESIO: Å ie paketai negali bÅ«ti autentifikuoti!" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Paketų failai:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nepavyko autentikuoti kai kurių paketų" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "SuriÅ¡ti paketai:" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Ä®diegti Å¡iuos paketus be patvirtinimo?" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nerasta)" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Nepavyko parsiųsti %s %s\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Ä®diegta: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nepavyko pervadinti %s į %s" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidatas: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nėra)" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paketo susiejimai: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Imamas " +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versijų lentelė:" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Gauti:" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ignoruotas " +#: cmdline/apt-cache.cc:1749 +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 "" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Klaida " +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Parsiųsta %sB iÅ¡ %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "PraÅ¡ome įdėti diską į įrenginį ir paspausti Enter" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Vykdoma]" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Nepavyko pervadinti %s į %s" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-cdrom.cc:178 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Laikmenos keitimas: įdėkite diską, pažymėtą\n" -" „%s“,\n" -"į įrenginį „%s“ ir paspauskite enter\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Nepavyko perskaityti %s" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Pakartokite Å¡itą procesą su kitais CD savo rinkinyje." -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Nepavyko pakeisti į %s" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parametrai nurodyti ne poromis" -#. 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 " +#: cmdline/apt-config.cc:89 +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 "" +"Panaudojimas: apt-config [parametrai] komanda\n" +"\n" +"apt-config yra paprastas įrankis nuskaityti APT konfigÅ«racijos failui\n" +"\n" +"Komandos:\n" +" shell - Shell rėžimas\n" +" dump - Parodyti konfigÅ«raciją\n" +"\n" +"Parinktys:\n" +" -h Å is pagalbos ekranas.\n" +" -c=? Nuskaityti pateiktą konfigÅ«racijos failą\n" +" -o=? Nurodyti tam tikrą konfigÅ«racijos parametrą, pvz -o dir::cache=/tmp\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nepavyko atverti failo %s" +msgid "Can not find a package for architecture '%s'" +msgstr "Nepavyko rasti paketo %s" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nepavyko atverti failo %s" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nepavyko rasti paketo %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Nepavyko subprocesui sukurti IPC gijos" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nepavyko rasti paketo %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Blogi standartiniai nustatymai!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Jei norite tęsti, spauskite Enter." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "IÅ¡pakuojant įvyko klaidų. Bandysiu konfigÅ«ruoti" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Nepavyko rasti paketo %s" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "paketus, kurie buvo įdiegti. Tai gali sukelti pasikartojančias klaidas" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"arba klaidas, atsiradusias dėl trÅ«kstamų priklausomybių. Viskas gerai, tik " -"klaidos," +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"esančios aukščiau Å¡ios žinutės, yra svarbios. PraÅ¡ome jas iÅ¡taisyti ir vėl " -"paleisti [I]nstall" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Sujungiama turima informaija" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Vidinė klaida, problemos sprendimas kažką sugadino" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nepavyko užrakinti parsiuntimų aplanko" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "" +#: cmdline/apt-get.cc:726 +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ą" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Nepavyko surasti iÅ¡eities teksto paketo, skirto %s" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Praleidžiama jau parsiųsta byla „%s“\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "Nepavyko nustatyti %s laisvos vietos" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The path %s is too long" -msgstr "Kelias %s per ilgas" +msgid "You don't have enough free space in %s" +msgstr "Neturite pakankamai laisvos vietos %s" -#: apt-inst/extract.cc:132 +#. 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:891 #, c-format -msgid "Unpacking %s more than once" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Reikia parsiųsti %sB/%sB iÅ¡eities archyvų.\n" -#: apt-inst/extract.cc:142 +#. 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:896 #, c-format -msgid "The directory %s is diverted" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "Reikia parsiųsti %sB iÅ¡eities archyvų.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" +msgid "Fetch source %s\n" +msgstr "Parsiunčiamas archyvas %s\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nepavyko gauti kai kurių arhcyvų." -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Pavyko parsiųsti tik parsiuntimo režime" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to stat %s" -msgstr "Nepavyko patikrinti %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Jau iÅ¡pakuotas archyvas %s praleidžiama\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nepavyko pervadinti %s į %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Nepavyko įvykdyti iÅ¡pakavimo komandos „%s“\n" + +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:991 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "" +msgid "Build command '%s' failed.\n" +msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Klaida procese-palikuonyje" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Kelias per ilgas" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "BÅ«tina nurodyti bent vieną paketą, kuriam norite įvykdyti builddeps" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Overwrite package match with no version for %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "" +msgid "Unable to get build-dependency information for %s" +msgstr "Nepavyko gauti kÅ«rimo-priklausomybių informacijos paketui %s" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Unable to stat %s" +msgid "%s has no build depends.\n" msgstr "" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" +"%s priklausomybė %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Failed to close file %s" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" +"%s priklausomybė %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" +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" -#: apt-inst/deb/debfile.cc:132 -#, c-format -msgid "Internal error, could not locate member %s" -msgstr "Vidinė klaida, nepavyko aptikti nario %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" +"%s priklausomybė %s paketui negali bÅ«ti patenkinama, nes nėra tinkamos " +"versijos %s paketo" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" +"%s priklausomybė %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Nepavyko patenkinti %s priklausomybės %s: %s" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Invalid archive member header %s" +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archyvas per trumpas" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Jungiamasi prie %s (%s)" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Nepavyko perskaityti archyvo antraščių" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Palaikomi moduliai:" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" +#: cmdline/apt-get.cc:1632 +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 "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "BÅ«tina nurodyti bent vieną paketą, kad parsiųsti jo iÅ¡eities tekstą" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Sugadintas archyvas" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar kontrolinė suma klaidinga, archyvas sugadintas" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "bet jis nėra įdiegtas" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Nežinomas TAR antraÅ¡tės tipas %u. narys %s" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ir taip jau yra naujausias.\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ir taip jau yra naujausias.\n" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" + +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Nepavyko atverti %s" + +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: methods/cdrom.cc:203 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "" +msgid "Unable to read the cdrom database %s" +msgstr "Nepavyko perskaityti cdrom duomenų bazės %s" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" +#: 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 "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Klaidingas CD-ROM" -#: apt-pkg/indexcopy.cc:515 +#: methods/cdrom.cc:249 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "" - -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "MaiÅ¡os sumos nesutapimas" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nepavyko atjungti CD-ROM įrenginyje %s, galbÅ«t jis vis dar naudojamas." -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Diskas nerastas." -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Failas nerastas" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" msgstr "" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Ä®dėkite diską „%s“ į įrenginį „%s“ ir paspauskite Enter." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Nepavyko perskaityti arba atverti paketų sąraÅ¡o arba bÅ«klės failo." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" msgstr "" -"Greičiausiai norėsite paleisti „apt-get update“, kad Å¡ios problemos bÅ«tų " -"iÅ¡taisytos" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nepavyko perskaityti Å¡altinių sąraÅ¡o." -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" msgstr "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Jungiamasi" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" msgstr "" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +msgid "The server refused the connection and said: %s" msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Priklauso" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PrieÅ¡priklauso" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "SiÅ«lo" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Rekomenduoja" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Konfliktuoja" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Pakeičia" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Pakeičia" - -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Sugadina" - -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "Svarbu" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "privaloma" - -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standartinis" - -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "nebÅ«tinas" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "papildomas" - -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" +msgid "PASS failed, server said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." 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:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Klaida apdorojant turinį %s" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Jungiamasi per ilgai" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:350 +msgid "Server closed the connection" msgstr "" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." msgstr "" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" msgstr "" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Skaitomi paketų sąraÅ¡ai" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Nepavyko įraÅ¡yti į %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Nepavyko" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." msgstr "" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" msgstr "" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:802 #, c-format -msgid "rename failed, %s (%s -> %s)." +msgid "Unknown address family %u (AF_*)" msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "MaiÅ¡os sumos nesutapimas" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Neatitinka dydžiai" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Klaidingas veiksmas %s" - -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:811 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +msgid "EPRT failed, server said: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nepavyko atverti DB failo %s: %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" msgstr "" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" msgstr "" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:890 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +msgid "Unable to fetch file, server said '%s'" +msgstr "Nepavyko atsiųsti failo, serveris atsakė „%s“" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" msgstr "" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:935 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +msgid "Data transfer failed, server said '%s'" msgstr "" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "GPG klaida: %s: %s" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Užklausti" -#: apt-pkg/acquire-item.cc:1867 -#, 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)" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " msgstr "" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:76 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Jungiamasi prie %s (%s)" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:87 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:94 #, c-format -msgid "Vendor block %s contains no fingerprint" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "TrÅ«ksta aplanko „%s“" - -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "TrÅ«ksta aplanko „%s“" - -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Nepavyko užrakinti sąraÅ¡o aplanko" - -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:100 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Parsiunčiamas %li failas iÅ¡ %li (liko %s)" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:108 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Parsiunčiamas %li failas iÅ¡ %li" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Kai kurių indeksų failų nepavyko parsiųsti, jie buvo ignoruoti arba vietoje " -"jų panaudoti seni." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Nepavyko prisijungti prie %s:%s (%s), prisijungimas per ilgai užtruko" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Nepavyko prisijungti prie %s:%s (%s)." -#: apt-pkg/policy.cc:83 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" +msgid "Connecting to %s" +msgstr "Jungiamasi prie %s" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "" +msgid "Could not resolve '%s'" +msgstr "Nepavyko surasti vardo „%s“" -#: apt-pkg/policy.cc:444 +#: methods/connect.cc:205 #, c-format -msgid "Did not understand pin type %s" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: methods/connect.cc:211 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Nepavyko atverti failo %s" +msgid "Unable to connect to %s:%s:" +msgstr "Nepavyko prisijungti prie %s %s:" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:168 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." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Atjungiamas CD-ROM...\n" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" -#: apt-pkg/cdrom.cc:586 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Naudojama CD-ROM prijungimo vieta %s\n" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Laukiama disko...\n" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Nežinoma klaida kviečiant gpgv" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Prijungiamas CD-ROM...\n" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Å ie paraÅ¡ai buvo nevalidÅ«s:\n" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifikuojama... " +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "Å ių parašų nebuvo galima patikrinti, nes nėra vieÅ¡ojo rakto:\n" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" msgstr "" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" msgstr "" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "" + +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Klaida bandant raÅ¡yti į failą" + +#: methods/http.cc:621 +msgid "Select failed" +msgstr "" + +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Prisijungimo laiko limitas baigėsi" + +#: methods/http.cc:649 +msgid "Error writing to output file" msgstr "" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Rasta žymė „%s“\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Laukiama antraščių" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" +#: methods/server.cc:109 +msgid "Bad header line" msgstr "" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" msgstr "" -"Å io disko pavadinimas: \n" -"„%s“\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopijuojami paketų sąraÅ¡ai..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "RaÅ¡omas naujas Å¡altinių sąraÅ¡as\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" msgstr "" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: methods/server.cc:220 +msgid "Unknown date format" msgstr "" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: methods/server.cc:489 +msgid "Bad header data" msgstr "" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Konstruojamas priklausomybių medis" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Prisijungti nepavyko" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Galimos versijos" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Vidinė klaida" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Priklausomybių generavimas" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Skaičiuojami atnaujinimai... " -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Skaitoma bÅ«senos informacija" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Ä®vykdyta" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-list.cc:164 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Taisomos priklausomybės..." -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Nebuvo rastas „%s“ leidimas paketui „%s“" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " nepavyko." -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Nebuvo rasta „%s“ versija paketui „%s“" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nepavyko patenkinti priklausomybių" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Nepavyko rasti užduoties %s" +#: apt-private/private-cachefile.cc:102 +#, fuzzy +msgid "Unable to minimize the upgrade set" +msgstr "Nepavyko minimizuoti atnaujinimo rinkinio" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nepavyko rasti paketo %s" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Ä®vykdyta" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Ä®vykdykite „apt-get -f install“, jei norite iÅ¡taisyti Å¡ias klaidas." + +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nepatenkintos priklausomybės. Bandykit naudoti -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nepavyko rasti paketo %s" +msgid "[installed,upgradable to: %s]" +msgstr " [Ä®diegtas]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Ä®diegtas]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Ä®diegtas]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Ä®diegtas]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "bet %s yra įdiegtas" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "bet %s bus įdiegtas" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Nepavyko atverti DB failo %s: %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "tačiau jis negali bÅ«ti įdiegtas" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Pastaba: pažymimas %s vietoje %s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "bet tai yra virtualus paketas" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "bet jis nėra įdiegtas" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Pastaba: pažymimas %s vietoje %s\n" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "bet jis nebus įdiegtas" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Nepavyko atverti DB failo %s: %s" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " arba" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Å ie paketai turi neįdiegtų priklausomybių:" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Bus įdiegti Å¡ie NAUJI paketai:" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Bus PAÅ ALINTI Å¡ie paketai:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Å ių paketų atnaujinimas sulaikomas:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Bus atnaujinti Å¡ie paketai:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Bus PAKEISTI SENESNIAIS Å¡ie paketai:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Bus pakeisti Å¡ie sulaikyti paketai:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (dėl %s) " -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"Ä®spėjimas: Å ie bÅ«tini paketai bus paÅ¡alinti.\n" +"Tai NETURĖTŲ bÅ«ti daroma, kol tiksliai nežinote ką darote!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu atnaujinti, %lu naujai įdiegti, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" +msgid "%lu reinstalled, " +msgstr "%lu įdiegti iÅ¡ naujo, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Atveriama %s" +msgid "%lu downgraded, " +msgstr "%lu pasendinti, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu bus paÅ¡alinta ir %lu neatnaujinta.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nepilnai įdiegti ar paÅ¡alinti.\n" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[T/n]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "Ä®diegta %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[t/N]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "KonfigÅ«ruojamas %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "T" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Å alinamas %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "VisiÅ¡kai paÅ¡alintas %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Atnaujinimo komandai argumentų nereikia" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" -msgstr "" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-private/private-show.cc:156 #, c-format -msgid "Directory '%s' missing" -msgstr "TrÅ«ksta aplanko „%s“" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Nepavyko atverti failo %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "RuoÅ¡iamas %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "IÅ¡pakuojamas %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Reikia paÅ¡alinti paketus, tačiau Å¡alinimas iÅ¡jungtas." -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "RuoÅ¡iamasi konfigÅ«ruoti %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Ä®diegta %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "Keista... Dydis neatitinka, ParaÅ¡ykite laiÅ¡ką apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Preparing for removal of %s" -msgstr "RuoÅ¡iamasi %s paÅ¡alinimui" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Reikia parsiųsti %sB/%sB archyvų.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Removed %s" -msgstr "PaÅ¡alintas %s" +msgid "Need to get %sB of archives.\n" +msgstr "Reikia parsiųsti %sB archyvų.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Preparing to completely remove %s" -msgstr "RuoÅ¡iamasi visiÅ¡kai paÅ¡alinti %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po Å¡ios operacijos bus naudojama %sB papildomos disko vietos.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Completely removed %s" -msgstr "VisiÅ¡kai paÅ¡alintas %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po Å¡ios operacijos bus atlaisvinta %sB disko vietos.\n" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:200 +#, c-format +msgid "You don't have enough free space in %s." +msgstr "%s nėra pakankamai laisvos vietos." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nepavyko įraÅ¡yti į %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Atsirado problemų ir -y buvo panaudotas be --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Taip, daryk kaip liepiu!" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Bandote atlikti tikėtinai pavojingą veiksmą.\n" +"Jei norite tęsti, įveskite frazę „%s“\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Nutraukti." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Ar norite tęsti?" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Nepavyko parsiųsti kai kurių failų" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ " +"arba pabandykite su parametru --fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nepavyko pataisyti dingusių paketų." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Diegimas nutraukiamas." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:366 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" - -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nepavyko užrakinti sąraÅ¡o aplanko" +"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] "" +msgstr[1] "" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Å i informacija gali padėti iÅ¡spręsti Å¡ią situaciją:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:513 +#, fuzzy +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] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebėra reikalingi:" +msgstr[1] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebėra reikalingi:" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" +#: apt-private/private-install.cc:517 +#, fuzzy, 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] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebėra reikalingi:" +msgstr[1] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebėra reikalingi:" + +#: apt-private/private-install.cc:519 +#, 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“" + +#: apt-private/private-install.cc:612 +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:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be " +"nurodytų paketų (arba nurodykite iÅ¡eitį)." -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" +#: apt-private/private-install.cc:638 +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 "" +"Nepavyko įdiegti kai kurių paketų. Tai gali reikÅ¡ti, kad jÅ«s\n" +"paprašėte neįmanomo dalyko, arba, jei jÅ«s naudojate nestabilų\n" +"leidimą, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n" +"paÅ¡alinti iÅ¡ \"Incoming\" aplanko." -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Nepavyko atverti rakinimo failo %s" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Sugadinti paketai" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Bus įdiegti Å¡ie papildomi paketai:" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Nepavyko rezervuoti rakinimo failo %s" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "SiÅ«lomi paketai:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Rekomenduojami paketai:" -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/private-install.cc:825 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" +"Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" +"Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n" -#: apt-pkg/contrib/fileutl.cc:421 +#: apt-private/private-install.cc:841 #, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Pakartotinas %s įdiegimas neįmanomas, jo nepavyksta parsiųsti.\n" -#: apt-pkg/contrib/fileutl.cc:824 +#: apt-private/private-install.cc:846 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Procesas %s gavo segmentavimo klaidą" +msgid "%s is already the newest version.\n" +msgstr "%s ir taip jau yra naujausias.\n" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-install.cc:894 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Procesas %s gavo segmentavimo klaidą" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Pažymėta versija %s (%s) paketui %s\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Procesas %s grąžino klaidos kodą (%u)" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Pažymėta versija %s (%s) paketui %s\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Procesas %s netikėtai išėjo" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Paketas %s nėra įdiegtas, todėl nebuvo paÅ¡alintas\n" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-install.cc:947 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Klaida užveriant failą" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Paketas %s nėra įdiegtas, todėl nebuvo paÅ¡alintas\n" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Nepavyko atverti failo %s" +#: apt-private/private-main.cc:32 +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 "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Nepavyko atverti failo %s" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "DĖMESIO: Å ie paketai negali bÅ«ti autentifikuoti!" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nepavyko sukurti subproceso IPC" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nepavyko paleisti suspaudėjo " +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nepavyko autentikuoti kai kurių paketų" -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Ä®diegti Å¡iuos paketus be patvirtinimo?" + +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Nepavyko pervadinti %s į %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "read, still have %llu to read but none left" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Klaida užveriant failą" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Imamas " -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Klaida sinchronizuojant failą" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Gauti:" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Klaida užveriant failą" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ignoruotas " -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Klaida sinchronizuojant failą" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Klaida " -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Klaida!" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Parsiųsta %sB iÅ¡ %s (%sB/s)\n" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Baigta" +msgid " [Working]" +msgstr " [Vykdoma]" + +#: apt-private/acqprogress.cc:297 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Laikmenos keitimas: įdėkite diską, pažymėtą\n" +" „%s“,\n" +"į įrenginį „%s“ ir paspauskite enter\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Baigta" +msgid "Can not read mirror file '%s'" +msgstr "Nepavyko atverti failo %s" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nepavyko atverti failo %s" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" +msgid "[Mirror: %s]" msgstr "" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Nepavyko subprocesui sukurti IPC gijos" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" msgstr "" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Nepavyko atverti %s" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Blogi standartiniai nustatymai!" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Nepavyko pakeisti į %s" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Jei norite tęsti, spauskite Enter." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#: apt-pkg/contrib/mmap.cc:322 +#: dselect/install:102 #, fuzzy -msgid "Failed to truncate file" -msgstr "Nepavyko patikrinti %s" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "IÅ¡pakuojant įvyko klaidų. Bandysiu konfigÅ«ruoti" -#: 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)" +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "paketus, kurie buvo įdiegti. Tai gali sukelti pasikartojančias klaidas" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"arba klaidas, atsiradusias dėl trÅ«kstamų priklausomybių. Viskas gerai, tik " +"klaidos," -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: dselect/install:105 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"esančios aukščiau Å¡ios žinutės, yra svarbios. PraÅ¡ome jas iÅ¡taisyti ir vėl " +"paleisti [I]nstall" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sujungiama turima informaija" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" msgstr "" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" msgstr "" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." +msgid "Double add of diversion %s -> %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" +msgid "Duplicate conf file %s/%s" msgstr "" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "" +msgid "The path %s is too long" +msgstr "Kelias %s per ilgas" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "Unpacking %s more than once" msgstr "" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" +msgid "The directory %s is diverted" msgstr "" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" msgstr "" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" +msgid "Failed to stat %s" +msgstr "Nepavyko patikrinti %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" +msgid "Failed to rename %s to %s" +msgstr "Nepavyko pervadinti %s į %s" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" msgstr "" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Diegimas nutraukiamas." +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Kelias per ilgas" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." +msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" +msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" +msgid "Unable to stat %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Parametrui %s reikia argumento." +msgid "Failed to write file %s" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +msgid "Failed to close file %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" +msgid "This is not a valid DEB archive, missing '%s' member" msgstr "" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" +msgid "Internal error, could not locate member %s" +msgstr "Vidinė klaida, nepavyko aptikti nario %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" msgstr "" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." +msgid "Invalid archive member header %s" msgstr "" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archyvas per trumpas" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Nepavyko perskaityti archyvo antraščių" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Sugadintas archyvas" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar kontrolinė suma klaidinga, archyvas sugadintas" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Klaidingas veiksmas %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Nežinomas TAR antraÅ¡tės tipas %u. narys %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3403,7 +3409,7 @@ msgstr "Skaitymo klaida skaičiuojant MD5" msgid "Problem unlinking %s" msgstr "" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3458,6 +3464,10 @@ msgstr "" " -c=? Nuskaityti Å¡ią konfigÅ«racijos bylą\n" " -o=? Nurodyti savarankiÅ¡kas nuostatas, pvz.: -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Vidinė klaida, problemos sprendimas kažką sugadino" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s nėra tikras DEB paketas." diff --git a/po/mr.po b/po/mr.po index 82b3dd825..95a581a2a 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,3143 +6,3148 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada <sampadanakhare@gmail.com>\n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " "<janabhaaratii@cdacmumbai.in>\n" -"Language: \n" +"Language: mr\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" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "पॅकेज %s आवृती %s मध्ये एक अनोळखी डीईपी:आहे\n" +msgid "Unable to read %s" +msgstr "%s वाचण्यास असमर्थ" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "पॅकेजची सर्व नांवे: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "%s मध्ये बदलण्यास असमर्थ" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "पॅकेजची सर्व नांवे: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s स्टॅट करण्यात असमर्थ. " -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " सामान्य पॅकेजेस्: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " शुध्द आभासी पॅकेजेस्:" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " एकमेव आभासी पॅकेजेस्:" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "'%s' पॅकेजींग प्रणाली सहाय्यकारी नाही" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr "मिश्रित आभासी पॅकेजेस्:" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "योग्य असा पॅकेजिंग प्रणाली प्रकार निश्चित करण्यास असमर्थ " -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " हरवलेले/गहाळ: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i माहितीसंच लिहिले.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "एकूण स्पष्ट आवृत्या: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "एकूण स्पष्ट विवरणे: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "एकूण निर्भरता:" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "एकूण व्हीईआर/संचिका परस्पर संबंध:" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "एकूण विव/संचिका परस्पर संबंध:" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "हॅश बेरीज जुळत नाही" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "एकूण मॅपींगस् तरतूद: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "%s कार्यपध्दतीचा ड्राइव्हर सापडू शकला नाही. " -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "एकूण एकत्रित अक्षरसंच:" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "एकूण परावलंबित आवृत्ती अवकाश:" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "%s कार्यपध्दती योग्य रीतीने सुरु झालेली नाही" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "एकूण दुर्लक्षित अवकाश:" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "कृपया '%s' लेबल असलेली डिस्क '%s' या ड्राइव्हमध्ये ठेवा आणि एन्टर कळ दाबा." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "हिशेबात घेतलेली एकूण अवकाश(जागा):" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "पॅकेजच्या याद्या किंवा संचिकेची स्थिती स्पष्ट होऊ शकत नाही किंवा ती उघडू शकत नाही." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "पॅकेज संचिका %s सिंक्रोनाइज नाहीत" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "तुम्ही ह्या समस्यांचे निवारण करण्यासाठी apt-get update प्रोग्राम चालू करु शकता" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "पॅकेजेस सापडले नाहीत" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "उगमांच्या याद्या वाचता येणार नाहीत." -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "तुम्हाला फक्त एकच नमुना द्यावा लागेल" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "पॅकेज अस्थाई स्मृतिकोष" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल खराब झाली आहे" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल ही विजोड आवृत्ती आहे" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल खराब झाली आहे" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "पॅकेज %s शोधण्यास असमर्थ आहे" +msgid "This APT does not support the versioning system '%s'" +msgstr "'%s' आवृत्तीकरण प्रणालीला हे APT तांत्रिक मदत देऊ शकत नाही" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "पॅकेज संचिका:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "पॅकेज अस्थाई स्मृतीकोष वेगळ्या वास्तुविद्ये साठी बनवला गेला" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "दृतिका सिंक नाही,पॅकेज संचिका क्ष-संदर्भ करता येत नाही" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "अवलंबित" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "एकत्रित पॅकेजेस:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "पूर्व अवलंबित" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(मिळाले नाही)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "सुचवणे" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr "अधिष्ठापित केले:" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "शिफारस" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr "उमेदवार:" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "परस्परविरोध" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(कोणताच नाही)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "परत त्याठिकाणी आणा" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr "पॅकेज (पिन):" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "अप्रचलित" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr "आवृत्ती कोष्टक:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "तोडले" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s हे %s करिता %s %s वर संग्रहित\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"वापर: apt-cache [options] command\n" -" apt-cache [options] add file1 [file2 ...]\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"ऍप्टच्या द्वयंक कॅश संचिका कौशल्याने हाताळण्यासाठी, व त्यांमधील माहितीची विचारणा " -"करण्यासाठी ऍप्ट -कॅश हे निम्नस्तरीय साधन आहे।\n" -"\n" -"आज्ञावली\n" -" add - उगमस्थान कॅशमध्ये एक पॅकेज संचिका मिळवा \n" -" gencaches - पॅकेज व उगमस्थान कॅश या दोघांची बांधणी करा\n" -" showpkg - एकमेव पॅकेजसाठी काही सामान्य माहिती दाखवा\n" -" showsrc -उगमस्थानाचा माहितीसंच दाखवा\n" -" stats - काही पायाभूत आकडेवारी दाखवा\n" -" dump - संपूर्ण संचिका थोडक्यात दाखवा\n" -" dumpavail - उपलब्ध संचिका stdout मधे छापा\n" -" unmet - पुरी न झालेली परावलंबने दाखवा\n" -" search - regex नमुन्यासाठी पॅकेजची यादी शोधा\n" -" show - पॅकेजसाठी वाचनीय माहितीसंच दाखवा\n" -" depends -पॅकेजसाठी संस्करणपूर्व परावलंबन माहिती दाखवा\n" -" rdepends -पॅकेजसाठी अतिपरावलंबन माहिती दाखवा\n" -" pkgnames - सर्व पॅकेजेससाठी यादी तयार करा\n" -" dotty - GraphViz साठी पॅकेज आलेख निर्माण करा\n" -" xvcg-xvcg साठी पॅकेज आलेख निर्माण करा\n" -" policy - धोरण निर्धारणे दाखवा\n" -"\n" -"पर्याय : \n" -"-h -हा साह्याकारी मजकूर\n" -"-p=? पॅकेज कॅश \n" -"-s=? उगमस्थान कॅश \n" -"-q-प्रगतीनिदर्शक अकार्यान्वित करा \n" -"-i -न आढळलेल्या आज्ञेसाठी महत्त्वाचे विभाग दाखवा\n" -"-c=? ही संरचना संचिका वाचा\n" -"-o=? एखादा अहेतूक संरचना पर्याय निर्धारित करा उदा --o dir::cache=/tmp\n" -"अधिक माहितीसाठी apt-cache(8) and apt.conf(5) ची मॅन्युअल पृष्ठे पहा \n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "अत्यावश्यक" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "या तबकडीला कृपया नाव द्या जसे डेबियन २ एलआरएल तबकडी १" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "आवश्यक" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "कृपया तबकडी ड्राईव्हमध्ये ठेवून एंटर दाबा" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "मानक" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "एच्छिक" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "अधिक" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "तुमच्या संचामधील सर्व सीडीजसाठी याच कृतीची पुनरावृत्ती करा(हीच कृती करा)" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "चलितमूल्य जोडीने नाहीत" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "रिजेक्स कंपायलेशन त्रुटी -%s " -#: cmdline/apt-config.cc:89 -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 "" -"उपयोग : ऍप्ट-कॉन्फिग(पर्याय) आज्ञा \n" -"\n" -"ऍप्ट कन्फिग संचिता वाचण्यासाठी ऍप्ट-कन्फिग हे एक साधन आहे\n" -"\n" -"आज्ञावली : \n" -"शेल - शेल मोड \n" -"डंप - संरचना दाखवा \n" -"\n" -"पर्याय : \n" -" -h हा साह्याकारी मजकूर \n" -" -c= ? ही संरचना संचिका वाचा \n" -" -o=? एखदा अहेतुक संरचना पर्याय निर्धारित करा, उदा।eg -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "अस्थायी स्मृतिकोष मध्ये विसंगत आवृतीकरण प्रणाली आहे" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s (पॅकेज शोधतांना) प्रक्रिया करीत असतांना दोष आढळून आला" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही पॅकेज नांवांच्या संख्येची मर्यादा ओलांडली " +"आहे." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही आवृत्त्या संख्येची मर्यादा ओलांडली आहे." -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "अरेवा!, तुम्ही तर ह्या ऍप्टच्या कार्यक्षमतेपेक्षाही विवरण संख्येची मर्यादा ओलांडली आहे." -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" +"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही अवलंबित/विसंबून असलेल्या संख्येची मर्यादा " +"ओलांडली आहे." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "%s पॅकेज सापडू शकले नाही" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "अवलंबित/विसंबून असणाऱ्या संचिकांची प्रक्रिया करीत असतांना पॅकेज %s %s सापडले नाही " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" +msgid "Couldn't stat source package list %s" +msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "पॅकेज याद्या वाचत आहोत" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "तरतूद/पुरवलेल्या संचिका संग्रहित करीत आहे" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "%s मध्ये लिहिण्यास असमर्थ " -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "डाऊनलोड डिरेक्टरी कुलूपबंद करण्यास असमर्थ" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO त्रुटी उगम निवडक संचयस्थानात संग्रहित होत आहे" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "%s उगम पॅकेज शोधणे शक्य नाही/शोधण्यास असमर्थ आहे" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून द्या\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s मध्ये रिकामी जागा सांगू शकत नाही" +msgid "rename failed, %s (%s -> %s)." +msgstr "पुनर्नामांकन अयशस्वी, %s (%s -> %s)." -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "%s मध्ये पुरेशी जागा नाही" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "उगम अर्काईव्हज चा %sB/%sB घेण्याची गरज आहे.\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "उगम अर्काईव्हजचा %sB घेण्याची गरज आहे.\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "%s अवैध क्रिया" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "%s उगम घ्या\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "काही अर्काईव्हज आणण्यास असमर्थ." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "डाऊनलोड संपूर्ण आणि डाऊनलोड मध्ये फक्त पद्धती" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "पुढील कळ ओळखचिन्हांसाठी सार्वजनिक कळ उपलब्ध नाही:\n" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "%s मध्ये आधीच उघडलेल्या उगमातील उघडलेल्याला सोडून द्या किंवा वगळा\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "'%s' आज्ञा सुट्या करण्यास असमर्थ.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "बांधणी करणाऱ्या आज्ञा '%s' अयशस्वी.\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "चाईल्ड प्रक्रिया अयशस्वी" +#: apt-pkg/acquire-item.cc:1859 +#, 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 पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हाला हे पॅकेज स्वहस्ते " +"स्थिर/निश्चित करण्याची गरज आहे(हरवलेल्या आर्चमुळे) " -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "बिल्डेपस् कशासाठी ते पडताळण्यासाठी किमान एक पॅकेज सांगणे गरजेचे आहे" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"पॅकेज यादीची/सुचीची संचिका दूषित/खराब झालेली आहे. संचिका नाव नाही: पॅकेजकरीता क्षेत्र/" +"ठिकाण %s." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s साठी बांधणी डिपेंडन्सी माहिती मिळवण्यास असमर्थ" +msgid "Vendor block %s contains no fingerprint" +msgstr "विक्रेता गट %s मध्ये बोटाचे ठसे नाहीत" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s ला बांधणी डिपेंडन्स नाहीत.\n" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "संचयिका यादीत %s पार्शल हरवले आहे." -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" +msgid "Archives directory %spartial is missing." +msgstr "ऑर्काइव्ह संचयिका %spartial गायब आहे." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li ची %li(%s राहिलेले) संचिका पुन:प्राप्त करीत आहे" + +#: apt-pkg/acquire.cc:904 #, c-format +msgid "Retrieving file %li of %li" +msgstr "%li ची %li संचिका पुन:प्राप्त करीत आहे" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "%s %s आणणे असफल\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"काही अनुक्रमणिका संचयिका डाऊनलोड करण्यास असमर्थ,त्या दुर्लक्षित झाल्या, किंवा " +"त्याऐवजी जुन्या वापरल्या गेल्या." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "तुम्ही तुमच्या उगमस्थान यादीत URI घाला" + +#: apt-pkg/policy.cc:83 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "%s अवलंबित्व %s साठी पूर्ण होण्यास असमर्थ: संस्थापित पॅकेज %s खूपच नवीन आहे" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "पसंतीच्या संचिकेत अवैध माहितीसंच, पॅकेजला शीर्षक नाही " + +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "%s पिनचा प्रकार समजलेला नाही" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "पिन करिता प्राधान्य/अग्रक्रम (किंवा शून्य)निर्देशीत केलेला नाही" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"आवृतीची मागणी पूर्ण करण्यासाठी %s पॅकेजची आवृत्ती उपलब्ध नाही,त्यामुळे %s साठी %s " -"डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "%s फाईल उघडता येत नाही" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" +"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 "" +"ह्याचे आधिष्ठापन सुरु करण्यासाठी अत्यावश्यक तात्पुरते काढुन टाकण्याची गरज आहे%s पॅकेज " +"गुंतागुंतीमुळे/Pre-Depends पूर्व अवलंबित आवर्तन.हे नेहमीच वाईट असते, पण जर तुम्हाला ते खरोखर " +"करावयाचे असेल तर,APT::Force-LoopBreak पर्याय कार्यान्वित करा." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%s साठी %s डिपेंडन्सी पूर्ण होण्यास असमर्थ: %s" +msgid "Line %u too long in source list %s." +msgstr "%2$s स्त्रोत सुचीमध्ये ओळ %1$u खूप लांब आहे." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "सिडी-रॉम अनमाउंट होत आहे...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s साठी बांधणी-डिपेंडन्सीज पूर्ण होऊ शकत नाही." +msgid "Using CD-ROM mount point %s\n" +msgstr "सिडी-रॉमचे माउंट स्थान %s वापरुन\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "बांधणी-डिपेंडन्सीज क्रिया पूर्ण करण्यास असमर्थ " +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "डिस्क/चकती करिता प्रतिक्षा करीत आहे...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) ला जोडत आहे" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "सिडी-रॉम माउंट होत आहे...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "प्रोग्राम गटाला तांत्रिक मदत दिली:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "ओळखत आहे..." -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "ग्रहण केलेले नामदर्शक: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "संचिकाच्या यादी/सूचीसाठी डिस्क/चकती बारकाईने तपासत आहे...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"वापर: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get हा पॅकेज डाऊनलोड आणि संस्थापित करण्यासाठी साधा आदेश रेखित\n" -" संवादमंच आहे. नेहमी वापरले जाणारे आदेश म्हणजे अपडेट\n" -"आणि संस्थापित करा\n" -"\n" -"आदेश:\n" -" update -पॅकेजच्या नव्या याद्यां प्राप्त करा\n" -" upgrade -आवृत्त्यांचे श्रेणिवर्धन करा\n" -" install -नवीन पॅकेजेस संस्थापित करा(pkg हे libc6 आहे आणि libc6.deb नव्हे)\n" -" remove -पॅकेजेस कायमची काढा\n" -" autoremove - वापरात नसलेली सर्व पॅकेजेस स्वयंचलितपणे कायमची काढा\n" -" purge - पॅकेजेस कायमची काढा व साफ करा\n" -" source -उगमस्थान अर्काईव्हज डाऊनलोड करा\n" -" build-dep - उगमस्थान पॅकेजेससाठी बांधणी-डिपेंडन्सी संरचित करा।\n" -" dist-upgrade - वितरण श्रेणिवर्धन, पहा apt-get(8)\n" -" dselect-upgrade -निवडी रहित करा\n" -" clean - डाऊनलोड केलेल्या अर्काईव्हज फाईल्स खोडून टाका\n" -" autoclean - डाऊनलोड केलेल्या जुन्या अर्काईव्हज फाईल्स खोडून टाका\n" -" check - डिपेन्डन्सीज तुटलेल्या नाहीत याची खात्री करा\n" -"\n" -"पर्याय:\n" -" -h हा मदत मजकूर.\n" -" -q नोंद करण्यासारखे आऊटपुट-प्रगती निदर्शक नाही\n" -" -qq त्रुटींव्यतिरिक्त आऊटपुट नाही\n" -" -d - डाऊनलोड फक्त - अर्काईव्हज संस्थापित किंवा उघडू नका\n" -" -s क्रिया नाही-\n" -" -y सगळ्या प्रश्नांना 'हो' समजा. व प्रॉम्पट् करू नका.\n" -" -f डिपेन्डन्सीज तुटलेल्या प्रणालीत द उरुस्ती करण्याचा प्रयत्न करा\n" -" -m अर्काईव्हज सापडत नसतील तर पुढे जाण्याचा प्रयत्न करा\n" -" -u पॅकेजच्या पुढिल आवृत्त्यांची यादी देखील दाखवा.\n" -" -b मिळवल्यानंतर उगमस्थान पॅकेजची बांधणी करा\n" -" -V व्हरबोस आवृत्ती क्रमांक दाखवा\n" -" -c=?- ही संरचना फाईल वाचा\n" -" -o=?- अनियंत्रित संरचना पर्याय निश्चित करा,उदा -o dir::cache=/tmp\n" -"अधिक माहिती व पर्यायांसाठी apt-get(8), sources.list(5),आणि\n" -" apt.conf(5) पुस्तिका पाने पहा.\n" -" ह्या APT ला सुपर काऊ पॉवर्स आहेत\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"%zu पॅकेजेसची यादी/सूची, %zu स्त्रोताची यादी/सूची, %zu भाषांतर यादी/सूची आणि %zu " +"स्वाक्षऱ्या/सिगनेचर्स सापडल्या\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "पण ते संस्थापित केले नाही" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "'%s' लेबल सापडले\n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "ते स्विकारण्याजोगे/वैध नांव नाही, पुन्हा प्रयत्न करा.\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s साठी थांबलो पण ते तेथे नव्हते" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"ह्या डिस्कला/चकतीला: म्हणतात\n" +"'%s'\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "पॅकेज सूचींच्या प्रती तयार करित आहे..." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s उघडण्यास असमर्थ" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "नविन स्त्रोत सूची लिहित आहे\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "ह्या डिस्क/चकती करिता स्त्रोत सूचीच्या प्रवेशिका आहेत: \n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"%s पॅकेज पुनः:अधिष्ठापित करण्याची गरज आहे, परंतु मला त्यासाठी ऑर्काइव्ह सापडू शकले नाही." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"दोष,पॅकेज समस्या निवारक::निवारण करतांना अडथळा निर्माण झाला, ह्याचे कारण स्थगित " +"पॅकेजेस असू शकते." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "%s सीडी-रॉम माहिती संच वाचण्यास असमर्थ" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "अडचणी दूर करण्यास असमर्थ, तुम्ही तुटलेले पॅकेज घेतलेले आहे." -#: 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 "" -"कृपया सी-डी रॉम APT कडून ओळखण्यासाठी apt-cdrom चा वापर करा.apt-get update हे " -"नवीन सीडी राॅम अधिक मिळवण्यासाठी वापरता येणार नाही" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "अवलंबित रचना बांधणी करत आहे" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "चूकीची सी-डी रॉम" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "कंॅडिडेट आवृत्त्या" -#: methods/cdrom.cc:249 +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "अवलंबित/विसंबून असलेले उत्पादन " + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "स्थिती माहिती वाचत आहे" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s मधील सीडी-रॉम अनमाऊंट करण्यास असमर्थ, अजूनही ते वापरता असेल." +msgid "Failed to open StateFile %s" +msgstr "%s StateFile उघडणे असफल" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "डिस्क सापडत नाही" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "%s तात्पुरत्या StateFile मध्ये लिहिणे असफल" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "फाईल सापडली नाही" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "स्टॅट करण्यास असमर्थ" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "%s (२) पॅकेज फाईल पार्स करण्यात असमर्थ" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "बदलण्याचा वेळ निश्चित करण्यास असमर्थ" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "अवैध यू आर एल, स्थानिक यू आर आय एस सुरू होऊ नये यापासून //" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "लॉग इन करत आहे" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "पॅकेज %s शोधण्यास असमर्थ आहे" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "पिअर नाव सांगण्यास/सापडण्यास असमर्थ" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "%s कार्य सापडू शकले नाही" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "स्थानिक नाव सांगण्यास असमर्थ" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "सर्व्हर ने संबंध जोडण्यास नकार दिला व सांगितले: %s" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "USER failed, server said: %s" -msgstr "सर्व्हरने %s सांगितले,यूजर असमर्थ:" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "PASS failed, server said: %s" -msgstr "सर्व्हरने %s सांगितले, पास असमर्थ:" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"प्रॉक्सी सर्व्हर निर्देशित केला पण लॉगीन स्क्रिप्ट नाही, प्राप्त केलेले ::ftp:: प्रॉक्सीलॉगीन " -"निरर्थक आहे." -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "सर्व्हरने %s सांगितले, '%s' लॉग इन स्क्रिप्ट आज्ञावली असमर्थ:" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "सर्व्हरने %s सांगितले: टाईप असमर्थ:" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "वेळेअभावी संबंध जोडता येत नाही" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "सर्व्हरने संबंध जोडणी बंद केली" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "त्रुटी वाचा" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "प्रतिसाधाने बफर भरुन गेले." +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "प्रोटोकॉल खराब झाले" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "%s डायव्हर्जन फाईलमध्ये अवैध ओळ आहे:" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "लिहिण्यात त्रुटी" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "सॉकेट तयार करू शकत नाही" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "स्त्रोत सुची %s (यूआरआय पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "डेटा सॉकेट जोडू शकत नाही,जोडणी वेळेअभावी बंद केली" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "असमर्थ" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "स्त्रोत सुची %s (डिआयएसटी) मध्ये %lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "पॅसिव्ह सॉकेट जोडता येत नाही" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "गेटऍड्रेसइनफो लिसनिंग सॉकेट घेण्यास असमर्थ होते" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "सॉकेट चिकटवता येत नाही" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "सॉकेट वर ऐकता येत नाही" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "स्त्रोत सुची %2$s (यूआरआय) मध्ये %1$lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "सॉकेटचे नाव सांगता येत नाही" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "स्त्रोत सुची %2$s (डिआयएसटी) मध्ये %1$lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "पोर्ट आज्ञा पाठवता येत नाही/पोर्ट आज्ञा पाठविण्यास असमर्थ" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "स्त्रोत सुची %2$s (यूआरआय पार्स) मध्ये %1$lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "माहित नसलेला पत्ता फॅमिली %u (AF_*)" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "स्त्रोत सुची %2$s (absolute dist) मध्ये %1$lu वाईट/व्यंग रेषा" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "स्त्रोत सुची %2$s (डीआयएसटी पार्स) मध्ये %1$lu वाईट/व्यंग रेषा" + +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "ई.पी.आर.टी. चुकले,सर्व्हरने %s सांगितले" +msgid "Opening %s" +msgstr "%s उघडत आहे" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "डेटा सॉकेट जोडणी वेळेअभावी तुटली" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "स्त्रोत सुची %2$s (प्रकार) मध्ये %1$u वाईट/व्यंग रेषा" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "जोडणी स्विकारण्यास असमर्थ" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "फाईल हॅश करण्यात त्रुटी" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "सर्व्हरने %s सांगितले, फाईल मिळवण्यास असमर्थ" +msgid "Installing %s" +msgstr "%s संस्थापित होत आहे" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "डेटा सॉकेट वेळेअभावी तुटले" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s संरचित होत आहे" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "सर्व्हरने %s सांगितले, डेटा स्थानांतरण चुकले" +msgid "Removing %s" +msgstr "%s काढून टाकत आहे" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "प्रश्न" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s संपूर्ण काढून टाकले" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "जारी करण्यास करण्यास असमर्थ" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Connecting to %s (%s)" -msgstr "%s (%s) ला जोडत आहे" +msgid "Running post-installation trigger %s" +msgstr "संस्थापना-पश्चात ट्रिगर %s चालवत आहे" -#: methods/connect.cc:87 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "[IP: %s %s]" -msgstr "[आयपी:%s %s]" +msgid "Directory '%s' missing" +msgstr "'%s' संचयिका गहाळ आहे" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "%s फाईल उघडता येत नाही" + +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s (f=%u t=%u p=%u) साठी सॉकेट तयार करू शकत नाही" +msgid "Preparing %s" +msgstr "%s तयार करित आहे" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s (%s). साठी जोडणी इनिशिएट/पुढाकारीत करू शकत नाही" +msgid "Unpacking %s" +msgstr "%s सुटे/मोकळे करीत आहे " -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s (%s) ला जोडू शकत नाही,जोडणी वेळेअभावी तुटली" +msgid "Preparing to configure %s" +msgstr "%s संरचने साठी तयार करत आहे" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "%s:%s (%s) ला जोडू शकत नाही" +msgid "Installed %s" +msgstr "%s संस्थापित झाले" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Connecting to %s" -msgstr "%s ला जोडत आहे" +msgid "Preparing for removal of %s" +msgstr "%s ला काढून टाकण्यासाठी तयारी करत आहे" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Could not resolve '%s'" -msgstr "%s रिझॉल्व्ह होऊ शकत नाही " +msgid "Removed %s" +msgstr "%s काढून टाकले" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' रिझॉल्व्ह करताना तात्पुरती त्रुटी" +msgid "Preparing to completely remove %s" +msgstr "%s संपूर्ण काढून टाकण्याची तयारी करत आहे" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s संपूर्ण काढून टाकले" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s %s ला जोडण्यास असमर्थ:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "अंतर्गत त्रुटी: चांगली सही, पण की ठसे सांगू शकत नाही?!" +msgid "Can not write log (%s)" +msgstr "%s मध्ये लिहिण्यास असमर्थ " -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "किमान एक अवैध सही सापडली." +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -"सहीची खात्री करण्यासाठी '%s' कार्यान्वित करू शकत नाही (gpgv संस्थापित केले आहे का?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Waited for %s but it wasn't there" +msgstr "%s साठी थांबलो पण ते तेथे नव्हते" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv कार्यान्वित होत असताना अपरिचित त्रुटी" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "खालील सह्या अवैध आहेत:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "खालील सह्यांची खात्री करता येत नाही कारण सार्वजनिक कीउपलब्ध नाही:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "सर्व्हर मधून वाचण्यात चूक. लांब शेवट आणि बंद झालेली जोडणी" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "सर्व्हर मधून वाचण्यात चूक" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "चुकले/असमर्थ निवड करा" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "जोडणी वेळेअभावी तुटली" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "निर्गत फाईल मध्ये लिहिताना त्रुटी/चूक" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "शीर्षकासाठी थांबले आहे...." +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "वाईट शीर्षक ओळ" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP सर्व्हरने अवैध प्रत्त्युत्तर शीर्षक पाठविले" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP सर्व्हरने अवैध मजकूर-लांबी शीर्षक पाठविले " +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP सर्व्हरने अवैध मजकूर-विस्तार शीर्षक पाठविले" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP सर्व्हरने विस्तार तांत्रिक मदत जोडली" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "अपरिचित दिनांक प्रकार/स्वरूप " +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "चुकीचा शीर्षक डाटा" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "जोडणी अयशस्वी" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "%s निवडक भाग सापडत नाही" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "अंतर्गत त्रुटी" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "फक्त वाचण्यासाठी कुलूप संचिका %s साठी कुलूपबंदचा वापर करीत नाही" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "पुढिल आवृत्तीची गणती करीत आहे..." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "%s कुलूप फाईल उघडता येत नाही" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "अंतर्गत त्रुटी,ऑलअपग्रेडने स्टफला तोडले" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "%s nfs(नेटवर्क फाईल सिस्टीम) माऊंटेड कुलुप फाईल ला कुलुप /बंद करता येत नाही" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "झाले" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "%s कुलुप मिळवता येत नाही" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "डिपेन्डन्सीज बरोबर/दुरूस्त करत आहे..." +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr "अयशस्वी/चूकीचे झाले." +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "डिपेन्डन्सीज बरोबर करण्यास असमर्थ आहे " +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "आवृत्तीकृत संच कमीतकमी करण्यास असमर्थ" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s उपक्रियेने (%u) त्रुटी कोड दिलेला आहे" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr "झाले" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "%s उपक्रिया अचानकपणे बाहेर पडली" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "हे बरोबर करण्यासाठी तुम्हाला `apt-get -f संस्थापना' प्रोग्राम चालू करावा लागेल." +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "लिहिण्यात त्रुटी" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "अनमेट डिपेंडन्सीज.-f.वापरून प्रयत्न करा " +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "फाईल बंद करण्यात अडचण" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "%s फाईल उघडता येत नाही" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[संस्थापित केले]" +msgid "Could not open file descriptor %d" +msgstr "%s साठी पाईप उघडता येत नाही" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr "[संस्थापित केले]" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "आयपीसी उपक्रिया तयार करण्यास असमर्थ" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "दाबक(संकलितकर्ता) कर्यान्वित करण्यास असमर्थ" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr "[संस्थापित केले]" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "त्रुटी वाचा" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr "[संस्थापित केले]" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "वाचा, %lu अजूनही वाचण्यासाठी आहे पण आता काही उरली नाही" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "लिहा, %lu अजूनही लिहिण्यासाठी आहे पण लिहिता येत नाही" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "फाईल बंद करण्यात अडचण" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "खालील पॅकेजेस मध्ये नमिळणाऱ्या निर्भरता/ डिपेन्डन्सीज आहेत:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "संचिकेची syncing समस्या" -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "पण %s संस्थापित झाले" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "फाईल अनलिंकिंग करण्यात अडचण" -#: apt-private/private-output.cc:444 -#, c-format -msgid "but %s is to be installed" -msgstr "पण %s संस्थापित करायचे आहे" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "संचिकेची syncing समस्या" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "पण ते संस्थापित करण्याजोगे नाही" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... चूक/त्रुटी!" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "पण ते आभासी पॅकेज आहे" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... झाले" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "पण ते संस्थापित केले नाही" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "पण ते संस्थापित होणार नाही" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... झाले" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr "किंवा" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "रिकामी फाईल mmap करता येणार नाही" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "खालील नविन पॅकेजेस संस्थापित होतील:" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%s साठी पाईप उघडता येत नाही" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "खालील नविन पॅकेजेस कायमची काढून टाकली जातील:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "mmap चे %lu बाईटस् करता येणार नाहीत" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "खालील पॅकेजेस परत ठेवली गेली:" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "%s उघडण्यास असमर्थ" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "खालील पॅकेजेस पुढिल आवृत्तीकृत होतील:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "जारी करण्यास करण्यास असमर्थ" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "खालील पॅकेजेस पुढच्या आवृत्तीकृत होणार नाहीत:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "mmap चे %lu बाईटस् करता येणार नाहीत" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "पुढिल ठेवलेली पॅकेजेस बदलतील:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "फाईल छोटी करणे असफल" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "%s (due to %s) " -msgstr "%s (च्या मुळे %s)" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:446 +#, c-format msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"धोक्याची सूचना:खालील जरूरीची पॅकेजेस कायमची काढून टाकली जातील।\n" -"तुम्हाला तुम्ही काय करत आहात हे कळेपर्यंत असं करता येणार नाही!" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu पुढे आवृत्तीकृत केले, %lu नव्याने संस्थापित केले," +msgid "Unable to stat the mount point %s" +msgstr "%s माऊंट पॉईंट स्टॅट करण्यास असमर्थ" + +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "सीडी-रॉम स्टॅट करण्यास असमर्थ" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu पुनर्संस्थापित केले," +msgid "Unrecognized type abbreviation: '%c'" +msgstr "संक्षिप्तरुपाचा माहित नसलेला प्रकार: '%c'" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu downgraded, " -msgstr "%lu मागील आवृत्तीकृत केले," +msgid "Opening configuration file %s" +msgstr "%s संरचना फाईल उघडत आहे" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu कायमचे काढून टाकण्यासाठी आणि %lu पुढच्या आवृत्तीकृत झालेली नाही.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "रचनेच्या नियमांचा दोष %s:%u: ब्लॉक नावाशिवाय सुरू होतो." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu संपूर्ण संस्थापित किंवा कायमची काढून टाकलेली नाही.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "रचनेच्या नियमांचा दोष : %s:%u: मालफॉर्मड् टॅग" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "रचनेच्या नियमांचा दोष %s:%u: मुल्यांच्या नंतर अधिक जंक" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "होय" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "रचनेच्या नियमांचा दोष %s:%u: खूपच एकात एक इनक्लूडस्" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "रचनेच्या नियमांचा दोष %s:%u: ह्या पासून समाविष्ट " -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "Regex compilation error - %s" -msgstr "रिजेक्स कंपायलेशन त्रुटी -%s " +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "नियम रचनेचा दोष %s:%u: '%s' दिशादर्शक असहाय्यकारी" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "सुधारित आवृत्तीचा विधान आर्ग्युमेंटस घेऊ शकत नाही." +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "नियम रचनेचा दोष %s:%u: फाईलच्या अंती अधिक जंक" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "संस्थापन खंडित करत आहे." -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "आदेश रेखा पर्याय '%c' [पासून %s] हे माहित नाही." -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "अंतर्गत त्रुटी, तुटलेल्या पॅकेजेस बरोबर संस्थापित पॅकेजला आवाहन केले गेले/बोलावले गेले!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "आदेश रेखा पर्याय %s नीट समजला नाही" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूव्ह अकार्यक्षम केले आहे" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "आदेश रेखा पर्याय %s हे बूलियन नाही" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "अंतर्गत त्रुटी,क्रम अजून संपला नाही" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "पर्याय %s साठी ऑर्गुमेंट पाहिजे" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "किती विचित्र...आकार जुळत नाहीत, ईमेल apt@packages.debian.org" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "अर्काईव्हजच्या %sB/%sB घेण्याची गरज आहे\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s पर्याय ला पूर्णांक ऑर्गुमेंट पाहिजे,'%s' नको" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "अर्काईव्हज%sB घेण्याची गरज आहे.\n" +msgid "Option '%s' is too long" +msgstr "'%s' पर्याय खूप लांब आहे" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "या क्रियेनंतर, %sB एवढी अधिक डिस्क जागा वापरली जाईल.\n" +msgid "Sense %s is not understood, try true or false." +msgstr "%s संवेदना हे समजत नाही, चूक की बरोबर चा प्रयत्न करा." -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "या क्रियेनंतर, %sB डिस्क जागा मोकळी होईल.\n" +msgid "Invalid operation %s" +msgstr "%s अवैध क्रिया" -#: apt-private/private-install.cc:199 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s मध्ये तुमच्याकडे पुरेशी जागा नाही." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "पॅकेज %s आवृती %s मध्ये एक अनोळखी डीईपी:आहे\n" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "पॅकेजची सर्व नांवे: " -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "क्षुल्लक फक्त निर्देशित केले आहे पण हे क्षुल्लक कृति/ऑपरेशन नाही." +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "पॅकेजची सर्व नांवे: " -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "हो, मी म्ह्टल्याप्रमाणे करा!" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " सामान्य पॅकेजेस्: " -#: apt-private/private-install.cc:221 -#, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"तुम्ही संभाव्य काहीतरी नुकसानकारक करणार होतात.\n" -"पुढे '%s' उक्ती मध्ये लिहिणार \n" -" ?] " +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " शुध्द आभासी पॅकेजेस्:" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "व्यत्यय/बंद करा." +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " एकमेव आभासी पॅकेजेस्:" -#: apt-private/private-install.cc:242 -#, fuzzy -msgid "Do you want to continue?" -msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? " +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr "मिश्रित आभासी पॅकेजेस्:" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "काही संचिका डाऊनलोड करण्यास असमर्थ" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " हरवलेले/गहाळ: " -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"काही आर्काइव्हज आणण्यास असमर्थ, कदाचित apt-get रन करुन अद्ययावत करा किंवा --fix- " -"बरोबर प्रयत्न कराहरवलेले/गहाळ?" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "एकूण स्पष्ट आवृत्या: " -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "" -"--fix- सापडत नाही आणि माध्यम/मिडिया अदलाबदल हे सध्या तांत्रिक मदत देऊ शकत नाही" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "एकूण स्पष्ट विवरणे: " -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "न सापडणारी पॅकेजेस नीट करण्यास असमर्थ." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "एकूण निर्भरता:" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "संस्थापन खंडित करत आहे." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "एकूण व्हीईआर/संचिका परस्पर संबंध:" -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "एकूण विव/संचिका परस्पर संबंध:" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "एकूण मॅपींगस् तरतूद: " -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "आपण या गोष्टी काढून टाकता नये, ऑटोरिमूव्हर सुरू करता येत नाही" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "एकूण एकत्रित अक्षरसंच:" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"हूं, AutoRemover ने काहीतरी नष्ट केल्याचे दिसतेय, खरेतर असे व्हायला नको\n" -"कृपया apt कडे बग रिपोर्ट दाखल करा. " +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "एकूण परावलंबित आवृत्ती अवकाश:" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "खालील माहिती परिस्थिती निवळण्यासाठी मदत ठरू शकेल:" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "एकूण दुर्लक्षित अवकाश:" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "अंतर्गत त्रुटी, AutoRemoverने स्टफला तोडले" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "हिशेबात घेतलेली एकूण अवकाश(जागा):" -#: apt-private/private-install.cc:512 -#, fuzzy -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] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "पॅकेज संचिका %s सिंक्रोनाइज नाहीत" -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "पॅकेजेस सापडले नाहीत" -#: apt-private/private-install.cc:518 +#: cmdline/apt-cache.cc:1254 #, 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' वापरा." +msgid "You must give at least one search pattern" +msgstr "तुम्हाला फक्त एकच नमुना द्यावा लागेल" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"तुम्हाला कदाचित 'apt-get -f install'(एपीटी-गेट -एफ संस्थापन') प्रोग्राम चालू करावा " -"लागेल'यात बदल करण्यासाठी:" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन ('apt-get -f install') पॅकेजशिवाय प्रयत्न करा " -"(किंवा पर्याय सांगा)." +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "पॅकेज संचिका:" -#: apt-private/private-install.cc:628 -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 "" -"काही पॅकेजेस संस्थापित होत नाहीत. याचा अर्थ असा आहे की तुम्ही\n" -"अशक्य परिस्थितीची विनंती केली होती. किंवा जर तुम्ही अस्थिर\n" -"विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n" -"किंवा ती येणाऱ्यांपैकी बाहेर हलविली असतील." +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "दृतिका सिंक नाही,पॅकेज संचिका क्ष-संदर्भ करता येत नाही" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "तुटलेली पॅकेजेस" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "एकत्रित पॅकेजेस:" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "खालील अतिरिक्त पॅकेजेस संस्थापित होतील:" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(मिळाले नाही)" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "सुचवलेली पॅकेजेस:" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr "अधिष्ठापित केले:" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "शिफारस केलेली पॅकेजेस:" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr "उमेदवार:" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(कोणताच नाही)" -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr "पॅकेज (पिन):" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s चे पुनर्संस्थापन शक्य नाही, हे डाऊनलोड करता येत नाही.\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr "आवृत्ती कोष्टक:" -#: apt-private/private-install.cc:836 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" - -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" - -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" - -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" - -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s हे %s करिता %s %s वर संग्रहित\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 +#, fuzzy 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!" +"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 "" +"वापर: apt-cache [options] command\n" +" apt-cache [options] add file1 [file2 ...]\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"ऍप्टच्या द्वयंक कॅश संचिका कौशल्याने हाताळण्यासाठी, व त्यांमधील माहितीची विचारणा " +"करण्यासाठी ऍप्ट -कॅश हे निम्नस्तरीय साधन आहे।\n" +"\n" +"आज्ञावली\n" +" add - उगमस्थान कॅशमध्ये एक पॅकेज संचिका मिळवा \n" +" gencaches - पॅकेज व उगमस्थान कॅश या दोघांची बांधणी करा\n" +" showpkg - एकमेव पॅकेजसाठी काही सामान्य माहिती दाखवा\n" +" showsrc -उगमस्थानाचा माहितीसंच दाखवा\n" +" stats - काही पायाभूत आकडेवारी दाखवा\n" +" dump - संपूर्ण संचिका थोडक्यात दाखवा\n" +" dumpavail - उपलब्ध संचिका stdout मधे छापा\n" +" unmet - पुरी न झालेली परावलंबने दाखवा\n" +" search - regex नमुन्यासाठी पॅकेजची यादी शोधा\n" +" show - पॅकेजसाठी वाचनीय माहितीसंच दाखवा\n" +" depends -पॅकेजसाठी संस्करणपूर्व परावलंबन माहिती दाखवा\n" +" rdepends -पॅकेजसाठी अतिपरावलंबन माहिती दाखवा\n" +" pkgnames - सर्व पॅकेजेससाठी यादी तयार करा\n" +" dotty - GraphViz साठी पॅकेज आलेख निर्माण करा\n" +" xvcg-xvcg साठी पॅकेज आलेख निर्माण करा\n" +" policy - धोरण निर्धारणे दाखवा\n" +"\n" +"पर्याय : \n" +"-h -हा साह्याकारी मजकूर\n" +"-p=? पॅकेज कॅश \n" +"-s=? उगमस्थान कॅश \n" +"-q-प्रगतीनिदर्शक अकार्यान्वित करा \n" +"-i -न आढळलेल्या आज्ञेसाठी महत्त्वाचे विभाग दाखवा\n" +"-c=? ही संरचना संचिका वाचा\n" +"-o=? एखादा अहेतूक संरचना पर्याय निर्धारित करा उदा --o dir::cache=/tmp\n" +"अधिक माहितीसाठी apt-cache(8) and apt.conf(5) ची मॅन्युअल पृष्ठे पहा \n" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "धोक्याची सूचना:खालील पॅकेजेस् प्रमाणित करु शकत नाही! " - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "प्रमाणीकरणाची धोक्याची सूचना दुर्लक्षित करा.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "काही पॅकेजेसचे प्रमाणिकरण होऊ शकत नाही" - -#: apt-private/private-download.cc:50 +#: cmdline/apt-cdrom.cc:76 #, fuzzy -msgid "Install these packages without verification?" -msgstr "पडताळून पाहिल्याशिवाय ही पॅकेजेस संस्थापित करायची का [हो/नाही]?" +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "या तबकडीला कृपया नाव द्या जसे डेबियन २ एलआरएल तबकडी १" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s %s आणणे असफल\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "कृपया तबकडी ड्राईव्हमध्ये ठेवून एंटर दाबा" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " +msgid "Failed to mount '%s' to '%s'" msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "दाबा" - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "मिळवा:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "आय.जी.एन." - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "दोष इ.आर.आर." - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s (%sB/s) मध्ये %sB मिळविला\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "तुमच्या संचामधील सर्व सीडीजसाठी याच कृतीची पुनरावृत्ती करा(हीच कृती करा)" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr "[काम करत आहे]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "चलितमूल्य जोडीने नाहीत" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"माध्यम बदल: कृपया नाव घातलेली सीडी घाला\n" -"%s'\n" -"'%s' ड्राईव्ह मध्ये व एंटर कळ दाबा\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "%s वाचण्यास असमर्थ" +"उपयोग : ऍप्ट-कॉन्फिग(पर्याय) आज्ञा \n" +"\n" +"ऍप्ट कन्फिग संचिता वाचण्यासाठी ऍप्ट-कन्फिग हे एक साधन आहे\n" +"\n" +"आज्ञावली : \n" +"शेल - शेल मोड \n" +"डंप - संरचना दाखवा \n" +"\n" +"पर्याय : \n" +" -h हा साह्याकारी मजकूर \n" +" -c= ? ही संरचना संचिका वाचा \n" +" -o=? एखदा अहेतुक संरचना पर्याय निर्धारित करा, उदा।eg -o dir::cache=/tmp\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "%s मध्ये बदलण्यास असमर्थ" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" -#. 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 "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "%s फाईल उघडता येत नाही" +msgid "Can not find a package '%s' with release '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "%s फाईल उघडता येत नाही" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:423 #, c-format -msgid "[Mirror: %s]" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "उपक्रियेचा आयपीसी वाहिनी तयार करण्यास असमर्थ" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "जोडणी अकाली बंद झाली" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "चूकीचे मूलभूत निश्चितीकरण!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "पुढे जाण्यासाठी एंटर दाबा." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "पुर्वी डाऊनलोड केलेल्या .deb संचयिका आपल्याला खोडून टाकायच्या आहेत का?" - -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "काही त्रुटी ह्या उघडत असताना घडल्या.मी संरचित करणार आहे" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "%s पॅकेज सापडू शकले नाही" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "पॅकेजेस जी संस्थापित झाली आहे.याचा निकाल दुप्पट त्रुटी म्हणून होऊ शकतो" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "किंवा डिपेंडन्सीज नसल्यामुळे त्रुटी झाल्या. हे ठीक आहे, फक्त त्रुटी" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"ह्यावर संदेश खूप महत्त्वाचे आहेत.कृपया त्यांना नीट करा व संस्थापित करा पुन्हा चालवा/सुरू करा" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "उपलब्ध माहितीचे एकत्रीकरण करत आहे" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "सुटा करण्यासाठी बोलावलेला/आणलेला सांधा(ड्रापनोड)अजुनही जुळलेलाच सांधा(लिंकनोड) आहे" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "हॅश एलिमेंट शोधूने काढण्यास असमर्थ!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "नेमून दिलेल्यात फेरबदल करण्यास अयशस्वी" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion/ऍड डायव्हर्जन मध्ये आंतरिक दोष" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "डाऊनलोड डिरेक्टरी कुलूपबंद करण्यास असमर्थ" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "डायव्हर्जन पुनः लिहिण्यास प्रयत्न करत आहे,%s -> %s and %s/%s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "%s -> %s डायव्हर्जन दुप्पट मिळवा" +msgid "Unable to find a source package for %s" +msgstr "%s उगम पॅकेज शोधणे शक्य नाही/शोधण्यास असमर्थ आहे" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "%s/%s संचिरित संचिकाची दुसरी प्रत/नक्कल" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:791 #, c-format -msgid "The path %s is too long" -msgstr "मार्ग %s हा खूप लांब आहे" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s एकापेक्षा जास्त वेळा उघडत आहे" +msgid "Skipping already downloaded file '%s'\n" +msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून द्या\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "The directory %s is diverted" -msgstr "%s संचिका डायव्हर्ट केली आहे/वळवली आहे" +msgid "Couldn't determine free space in %s" +msgstr "%s मध्ये रिकामी जागा सांगू शकत नाही" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "डायव्हर्जन इच्छित %s/%s मध्ये लिहिण्याचा पॅकेज प्रयत्न करत आहे" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "डायव्हर्जन मार्ग हा खूप लांब आहे" +msgid "You don't have enough free space in %s" +msgstr "%s मध्ये पुरेशी जागा नाही" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#. 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:891 #, c-format -msgid "Failed to stat %s" -msgstr "%s स्टेट करण्यास असमर्थ" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "उगम अर्काईव्हज चा %sB/%sB घेण्याची गरज आहे.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. 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:896 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " +msgid "Need to get %sB of source archives.\n" +msgstr "उगम अर्काईव्हजचा %sB घेण्याची गरज आहे.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "%s संचिका ही संचिका नसलेल्या संचिकेबरोबर बदललेली आहे" +msgid "Fetch source %s\n" +msgstr "%s उगम घ्या\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "नोडचे त्याच्या हॅश बकेटमध्ये/बादलीत स्थान निश्चित करण्यास असमर्थ" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "काही अर्काईव्हज आणण्यास असमर्थ." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "मार्ग खूप लांब आहे" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "डाऊनलोड संपूर्ण आणि डाऊनलोड मध्ये फक्त पद्धती" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "%s च्या आवृत्तीशी पुनः लिहिलेल्या पॅकेज जुळत नाही" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s मध्ये आधीच उघडलेल्या उगमातील उघडलेल्याला सोडून द्या किंवा वगळा\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:962 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "File %s/%s, %s पॅकेज मधल्या एका वर पुनर्लिखित होते" +msgid "Unpack command '%s' failed.\n" +msgstr "'%s' आज्ञा सुट्या करण्यास असमर्थ.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to stat %s" -msgstr "%s स्टॅट करण्यास असमर्थ" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Failed to write file %s" -msgstr "%s फाईल मध्ये लिहिण्यास असमर्थ" +msgid "Build command '%s' failed.\n" +msgstr "बांधणी करणाऱ्या आज्ञा '%s' अयशस्वी.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "चाईल्ड प्रक्रिया अयशस्वी" + +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "बिल्डेपस् कशासाठी ते पडताळण्यासाठी किमान एक पॅकेज सांगणे गरजेचे आहे" + +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Failed to close file %s" -msgstr "%s फाईल बंद करण्यास असमर्थ" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "हा वैध DEB अर्काईव्ह नाही,'%s' मेंबर उपलब्ध नाही" +msgid "Unable to get build-dependency information for %s" +msgstr "%s साठी बांधणी डिपेंडन्सी माहिती मिळवण्यास असमर्थ" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "अंतर्गत त्रुटी,%s मेंबर शोधू शकत नाही" +msgid "%s has no build depends.\n" +msgstr "%s ला बांधणी डिपेंडन्स नाहीत.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "अनपार्सेबल नियंत्रण फाईल" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "अयोग्य अर्काईव्ह ओळख सही" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%s पॅकेज न सापडल्यà¤¾à¤¨à¥‡ %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "अर्काईव्ह मेंबर शीर्षक वाचण्यास त्रुटी" +#: cmdline/apt-get.cc:1312 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "%s अवलंबित्व %s साठी पूर्ण होण्यास असमर्थ: संस्थापित पॅकेज %s खूपच नवीन आहे" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1351 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"आवृतीची मागणी पूर्ण करण्यासाठी %s पॅकेजची आवृत्ती उपलब्ध नाही,त्यामुळे %s साठी %s " +"डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "अर्काईव्ह खूप छोटे आहे" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "अर्काईव्ह शीर्षके वाचणे असफल" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%s साठी %s डिपेंडन्सी पूर्ण होण्यास असमर्थ: %s" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "पाईप तयार करण्यास असमर्थ" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s साठी बांधणी-डिपेंडन्सीज पूर्ण होऊ शकत नाही." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "exec gzip करण्यास असमर्थ" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "बांधणी-डिपेंडन्सीज क्रिया पूर्ण करण्यास असमर्थ " -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "बिघडलेली अर्काईव्हज" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "%s (%s) ला जोडत आहे" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "टार(टेपअर्काईव्ह) चेकसम चुकला, बिघडलेली अर्काईव्ह" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "प्रोग्राम गटाला तांत्रिक मदत दिली:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "अपरिचित TAR शीर्षक प्रकार %u, मेंबर %s" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"वापर: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get हा पॅकेज डाऊनलोड आणि संस्थापित करण्यासाठी साधा आदेश रेखित\n" +" संवादमंच आहे. नेहमी वापरले जाणारे आदेश म्हणजे अपडेट\n" +"आणि संस्थापित करा\n" +"\n" +"आदेश:\n" +" update -पॅकेजच्या नव्या याद्यां प्राप्त करा\n" +" upgrade -आवृत्त्यांचे श्रेणिवर्धन करा\n" +" install -नवीन पॅकेजेस संस्थापित करा(pkg हे libc6 आहे आणि libc6.deb नव्हे)\n" +" remove -पॅकेजेस कायमची काढा\n" +" autoremove - वापरात नसलेली सर्व पॅकेजेस स्वयंचलितपणे कायमची काढा\n" +" purge - पॅकेजेस कायमची काढा व साफ करा\n" +" source -उगमस्थान अर्काईव्हज डाऊनलोड करा\n" +" build-dep - उगमस्थान पॅकेजेससाठी बांधणी-डिपेंडन्सी संरचित करा।\n" +" dist-upgrade - वितरण श्रेणिवर्धन, पहा apt-get(8)\n" +" dselect-upgrade -निवडी रहित करा\n" +" clean - डाऊनलोड केलेल्या अर्काईव्हज फाईल्स खोडून टाका\n" +" autoclean - डाऊनलोड केलेल्या जुन्या अर्काईव्हज फाईल्स खोडून टाका\n" +" check - डिपेन्डन्सीज तुटलेल्या नाहीत याची खात्री करा\n" +"\n" +"पर्याय:\n" +" -h हा मदत मजकूर.\n" +" -q नोंद करण्यासारखे आऊटपुट-प्रगती निदर्शक नाही\n" +" -qq त्रुटींव्यतिरिक्त आऊटपुट नाही\n" +" -d - डाऊनलोड फक्त - अर्काईव्हज संस्थापित किंवा उघडू नका\n" +" -s क्रिया नाही-\n" +" -y सगळ्या प्रश्नांना 'हो' समजा. व प्रॉम्पट् करू नका.\n" +" -f डिपेन्डन्सीज तुटलेल्या प्रणालीत द उरुस्ती करण्याचा प्रयत्न करा\n" +" -m अर्काईव्हज सापडत नसतील तर पुढे जाण्याचा प्रयत्न करा\n" +" -u पॅकेजच्या पुढिल आवृत्त्यांची यादी देखील दाखवा.\n" +" -b मिळवल्यानंतर उगमस्थान पॅकेजची बांधणी करा\n" +" -V व्हरबोस आवृत्ती क्रमांक दाखवा\n" +" -c=?- ही संरचना फाईल वाचा\n" +" -o=?- अनियंत्रित संरचना पर्याय निश्चित करा,उदा -o dir::cache=/tmp\n" +"अधिक माहिती व पर्यायांसाठी apt-get(8), sources.list(5),आणि\n" +" apt.conf(5) पुस्तिका पाने पहा.\n" +" ह्या APT ला सुपर काऊ पॉवर्स आहेत\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "%s स्टॅट करण्यात असमर्थ. " +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "'%s' पॅकेजींग प्रणाली सहाय्यकारी नाही" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "योग्य असा पॅकेजिंग प्रणाली प्रकार निश्चित करण्यास असमर्थ " - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i माहितीसंच लिहिले.\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n" - -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n" - -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n" - -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "पण ते संस्थापित केले नाही" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "हॅश बेरीज जुळत नाही" +msgid "%s was already set to manually installed.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "%s कार्यपध्दतीचा ड्राइव्हर सापडू शकला नाही. " +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" +msgid "%s was already set on hold.\n" +msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "%s कार्यपध्दती योग्य रीतीने सुरु झालेली नाही" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "कृपया '%s' लेबल असलेली डिस्क '%s' या ड्राइव्हमध्ये ठेवा आणि एन्टर कळ दाबा." +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "पॅकेजच्या याद्या किंवा संचिकेची स्थिती स्पष्ट होऊ शकत नाही किंवा ती उघडू शकत नाही." +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "%s उघडण्यास असमर्थ" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "तुम्ही ह्या समस्यांचे निवारण करण्यासाठी apt-get update प्रोग्राम चालू करु शकता" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "उगमांच्या याद्या वाचता येणार नाहीत." +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "पॅकेज अस्थाई स्मृतिकोष" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल खराब झाली आहे" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "%s सीडी-रॉम माहिती संच वाचण्यास असमर्थ" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल ही विजोड आवृत्ती आहे" +#: 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 "" +"कृपया सी-डी रॉम APT कडून ओळखण्यासाठी apt-cdrom चा वापर करा.apt-get update हे " +"नवीन सीडी राॅम अधिक मिळवण्यासाठी वापरता येणार नाही" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल खराब झाली आहे" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "चूकीची सी-डी रॉम" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:249 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "'%s' आवृत्तीकरण प्रणालीला हे APT तांत्रिक मदत देऊ शकत नाही" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s मधील सीडी-रॉम अनमाऊंट करण्यास असमर्थ, अजूनही ते वापरता असेल." -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "पॅकेज अस्थाई स्मृतीकोष वेगळ्या वास्तुविद्ये साठी बनवला गेला" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "डिस्क सापडत नाही" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "अवलंबित" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "फाईल सापडली नाही" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "पूर्व अवलंबित" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "स्टॅट करण्यास असमर्थ" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "सुचवणे" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "बदलण्याचा वेळ निश्चित करण्यास असमर्थ" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "शिफारस" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "अवैध यू आर एल, स्थानिक यू आर आय एस सुरू होऊ नये यापासून //" + +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "लॉग इन करत आहे" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "परस्परविरोध" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "पिअर नाव सांगण्यास/सापडण्यास असमर्थ" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "परत त्याठिकाणी आणा" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "स्थानिक नाव सांगण्यास असमर्थ" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "अप्रचलित" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "सर्व्हर ने संबंध जोडण्यास नकार दिला व सांगितले: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "तोडले" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "सर्व्हरने %s सांगितले,यूजर असमर्थ:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "सर्व्हरने %s सांगितले, पास असमर्थ:" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "अत्यावश्यक" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"प्रॉक्सी सर्व्हर निर्देशित केला पण लॉगीन स्क्रिप्ट नाही, प्राप्त केलेले ::ftp:: प्रॉक्सीलॉगीन " +"निरर्थक आहे." -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "आवश्यक" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "सर्व्हरने %s सांगितले, '%s' लॉग इन स्क्रिप्ट आज्ञावली असमर्थ:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "मानक" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "सर्व्हरने %s सांगितले: टाईप असमर्थ:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "एच्छिक" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "वेळेअभावी संबंध जोडता येत नाही" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "अधिक" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "सर्व्हरने संबंध जोडणी बंद केली" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "प्रतिसाधाने बफर भरुन गेले." -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "अस्थायी स्मृतिकोष मध्ये विसंगत आवृतीकरण प्रणाली आहे" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +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:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s (पॅकेज शोधतांना) प्रक्रिया करीत असतांना दोष आढळून आला" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "सॉकेट तयार करू शकत नाही" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही पॅकेज नांवांच्या संख्येची मर्यादा ओलांडली " -"आहे." +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "डेटा सॉकेट जोडू शकत नाही,जोडणी वेळेअभावी बंद केली" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही आवृत्त्या संख्येची मर्यादा ओलांडली आहे." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "असमर्थ" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "अरेवा!, तुम्ही तर ह्या ऍप्टच्या कार्यक्षमतेपेक्षाही विवरण संख्येची मर्यादा ओलांडली आहे." +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "पॅसिव्ह सॉकेट जोडता येत नाही" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" -"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही अवलंबित/विसंबून असलेल्या संख्येची मर्यादा " -"ओलांडली आहे." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "गेटऍड्रेसइनफो लिसनिंग सॉकेट घेण्यास असमर्थ होते" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "अवलंबित/विसंबून असणाऱ्या संचिकांची प्रक्रिया करीत असतांना पॅकेज %s %s सापडले नाही " +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "सॉकेट चिकटवता येत नाही" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "सॉकेट वर ऐकता येत नाही" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "पॅकेज याद्या वाचत आहोत" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "सॉकेटचे नाव सांगता येत नाही" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "तरतूद/पुरवलेल्या संचिका संग्रहित करीत आहे" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "पोर्ट आज्ञा पाठवता येत नाही/पोर्ट आज्ञा पाठविण्यास असमर्थ" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr "%s मध्ये लिहिण्यास असमर्थ " +msgid "Unknown address family %u (AF_*)" +msgstr "माहित नसलेला पत्ता फॅमिली %u (AF_*)" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO त्रुटी उगम निवडक संचयस्थानात संग्रहित होत आहे" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "ई.पी.आर.टी. चुकले,सर्व्हरने %s सांगितले" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "डेटा सॉकेट जोडणी वेळेअभावी तुटली" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "जोडणी स्विकारण्यास असमर्थ" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "फाईल हॅश करण्यात त्रुटी" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "सर्व्हरने %s सांगितले, फाईल मिळवण्यास असमर्थ" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "डेटा सॉकेट वेळेअभावी तुटले" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:935 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "पुनर्नामांकन अयशस्वी, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "हॅश बेरीज जुळत नाही" +msgid "Data transfer failed, server said '%s'" +msgstr "सर्व्हरने %s सांगितले, डेटा स्थानांतरण चुकले" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "आकार जुळतनाही" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "प्रश्न" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "%s अवैध क्रिया" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "जारी करण्यास करण्यास असमर्थ" -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" - -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "पुढील कळ ओळखचिन्हांसाठी सार्वजनिक कळ उपलब्ध नाही:\n" +msgid "Connecting to %s (%s)" +msgstr "%s (%s) ला जोडत आहे" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:87 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "[IP: %s %s]" +msgstr "[आयपी:%s %s]" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:94 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s (f=%u t=%u p=%u) साठी सॉकेट तयार करू शकत नाही" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:100 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s (%s). साठी जोडणी इनिशिएट/पुढाकारीत करू शकत नाही" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:108 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "%s:%s (%s) ला जोडू शकत नाही,जोडणी वेळेअभावी तुटली" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:126 #, 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 पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हाला हे पॅकेज स्वहस्ते " -"स्थिर/निश्चित करण्याची गरज आहे(हरवलेल्या आर्चमुळे) " +msgid "Could not connect to %s:%s (%s)." +msgstr "%s:%s (%s) ला जोडू शकत नाही" -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "%s ला जोडत आहे" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"पॅकेज यादीची/सुचीची संचिका दूषित/खराब झालेली आहे. संचिका नाव नाही: पॅकेजकरीता क्षेत्र/" -"ठिकाण %s." +msgid "Could not resolve '%s'" +msgstr "%s रिझॉल्व्ह होऊ शकत नाही " -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "विक्रेता गट %s मध्ये बोटाचे ठसे नाहीत" +msgid "Temporary failure resolving '%s'" +msgstr "'%s' रिझॉल्व्ह करताना तात्पुरती त्रुटी" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "संचयिका यादीत %s पार्शल हरवले आहे." +msgid "System error resolving '%s:%s'" +msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "ऑर्काइव्ह संचयिका %spartial गायब आहे." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" +msgid "Unable to connect to %s:%s:" +msgstr "%s %s ला जोडण्यास असमर्थ:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li ची %li(%s राहिलेले) संचिका पुन:प्राप्त करीत आहे" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "अंतर्गत त्रुटी: चांगली सही, पण की ठसे सांगू शकत नाही?!" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "%li ची %li संचिका पुन:प्राप्त करीत आहे" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "किमान एक अवैध सही सापडली." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"काही अनुक्रमणिका संचयिका डाऊनलोड करण्यास असमर्थ,त्या दुर्लक्षित झाल्या, किंवा " -"त्याऐवजी जुन्या वापरल्या गेल्या." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "तुम्ही तुमच्या उगमस्थान यादीत URI घाला" +"सहीची खात्री करण्यासाठी '%s' कार्यान्वित करू शकत नाही (gpgv संस्थापित केले आहे का?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "पसंतीच्या संचिकेत अवैध माहितीसंच, पॅकेजला शीर्षक नाही " - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "%s पिनचा प्रकार समजलेला नाही" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv कार्यान्वित होत असताना अपरिचित त्रुटी" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "पिन करिता प्राधान्य/अग्रक्रम (किंवा शून्य)निर्देशीत केलेला नाही" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "खालील सह्या अवैध आहेत:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 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:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "%s फाईल उघडता येत नाही" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "खालील सह्यांची खात्री करता येत नाही कारण सार्वजनिक कीउपलब्ध नाही:\n" -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"ह्याचे आधिष्ठापन सुरु करण्यासाठी अत्यावश्यक तात्पुरते काढुन टाकण्याची गरज आहे%s पॅकेज " -"गुंतागुंतीमुळे/Pre-Depends पूर्व अवलंबित आवर्तन.हे नेहमीच वाईट असते, पण जर तुम्हाला ते खरोखर " -"करावयाचे असेल तर,APT::Force-LoopBreak पर्याय कार्यान्वित करा." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "%s स्त्रोत सुचीमध्ये ओळ %u खूप लांब आहे." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "सिडी-रॉम अनमाउंट होत आहे...\n" - -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "सिडी-रॉमचे माउंट स्थान %s वापरुन\n" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "डिस्क/चकती करिता प्रतिक्षा करीत आहे...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "सिडी-रॉम माउंट होत आहे...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "सर्व्हर मधून वाचण्यात चूक. लांब शेवट आणि बंद झालेली जोडणी" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "ओळखत आहे..." +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "सर्व्हर मधून वाचण्यात चूक" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "ग्रहण केलेले नामदर्शक: %s \n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "संचिकाच्या यादी/सूचीसाठी डिस्क/चकती बारकाईने तपासत आहे...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "चुकले/असमर्थ निवड करा" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu पॅकेजेसची यादी/सूची, %zu स्त्रोताची यादी/सूची, %zu भाषांतर यादी/सूची आणि %zu " -"स्वाक्षऱ्या/सिगनेचर्स सापडल्या\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "जोडणी वेळेअभावी तुटली" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "निर्गत फाईल मध्ये लिहिताना त्रुटी/चूक" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "'%s' लेबल सापडले\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "शीर्षकासाठी थांबले आहे...." -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "ते स्विकारण्याजोगे/वैध नांव नाही, पुन्हा प्रयत्न करा.\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "वाईट शीर्षक ओळ" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"ह्या डिस्कला/चकतीला: म्हणतात\n" -"'%s'\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP सर्व्हरने अवैध प्रत्त्युत्तर शीर्षक पाठविले" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "पॅकेज सूचींच्या प्रती तयार करित आहे..." +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP सर्व्हरने अवैध मजकूर-लांबी शीर्षक पाठविले " -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "नविन स्त्रोत सूची लिहित आहे\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP सर्व्हरने अवैध मजकूर-विस्तार शीर्षक पाठविले" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "ह्या डिस्क/चकती करिता स्त्रोत सूचीच्या प्रवेशिका आहेत: \n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP सर्व्हरने विस्तार तांत्रिक मदत जोडली" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"%s पॅकेज पुनः:अधिष्ठापित करण्याची गरज आहे, परंतु मला त्यासाठी ऑर्काइव्ह सापडू शकले नाही." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "अपरिचित दिनांक प्रकार/स्वरूप " -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"दोष,पॅकेज समस्या निवारक::निवारण करतांना अडथळा निर्माण झाला, ह्याचे कारण स्थगित " -"पॅकेजेस असू शकते." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "चुकीचा शीर्षक डाटा" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "अडचणी दूर करण्यास असमर्थ, तुम्ही तुटलेले पॅकेज घेतलेले आहे." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "जोडणी अयशस्वी" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "अवलंबित रचना बांधणी करत आहे" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "अंतर्गत त्रुटी" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "कंॅडिडेट आवृत्त्या" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "पुढिल आवृत्तीची गणती करीत आहे..." -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "अवलंबित/विसंबून असलेले उत्पादन " +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "झाले" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "स्थिती माहिती वाचत आहे" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "%s StateFile उघडणे असफल" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s तात्पुरत्या StateFile मध्ये लिहिणे असफल" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "डिपेन्डन्सीज बरोबर/दुरूस्त करत आहे..." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "%s (२) पॅकेज फाईल पार्स करण्यात असमर्थ" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr "अयशस्वी/चूकीचे झाले." -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "डिपेन्डन्सीज बरोबर करण्यास असमर्थ आहे " -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "आवृत्तीकृत संच कमीतकमी करण्यास असमर्थ" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "%s कार्य सापडू शकले नाही" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr "झाले" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "हे बरोबर करण्यासाठी तुम्हाला `apt-get -f संस्थापना' प्रोग्राम चालू करावा लागेल." -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "अनमेट डिपेंडन्सीज.-f.वापरून प्रयत्न करा " + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" +msgid "[installed,upgradable to: %s]" +msgstr "[संस्थापित केले]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr "[संस्थापित केले]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr "[संस्थापित केले]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr "[संस्थापित केले]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "पण %s संस्थापित झाले" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "पण %s संस्थापित करायचे आहे" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "पण ते संस्थापित करण्याजोगे नाही" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "पण ते आभासी पॅकेज आहे" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "पण ते संस्थापित केले नाही" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "%s डायव्हर्जन फाईलमध्ये अवैध ओळ आहे:" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "पण ते संस्थापित होणार नाही" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr "किंवा" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "स्त्रोत सुची %s (यूआरआय पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "खालील पॅकेजेस मध्ये नमिळणाऱ्या निर्भरता/ डिपेन्डन्सीज आहेत:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "खालील नविन पॅकेजेस संस्थापित होतील:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "स्त्रोत सुची %s (डिआयएसटी) मध्ये %lu वाईट/व्यंग रेषा" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "खालील नविन पॅकेजेस कायमची काढून टाकली जातील:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "खालील पॅकेजेस परत ठेवली गेली:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "खालील पॅकेजेस पुढिल आवृत्तीकृत होतील:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "खालील पॅकेजेस पुढच्या आवृत्तीकृत होणार नाहीत:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "स्त्रोत सुची %s (यूआरआय) मध्ये %lu वाईट/व्यंग रेषा" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "पुढिल ठेवलेली पॅकेजेस बदलतील:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "स्त्रोत सुची %s (डिआयएसटी) मध्ये %lu वाईट/व्यंग रेषा" +msgid "%s (due to %s) " +msgstr "%s (च्या मुळे %s)" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "स्त्रोत सुची %s (यूआरआय पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"धोक्याची सूचना:खालील जरूरीची पॅकेजेस कायमची काढून टाकली जातील।\n" +"तुम्हाला तुम्ही काय करत आहात हे कळेपर्यंत असं करता येणार नाही!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "स्त्रोत सुची %s (absolute dist) मध्ये %lu वाईट/व्यंग रेषा" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu पुढे आवृत्तीकृत केले, %lu नव्याने संस्थापित केले," -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" +msgid "%lu reinstalled, " +msgstr "%lu पुनर्संस्थापित केले," -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "%s उघडत आहे" +msgid "%lu downgraded, " +msgstr "%lu मागील आवृत्तीकृत केले," -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "स्त्रोत सुची %s (प्रकार) मध्ये %u वाईट/व्यंग रेषा" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu कायमचे काढून टाकण्यासाठी आणि %lu पुढच्या आवृत्तीकृत झालेली नाही.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " +msgid "%lu not fully installed or removed.\n" +msgstr "%lu संपूर्ण संस्थापित किंवा कायमची काढून टाकलेली नाही.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "%s संस्थापित होत आहे" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s संरचित होत आहे" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "होय" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s काढून टाकत आहे" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s संपूर्ण काढून टाकले" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "सुधारित आवृत्तीचा विधान आर्ग्युमेंटस घेऊ शकत नाही." -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "संस्थापना-पश्चात ट्रिगर %s चालवत आहे" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "'%s' संचयिका गहाळ आहे" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "%s फाईल उघडता येत नाही" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "अंतर्गत त्रुटी, तुटलेल्या पॅकेजेस बरोबर संस्थापित पॅकेजला आवाहन केले गेले/बोलावले गेले!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s तयार करित आहे" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूव्ह अकार्यक्षम केले आहे" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s सुटे/मोकळे करीत आहे " +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "अंतर्गत त्रुटी,क्रम अजून संपला नाही" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s संरचने साठी तयार करत आहे" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "किती विचित्र...आकार जुळत नाहीत, ईमेल apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s संस्थापित झाले" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "अर्काईव्हजच्या %sB/%sB घेण्याची गरज आहे\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s ला काढून टाकण्यासाठी तयारी करत आहे" +msgid "Need to get %sB of archives.\n" +msgstr "अर्काईव्हज%sB घेण्याची गरज आहे.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s काढून टाकले" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "या क्रियेनंतर, %sB एवढी अधिक डिस्क जागा वापरली जाईल.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "%s संपूर्ण काढून टाकण्याची तयारी करत आहे" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "या क्रियेनंतर, %sB डिस्क जागा मोकळी होईल.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s संपूर्ण काढून टाकले" +msgid "You don't have enough free space in %s." +msgstr "%s मध्ये तुमच्याकडे पुरेशी जागा नाही." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "%s मध्ये लिहिण्यास असमर्थ " +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "क्षुल्लक फक्त निर्देशित केले आहे पण हे क्षुल्लक कृति/ऑपरेशन नाही." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "हो, मी म्ह्टल्याप्रमाणे करा!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"तुम्ही संभाव्य काहीतरी नुकसानकारक करणार होतात.\n" +"पुढे '%s' उक्ती मध्ये लिहिणार \n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "व्यत्यय/बंद करा." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? " -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "काही संचिका डाऊनलोड करण्यास असमर्थ" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"काही आर्काइव्हज आणण्यास असमर्थ, कदाचित apt-get रन करुन अद्ययावत करा किंवा --fix- " +"बरोबर प्रयत्न कराहरवलेले/गहाळ?" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" +"--fix- सापडत नाही आणि माध्यम/मिडिया अदलाबदल हे सध्या तांत्रिक मदत देऊ शकत नाही" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "न सापडणारी पॅकेजेस नीट करण्यास असमर्थ." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "संस्थापन खंडित करत आहे." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "आपण या गोष्टी काढून टाकता नये, ऑटोरिमूव्हर सुरू करता येत नाही" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" +"हूं, AutoRemover ने काहीतरी नष्ट केल्याचे दिसतेय, खरेतर असे व्हायला नको\n" +"कृपया apt कडे बग रिपोर्ट दाखल करा. " -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "खालील माहिती परिस्थिती निवळण्यासाठी मदत ठरू शकेल:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "अंतर्गत त्रुटी, AutoRemoverने स्टफला तोडले" + +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" +msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" +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] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" +msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +#: apt-private/private-install.cc:519 +#, 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' वापरा." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" +"तुम्हाला कदाचित 'apt-get -f install'(एपीटी-गेट -एफ संस्थापन') प्रोग्राम चालू करावा " +"लागेल'यात बदल करण्यासाठी:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन ('apt-get -f install') पॅकेजशिवाय प्रयत्न करा " +"(किंवा पर्याय सांगा)." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: apt-private/private-install.cc:638 +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 "" +"काही पॅकेजेस संस्थापित होत नाहीत. याचा अर्थ असा आहे की तुम्ही\n" +"अशक्य परिस्थितीची विनंती केली होती. किंवा जर तुम्ही अस्थिर\n" +"विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n" +"किंवा ती येणाऱ्यांपैकी बाहेर हलविली असतील." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "तुटलेली पॅकेजेस" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "खालील अतिरिक्त पॅकेजेस संस्थापित होतील:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "सुचवलेली पॅकेजेस:" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "%s निवडक भाग सापडत नाही" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "शिफारस केलेली पॅकेजेस:" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:825 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "फक्त वाचण्यासाठी कुलूप संचिका %s साठी कुलूपबंदचा वापर करीत नाही" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "%s कुलूप फाईल उघडता येत नाही" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:841 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "%s nfs(नेटवर्क फाईल सिस्टीम) माऊंटेड कुलुप फाईल ला कुलुप /बंद करता येत नाही" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s चे पुनर्संस्थापन शक्य नाही, हे डाऊनलोड करता येत नाही.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:846 #, c-format -msgid "Could not get lock %s" -msgstr "%s कुलुप मिळवता येत नाही" +msgid "%s is already the newest version.\n" +msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" + +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "धोक्याची सूचना:खालील पॅकेजेस् प्रमाणित करु शकत नाही! " -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "प्रमाणीकरणाची धोक्याची सूचना दुर्लक्षित करा.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "%s उपक्रियेने (%u) त्रुटी कोड दिलेला आहे" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "काही पॅकेजेसचे प्रमाणिकरण होऊ शकत नाही" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "%s उपक्रिया अचानकपणे बाहेर पडली" +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "पडताळून पाहिल्याशिवाय ही पॅकेजेस संस्थापित करायची का [हो/नाही]?" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "फाईल बंद करण्यात अडचण" +msgid "Failed to parse %s. Edit again? " +msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "%s फाईल उघडता येत नाही" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "%s साठी पाईप उघडता येत नाही" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "आयपीसी उपक्रिया तयार करण्यास असमर्थ" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "दाबक(संकलितकर्ता) कर्यान्वित करण्यास असमर्थ" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "वाचा, %lu अजूनही वाचण्यासाठी आहे पण आता काही उरली नाही" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "लिहा, %lu अजूनही लिहिण्यासाठी आहे पण लिहिता येत नाही" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "दाबा" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "फाईल बंद करण्यात अडचण" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "मिळवा:" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "संचिकेची syncing समस्या" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "आय.जी.एन." -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "फाईल अनलिंकिंग करण्यात अडचण" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "दोष इ.आर.आर." -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "संचिकेची syncing समस्या" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s (%sB/s) मध्ये %sB मिळविला\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... चूक/त्रुटी!" +msgid " [Working]" +msgstr "[काम करत आहे]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... झाले" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"माध्यम बदल: कृपया नाव घातलेली सीडी घाला\n" +"%s'\n" +"'%s' ड्राईव्ह मध्ये व एंटर कळ दाबा\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... झाले" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "रिकामी फाईल mmap करता येणार नाही" +msgid "Can not read mirror file '%s'" +msgstr "%s फाईल उघडता येत नाही" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "%s साठी पाईप उघडता येत नाही" +msgid "No entry found in mirror file '%s'" +msgstr "%s फाईल उघडता येत नाही" + +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "उपक्रियेचा आयपीसी वाहिनी तयार करण्यास असमर्थ" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "जोडणी अकाली बंद झाली" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "चूकीचे मूलभूत निश्चितीकरण!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "पुढे जाण्यासाठी एंटर दाबा." -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "mmap चे %lu बाईटस् करता येणार नाहीत" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "पुर्वी डाऊनलोड केलेल्या .deb संचयिका आपल्याला खोडून टाकायच्या आहेत का?" -#: apt-pkg/contrib/mmap.cc:146 +#: dselect/install:102 #, fuzzy -msgid "Unable to close mmap" -msgstr "%s उघडण्यास असमर्थ" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "काही त्रुटी ह्या उघडत असताना घडल्या.मी संरचित करणार आहे" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "जारी करण्यास करण्यास असमर्थ" - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "mmap चे %lu बाईटस् करता येणार नाहीत" +msgid "will be configured. This may result in duplicate errors" +msgstr "पॅकेजेस जी संस्थापित झाली आहे.याचा निकाल दुप्पट त्रुटी म्हणून होऊ शकतो" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "फाईल छोटी करणे असफल" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "किंवा डिपेंडन्सीज नसल्यामुळे त्रुटी झाल्या. हे ठीक आहे, फक्त त्रुटी" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"ह्यावर संदेश खूप महत्त्वाचे आहेत.कृपया त्यांना नीट करा व संस्थापित करा पुन्हा चालवा/सुरू करा" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "उपलब्ध माहितीचे एकत्रीकरण करत आहे" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "सुटा करण्यासाठी बोलावलेला/आणलेला सांधा(ड्रापनोड)अजुनही जुळलेलाच सांधा(लिंकनोड) आहे" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "%s माऊंट पॉईंट स्टॅट करण्यास असमर्थ" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "हॅश एलिमेंट शोधूने काढण्यास असमर्थ!" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "सीडी-रॉम स्टॅट करण्यास असमर्थ" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "नेमून दिलेल्यात फेरबदल करण्यास अयशस्वी" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "संक्षिप्तरुपाचा माहित नसलेला प्रकार: '%c'" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion/ऍड डायव्हर्जन मध्ये आंतरिक दोष" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "%s संरचना फाईल उघडत आहे" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "डायव्हर्जन पुनः लिहिण्यास प्रयत्न करत आहे,%s -> %s and %s/%s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "रचनेच्या नियमांचा दोष %s:%u: ब्लॉक नावाशिवाय सुरू होतो." +msgid "Double add of diversion %s -> %s" +msgstr "%s -> %s डायव्हर्जन दुप्पट मिळवा" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "रचनेच्या नियमांचा दोष : %s:%u: मालफॉर्मड् टॅग" +msgid "Duplicate conf file %s/%s" +msgstr "%s/%s संचिरित संचिकाची दुसरी प्रत/नक्कल" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "रचनेच्या नियमांचा दोष %s:%u: मुल्यांच्या नंतर अधिक जंक" +msgid "The path %s is too long" +msgstr "मार्ग %s हा खूप लांब आहे" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात" +msgid "Unpacking %s more than once" +msgstr "%s एकापेक्षा जास्त वेळा उघडत आहे" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "रचनेच्या नियमांचा दोष %s:%u: खूपच एकात एक इनक्लूडस्" +msgid "The directory %s is diverted" +msgstr "%s संचिका डायव्हर्ट केली आहे/वळवली आहे" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "रचनेच्या नियमांचा दोष %s:%u: ह्या पासून समाविष्ट " +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "डायव्हर्जन इच्छित %s/%s मध्ये लिहिण्याचा पॅकेज प्रयत्न करत आहे" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "डायव्हर्जन मार्ग हा खूप लांब आहे" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "नियम रचनेचा दोष %s:%u: '%s' दिशादर्शक असहाय्यकारी" +msgid "Failed to stat %s" +msgstr "%s स्टेट करण्यास असमर्थ" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "नियम रचनेचा दोष %s:%u: फाईलच्या अंती अधिक जंक" +msgid "The directory %s is being replaced by a non-directory" +msgstr "%s संचिका ही संचिका नसलेल्या संचिकेबरोबर बदललेली आहे" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "संस्थापन खंडित करत आहे." +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "नोडचे त्याच्या हॅश बकेटमध्ये/बादलीत स्थान निश्चित करण्यास असमर्थ" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "आदेश रेखा पर्याय '%c' [पासून %s] हे माहित नाही." +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "मार्ग खूप लांब आहे" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "आदेश रेखा पर्याय %s नीट समजला नाही" +msgid "Overwrite package match with no version for %s" +msgstr "%s च्या आवृत्तीशी पुनः लिहिलेल्या पॅकेज जुळत नाही" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "आदेश रेखा पर्याय %s हे बूलियन नाही" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "File %s/%s, %s पॅकेज मधल्या एका वर पुनर्लिखित होते" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "पर्याय %s साठी ऑर्गुमेंट पाहिजे" +msgid "Unable to stat %s" +msgstr "%s स्टॅट करण्यास असमर्थ" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "पर्याय %s: संरचितेच्या यादीतील कलमांचा तपशीलाला असलेच पाहिजे ते =<मूल्य>." +msgid "Failed to write file %s" +msgstr "%s फाईल मध्ये लिहिण्यास असमर्थ" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "%s पर्याय ला पूर्णांक ऑर्गुमेंट पाहिजे,'%s' नको" +msgid "Failed to close file %s" +msgstr "%s फाईल बंद करण्यास असमर्थ" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "'%s' पर्याय खूप लांब आहे" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "हा वैध DEB अर्काईव्ह नाही,'%s' मेंबर उपलब्ध नाही" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s संवेदना हे समजत नाही, चूक की बरोबर चा प्रयत्न करा." +msgid "Internal error, could not locate member %s" +msgstr "अंतर्गत त्रुटी,%s मेंबर शोधू शकत नाही" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "अनपार्सेबल नियंत्रण फाईल" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "अयोग्य अर्काईव्ह ओळख सही" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "अर्काईव्ह मेंबर शीर्षक वाचण्यास त्रुटी" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "अर्काईव्ह खूप छोटे आहे" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "अर्काईव्ह शीर्षके वाचणे असफल" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "पाईप तयार करण्यास असमर्थ" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "exec gzip करण्यास असमर्थ" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "बिघडलेली अर्काईव्हज" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "टार(टेपअर्काईव्ह) चेकसम चुकला, बिघडलेली अर्काईव्ह" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "%s अवैध क्रिया" +msgid "Unknown TAR header type %u, member %s" +msgstr "अपरिचित TAR शीर्षक प्रकार %u, मेंबर %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3489,7 +3494,7 @@ msgstr "MD5 कामप्युटींग करतांना वाचण msgid "Problem unlinking %s" msgstr "%s दुवा मोकळा/सुटा करण्यास अडचण" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3543,6 +3548,10 @@ msgstr "" " -c=? ही संरचना फाईल वाचा\n" " -o=?- अनियंत्रित संरचना पर्याय निश्चित करा,eg -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "अंतर्गत त्रुटी,ऑलअपग्रेडने स्टफला तोडले" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s हे वैध डीईबी पॅकेज नाही " diff --git a/po/nb.po b/po/nb.po index d24372a14..c08ea15a7 100644 --- a/po/nb.po +++ b/po/nb.po @@ -1,17 +1,17 @@ -# Norsk Bokmal translation of messages in APT. -# The file is available under Gnu Public License version 2. -# Get the license from http://www.gnu.org/licenses/gpl.txt -# Copyright: -# Lars Bahner <bahner@debian.org>, 2002-2003. -# Axel Bojer <axelb@skolelinux.no>, 2003-2004. -# Klaus Ade Johnstad <klaus@skolelinux.no>, 2004. -# Bjorn Steensrud <bjornst@powertech.no>, 2004. -# Hans Fredrik Nordhaug <hans@nordhaug.priv.no>, 2003, 2005-2010. +# Norsk Bokmal translation of messages in APT. +# The file is available under Gnu Public License version 2. +# Get the license from http://www.gnu.org/licenses/gpl.txt +# Copyright: +# Lars Bahner <bahner@debian.org>, 2002-2003. +# Axel Bojer <axelb@skolelinux.no>, 2003-2004. +# Klaus Ade Johnstad <klaus@skolelinux.no>, 2004. +# Bjorn Steensrud <bjornst@powertech.no>, 2004. +# Hans Fredrik Nordhaug <hans@nordhaug.priv.no>, 2003, 2005-2010. msgid "" msgstr "" -"Project-Id-Version: apt\n" +"Project-Id-Version: apt 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n" "Language-Team: Norwegian BokmÃ¥l <i18n-nb@lister.ping.uio.no>\n" @@ -22,3179 +22,3183 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.6.1\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Oversiktsfil av typen «%s» støttes ikke" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakken %s versjon %s har et uinnfridd avhengighetsforhold:\n" +msgid "Unable to read %s" +msgstr "Klarer ikke Ã¥ lese %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Antall pakkenavn: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Klarer ikke Ã¥ endre %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Antall pakkestrukturer: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Klarer ikke finne informasjonom %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Vanlige pakker: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Rent virtuelle pakker: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Kjører dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Enkle virtuelle pakker: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Pakkesystemet «%s» støttes ikke" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Sammensatte virtuelle pakker: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Klarer ikke bestemme en passende pakkesystemtype" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Mangler: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Skrev %i poster.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Antall unike versjoner: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Skrev %i poster med %i manglende filer.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Antall unike beskrivelser: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Skrev %i poster med %i feile filer.\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Antall avhengighetsforhold: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Antall forhold versjon/fil: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Klarte ikke finne autentiseringsoppføring for: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Antall forhold beskrivelse/fil: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hashsummen stemmer ikke for: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Antall tilbudte tilknyttinger: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Finner ikke metode-driveren %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Antall utvidede strenger: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Total plass for avhengighetsforhold/versjoner: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Metoden %s startet ikke korrekt" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Plass brukt av slark: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Sett inn disken merket «%s» i lagringsenheten «%s» og trykk Enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Samlet mengde redegjort plass: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Pakkelista eller tilstandsfila kunne ikke fortolkes eller Ã¥pnes." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakkefila %s er ikke oppdatert." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Det kan hende du vil kjøre «apt-get update» for Ã¥ rette pÃ¥ disse problemene" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Fant ingen pakker" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Kan ikke lese kildlista." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Du mÃ¥ oppgi minst ett søkemønster" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Tomt pakkelager" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Pakkens lagerfil er ødelagt" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakkens lagerfil er ødelagt" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Klarer ikke Ã¥ finne pakken %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Denne APT støtter ikke versjonssystemet «%s»" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakkefiler:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Pakkelageret ble bygd for en annen arkitektur" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Avhenger av" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "LÃ¥ste pakker:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Forutsetter" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ikke funnet)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "ForeslÃ¥r" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installert: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Anbefaler" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Er i konflikt med" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Erstatter" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakke lÃ¥st til: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Nuller" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versjonstabell:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ødelegger" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s kompilert pÃ¥ %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Forbedrer" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Bruk: apt-cache [valg] kommando\n" -" apt-cache [valg] add fil1 [fil2 ...]\n" -" apt-cache [valg] showpkg pakke1 [pakke2 ...]\n" -" apt-cache [valg] showsrc pakke1 [pakke2 ...]\n" -"\n" -"apt-cache er et lavnivÃ¥-verktøy, som brukes til Ã¥ hÃ¥ndtere APT sine binære\n" -"lagerfiler, og spørre dem om informasjon.\n" -"\n" -"Kommandoer:\n" -" add - Legg en fil til kildelageret\n" -" gencaches - Bygg lagrene for bÃ¥de pakke og kildekode\n" -" showpkg - Vis overordnet informasjon om en enkelt pakke\n" -" showsrc - Vis data om kildekoden\n" -" stats - Vis en enkel statistikk\n" -" dump - Vis fila med liste over tilgjengelige pakker i kompakt form\n" -" dumpavail - Send hele lista over tilgjengelige pakker til standard ut\n" -" unmet - Vis uinnfridde avhengighetsforhold\n" -" search - Søk i pakkelista etter et regulært uttrykkr\n" -" show - Vis et lesbart oppslag for pakken\n" -" showauto - Vis en liste med automatisk installerte pakker\n" -" depends - Vis rÃ¥ informasjon om avhengighetsforholdene for pakken\n" -" rdepends - Vis informasjon om de reverserte avhengighetsforholdene for " -"pakken\n" -" pkgnames - List alle pakkenavn pÃ¥ systemet\n" -" dotty - Lag pakke-grafer for GraphViz\n" -" xvcg - Lag pakke-grafer for xvcg\n" -" policy - Vis regelinnstillingerr\n" -"\n" -"Valg:\n" -" -h Denne hjelpeteksten\n" -" -p=? Pakkelageret.\n" -" -s=? Kildekodelageret.\n" -" -q Ikke vis framdrift.\n" -" -i Vis bare viktige avhengighetsforhold for kommandoen «unmet».\n" -" -c=? Les denne innstillingsfila.\n" -" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" -"Les manualsidene apt-cache(8) og apt.conf(5) for mer informasjon.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "viktig" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Oppgi et navn for disken, for eksempel «Debian 5.0.3 Disk 1»" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "pÃ¥krevet" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Sett inn en disk i lagringsenheten og trykk Enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "vanlig" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Klarte ikke montere «%s» pÃ¥ «%s»" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "valgfri" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "tillegg" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Gjenta denne prosessen for resten av CD-ene i ditt sett." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Oversiktsfil av typen «%s» støttes ikke" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Ikke parvise argumenter" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Kompileringsfeil i regulært uttrykk - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Bruk: apt-config [innstillinger] kommando\n" -"\n" -"apt-config er et enkelt verktøy til Ã¥ lese APTs innstillingsfil\n" -"\n" -"Kommandoer:\n" -" shell - Skallmodus\n" -" dump - Vis innstillingene\n" -"\n" -"Innstillinger:\n" -" -h Denne hjelpeteksten\n" -" -c=? Les denne innstillingsfila.\n" -" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Lageret har et uoverensstemmende versjonssystem" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Feil oppsto under behandling av %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Jøss, du har overgÃ¥tt antallet pakkenavn denne APT klarer." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Jøss, du har overgÃ¥tt antallet versjoner denne APT klarer." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Velger «%s» som kildepakke istedenfor «%s»\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Jøss, du har overgÃ¥tt antallet beskrivelser denne APT klarer." -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorer utilgjengelig versjon «%s» av pakke «%s»" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Klarte ikke Ã¥ finne pakken %s" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Fant ikke pakken %s %s ved behandling av filkrav" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s satt til manuell installasjon.\n" +msgid "Couldn't stat source package list %s" +msgstr "Klarte ikke finne informasjon om %s - lista over kildekodepakker" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Leser pakkelister" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Samler inn filtilbud" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s satt til automatisk installasjon.\n" +msgid "Unable to write to %s" +msgstr "Kan ikke skrive til %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO-feil ved lagring av kildekode-lager" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Intern feil, problemløser ødela noe" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Klarer ikke Ã¥ lÃ¥se nedlastingsmappa" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Du mÃ¥ angi minst en pakke du vil ha kildekoden til" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Klarer ikke Ã¥ finne en kildekodepakke for %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "klarte ikke Ã¥ endre navnet, %s (%s -> %s)." -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hashsummen stemmer ikke" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Feil størrelse" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Ugyldig operasjon %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"MERK: «%s»-pakker blir vedlikeholdt i versjonskontrollsystemet «%s» pÃ¥:\n" -"%s\n" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -"Bruk:\n" -"bzr get %s\n" -"for Ã¥ hente siste (muligens ikke utgitte) oppdateringer for pakken.\n" +"Det er ingen offentlig nøkkel tilgjengelig for de følgende nøkkel-ID-ene:\n" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Hopper over allerede nedlastet fil «%s»\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Klarte ikke bestemme ledig plass i %s" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har ikke nok ledig plass i %s" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"En feil oppstod under signaturverifisering. Depotet er ikke oppdatert og den " +"forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\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:891 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Trenger Ã¥ skaffe %sB av %sB fra kildekodearkivet.\n" +msgid "GPG error: %s: %s" +msgstr "GPG-feil: %s: %s" -#. 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:896 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Trenger Ã¥ skaffe %sB fra kildekodearkivet.\n" +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 "" +"Klarte ikke Ã¥ finne en fil for pakken %s. Det kan bety at du mÃ¥ ordne pakken " +"selv (fordi arkitekturen mangler)." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Fetch source %s\n" -msgstr "Skaffer kildekode %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Klarte ikke Ã¥ skaffe alle arkivene." +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Nedlasting fullført med innstillinga «bare nedlasting»" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Oversiktsfilene er ødelagte. Feltet «Filename:» mangler for pakken %s." -#: cmdline/apt-get.cc:950 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "OmgÃ¥r utpakking av allerede utpakket kilde i %s\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Utpakkingskommandoen «%s» mislyktes.\n" +msgid "List directory %spartial is missing." +msgstr "Listemappa %spartial mangler." -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" +msgid "Archives directory %spartial is missing." +msgstr "Arkivmappa %spartial mangler." -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Byggekommandoen «%s» mislyktes.\n" +msgid "Unable to lock directory %s" +msgstr "Klarte ikke lÃ¥se mappa %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barneprosessen mislyktes" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Henter fil %li av %li (%s gjenværende)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Du mÃ¥ angi minst en pakke du vil sjekke «builddeps» for" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Henter fil %li av %li" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Klarte ikke Ã¥ skaffe %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Klarte ikke Ã¥ laste ned alle oversiktfilene. De ble ignorerte, eller gamle " +"ble brukt isteden. " -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Klarer ikke Ã¥ skaffe informasjon om bygge-avhengighetene for %s" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"Beklager, du mÃ¥ legge inn noen kilder (nettadresser) i din «sources.list»." -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:83 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s har ingen avhengigheter.\n" - -#: cmdline/apt-get.cc:1271 -#, 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" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/policy.cc:422 #, 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" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ugyldig oppslag i foretrekksfila %s, manglende pakkehode" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:444 #, 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" +msgid "Did not understand pin type %s" +msgstr "Forsto ikke spikring av typen %s" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ingen prioritet (eller null) spesifisert for pin" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige " -"versjoner av pakken %s som oppfyller versjonskravene" +"Klarte ikke gjennomføre umiddelbar konfigurasjon av «%s». Se man 5 apt.conf " +"under APT::Immediate-Configure for detaljer. (%d)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Klarte ikke Ã¥pne fila «%s»" + +#: apt-pkg/packagemanager.cc:583 +#, 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" +"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 "" +"Den forestÃ¥ende installasjon mÃ¥ midlertidig fjerne den meget viktige pakken " +"%s pga. en konflikt/forutsettelses-løkke. Dette er ofte stygt, men hvis du " +"virkelig vil det, sÃ¥ bruk innstillingen APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Klarte ikke Ã¥ tilfredsstille %s avhengighet for %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Linje %u i kildelista %s er for lang" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterer CD-ROM ...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Klarte ikke Ã¥ tilfredstille bygg-avhengighetene for %s." +msgid "Using CD-ROM mount point %s\n" +msgstr "Bruker CD-ROM monteringspunkt %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Klarte ikke Ã¥ behandle forutsetningene for bygging" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Venter pÃ¥ CD-en...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Kobler til %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterer CD-ROM...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Støttede moduler:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Indentifiserer..." -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Lagret merkelapp: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Leter gjennom CD for indeksfiler...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Bruk: apt-get [valg] kommando\n" -" apt-get [valg] install|remove pakke1 [pakke2 ...]\n" -" apt-get [valg] source pakke1 [pakke2 ...]\n" -"\n" -"apt-get er et enkelt grensesnitt som kan brukes fra kommandolinja\n" -"for Ã¥ laste ned og installere pakker. De mest brukte kommandoene \n" -"er «update» og «install».\n" -"\n" -"Kommandoer:\n" -" update - Hent nye pakkelister\n" -" upgrade - Utfør en oppgradering\n" -" install - Installér nye pakker (Pakke er «foo», ikke «foo.deb»)\n" -" remove - Fjern pakker\n" -" autoremove - Fjern alle automatisk ubrukte pakker\n" -" purge - Fjern og rydd opp etter pakker\n" -" source - Last ned kildekode fra arkivene\n" -" build-dep - Sett opp bygge-forutsetninger for kildekodepakker\n" -" dist-upgrade - Oppgradér utgave, les apt-get(8)\n" -" dselect-upgrade - Følg «dselect» sine anbefalinger\n" -" clean - Slett nedlastede arkivfiler\n" -" autoclean - Slett gamle nedlastede arkivfiler\n" -" check - Se etter om det finnes brutte avhengigheter\n" -" markauto - Merk de oppgitte pakkene som automatisk installert\n" -" unmarkauto - Merk de oppgitte pakkene som manuelt installert\n" -"\n" -"Valg:\n" -" -h Denne hjelpteksten.\n" -" -q Loggbar tilbakemelding - ikke vis framdrift\n" -" -qq Ingen tilbakemelding - bortsett fra feilmeldinger\n" -" -d Bare nedlasting - IKKE installér eller pakk ut arkivfilene\n" -" -s Simulering - bare simuler kommandoen\n" -" -y Anta Ja til alle forespørsler uten Ã¥ spørre\n" -" -f Prøv Ã¥ fortsette hvis integritetstesten mislykkes\n" -" -m Prøv Ã¥ fortsette nÃ¥r pakker mangler\n" -" -u Vis liste med oppgraderte pakker\n" -" -b Bygg pakken etter at kildekoden er lastet ned\n" -" -V Vis fullstendige versjonsnummere\n" -" -c=? Les denne innstillingsfila\n" -" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" -"Les manualsiden apt-get(8), sources.list(5) og apt.conf(5)\n" -"for mer informasjon og flere valg.\n" -" Denne APT har kraften til en Superku.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Du mÃ¥ angi minst en pakke du vil ha kildekoden til" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Fant %zu pakkeindekser, %zu kildeindekser, %zu oversettelsesindekser og %zu " +"signaturer\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Klarte ikke finne noen Package-filer. Kanskje dette ikke er en Debian Disc " +"eller du har valgt feil arkitektur?" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "men er ikke installert" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s satt til manuell installasjon.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s satt til automatisk installasjon.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s er allerede nyeste versjon.\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Fant merkelapp «%s»\n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s er allerede nyeste versjon.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Det er ikke et gyldig navn, prøv igjen.\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Ventet pÃ¥ %s, men den ble ikke funnet" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"CD-en er kalt: \n" +"«%s»\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s satt til manuell installasjon.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierer pakkelister..." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Klarte ikke Ã¥ Ã¥pne %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriver ny kildeliste\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Kildelisteoppføringer for denne CD-en er:\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Pakka %s trenger Ã¥ installeres pÃ¥ nytt, men jeg finner ikke lageret for den." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " +"som holdes tilbake." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Klarer ikke Ã¥ lese CD-databasen %s" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Klarer ikke Ã¥ rette problemene, noen ødelagte pakker er holdt tilbake." -#: 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 "" -"Bruk «apt-cdrom» for Ã¥ gjøre denne CD-plata tilgjengelig for APT. Du kan " -"ikke bruke «apt-get update» til Ã¥ legge til nye CD-plater." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Skaper oversikt over avhengighetsforhold" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Feil CD-plate" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versjons-kandidater" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Klarer ikke Ã¥ avmontere CD-plata i %s. Det kan hende plata fremdeles er i " -"bruk." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Oppretter avhengighetsforhold" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk ikke funnet." +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Leser tilstandsinformasjon" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fant ikke fila" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Klarte ikke Ã¥ Ã¥pne StateFile %s" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Klarte ikke Ã¥ fÃ¥ status" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Klarte ikke Ã¥ skrive midlertidig StateFile %s" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Klarte ikke Ã¥ sette endringstidspunkt" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (1)" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ugyldig adresse. Lokale adresser kan ikke starte med //" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (2)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Logger inn" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Utgave «%s» av «%s» ble ikke funnet" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Klarte ikke Ã¥ fastslÃ¥ navnet pÃ¥ motparten" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versjon «%s» av «%s» ble ikke funnet" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Klarte ikke Ã¥ fastslÃ¥ det lokale navnet" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Klarer ikke Ã¥ finne pakken %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Tjeneren nektet oss Ã¥ kople til og sa: %s" +msgid "Couldn't find task '%s'" +msgstr "Klarte ikke Ã¥ finne oppgave «%s»" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER mislykkes, tjeneren sa: %s" +msgid "Couldn't find any package by regex '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS mislykkes, tjeneren sa: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Klarte ikke velge versjoner fra pakken «%s» siden den er kun virtuell" -#: methods/ftp.cc:252 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::" -"ftp::ProxyLogin» er tomt." +"Klarte ikke velge installert eller kandidatversjon fra pakken «%s» siden den " +"har ingen av dem" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Klarte ikke velge nyeste versjon fra pakken «%s» siden den er kun virtuell" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE mislykkes, tjeneren sa: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Tidsavbrudd pÃ¥ forbindelsen" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Klarte ikke velge kandidatversjon fra pakken «%s» siden den ikke har noen " +"kandidat" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Tjeneren lukket forbindelsen" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Klarte ikke velge installert versjon fra pakken «%s» siden den ikke er " +"installert" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Lesefeil" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Et svar oversvømte bufferen." +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Ingen avsnitt i Release-fila %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokollødeleggelse" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Ingen sjekksumoppføring i Release-fila %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Skrivefeil" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ugyldig «Valid-Until»-oppføring i Release-fila %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Klarte ikke Ã¥ opprette en sokkel" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ugyldig «Date»-oppføring i Release-fila %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Klarte ikke Ã¥ kople til datasokkelen, tidsavbrudd pÃ¥ forbindelsen" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Feil pÃ¥ %lu i kildelista %s (fortolkning av nettadressen)" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Mislyktes" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([valg] ikke tolkbar)" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Klarte ikke Ã¥ koble til en passiv sokkel." +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([valg] for kort)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo klarte ikke Ã¥ opprette en lyttesokkel" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] er ingen tilordning)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Klarte ikke Ã¥ binde til sokkel" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] har ingen nøkkel)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Klarte ikke Ã¥ lytte til sokkel" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] nøkkel %s har ingen verdi)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Klarte ikke Ã¥ avgjøre sokkelnavnet" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s (nettadresse)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Klarte ikke Ã¥ sende PORT-kommandoen" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s (dist)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ukjent adressefamilie %u (AF_*)" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Feil pÃ¥ %lu i kildelista %s (fortolkning av nettadressen)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT mislykkes, tjeneren sa: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Feil pÃ¥ %lu i kildelista %s (Absolutt dist)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Tidsavbrudd pÃ¥ tilkoblingen til datasokkelen" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Feil pÃ¥ %lu i kildelista %s (dist fortolking)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Klarte ikke Ã¥ godta tilkoblingen" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Åpner %s" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem ved oppretting av nøkkel for fil" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Feil pÃ¥ %u i kildelista %s (type)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Klarte ikke Ã¥ hente fila, tjeneren sa «%s»" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Tidsavbrudd pÃ¥ datasokkelen" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»" +msgid "Installing %s" +msgstr "Installerer %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Spørring" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Setter opp %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Klarte ikke Ã¥ starte" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Fjerner %s" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Kobler til %s (%s)" +msgid "Completely removing %s" +msgstr "Fjerner %s fullstendig" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Noting disappearance of %s" +msgstr "Legger merke til at %s forsvinner" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:100 #, 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)" +msgid "Running post-installation trigger %s" +msgstr "Kjører etter-installasjonsutløser %s" -#: methods/connect.cc:100 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Klarte ikke Ã¥ starte forbindelsen til %s:%s (%s)." +msgid "Directory '%s' missing" +msgstr "Mappa «%s» mangler" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Klarte ikke Ã¥ koble til %s:%s (%s), tidsavbrudd pÃ¥ forbindelsen" +msgid "Could not open file '%s'" +msgstr "Klarte ikke Ã¥pne fila «%s»" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Klarte ikke Ã¥ koble til %s:%s (%s)." +msgid "Preparing %s" +msgstr "Forbereder %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Pakker ut %s" + +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Connecting to %s" -msgstr "Kobler til %s" +msgid "Preparing to configure %s" +msgstr "Forbereder oppsett av %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not resolve '%s'" -msgstr "Klarte ikke Ã¥ slÃ¥ opp «%s»" +msgid "Installed %s" +msgstr "Installerte %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Midlertidig feil ved oppslag av «%s»" +msgid "Preparing for removal of %s" +msgstr "Forbereder fjerning av %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Fjernet %s" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" +msgid "Preparing to completely remove %s" +msgstr "Forbereder Ã¥ fullstendig slette %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Klarte ikke koble til %s:%s:" +msgid "Completely removed %s" +msgstr "Fjernet %s fullstendig" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Minst en ugyldig signatur ble funnet." +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Kan ikke skrive til %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -"Klarte ikke kjøre «gpgv» for Ã¥ verifisere signaturen (er gpgv installert?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Waited for %s but it wasn't there" +msgstr "Ventet pÃ¥ %s, men den ble ikke funnet" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Ukjent feil ved kjøring av gpgv" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Ingen apport-rapport skrevet for MaxReports allerede er nÃ¥dd" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "De følgende signaturene var ugyldige:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "avhengighetsproblemer - lar den være uoppsatt" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen " -"ikke er tilgjengelig:\n" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer at den er en " +"følgefeil fra en tidligere feil." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" +"feil" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Feil ved skriving til fila" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Feil ved lesing fra tjeneren" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Feil ved skriving til fil" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Utvalget mislykkes" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Tidsavbrudd pÃ¥ forbindelsen" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Feil ved skriving til utfil" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Venter pÃ¥ hoder" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ødelagt hodelinje" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP-tjeneren sendte et ugyldig svarhode" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode" - -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Denne HTTP-tjeneren har ødelagt støtte for omrÃ¥de" - -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ukjent datoformat" - -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Ødelagte hodedata" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «tom for " +"minne»-feil" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Forbindelsen mislykkes" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" +"feil" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Intern feil" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «dpkg I/O»-feil" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Beregner oppgradering... " +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Klarte ikke lÃ¥se den administrative mappen (%s). Bruker en annen prosess den?" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Intern feil - «AllUpgrade» ødela noe" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Klarte ikke lÃ¥se den administrative mappen (%s). Er du root?" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Utført" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg ble avbrutt. Du mÃ¥ kjøre «%s» manuelt for Ã¥ rette problemet," -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Ikke lÃ¥st" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lit %lim %lis" -#: apt-private/private-list.cc:164 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "%lih %limin %lis" +msgstr "%lit %lim %lis" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Retter pÃ¥ avhengighetsforhold ..." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%lim %lis" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislyktes." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Klarer ikke Ã¥ rette pÃ¥ avhengighetsforholdene" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Fant ikke utvalget %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Klarer ikke Ã¥ minimere oppgraderingsettet" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Bruker ikke lÃ¥sing for den skrivebeskyttede lÃ¥sefila %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Utført" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Klarte ikke Ã¥pne lÃ¥sefila %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Du vil kanskje kjøre «apt-get -f install» for Ã¥ rette pÃ¥ dette." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Bruker ikke lÃ¥sing pÃ¥ den nfs-monterte lÃ¥sefila %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "FÃ¥r ikke lÃ¥st %s" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprosessen %s mottok et minnefeilsignal." -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Underprosessen %s mottok signalet %u." -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Underprosessen %s ga en feilkode (%u)" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprosessen %s avsluttet uventet" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Følgende pakker har uinnfridde avhengighetsforhold:" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Skrivefeil" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "but %s is installed" -msgstr "men %s er installert" +msgid "Problem closing the gzip file %s" +msgstr "Problem ved lÃ¥sing av gzip-fila %s" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "but %s is to be installed" -msgstr "men %s skal installeres" +msgid "Could not open file %s" +msgstr "Klarte ikke Ã¥pne fila %s" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "men lar seg ikke installere" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Klarte ikke Ã¥pne fildeskriptor %d" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "men er en virtuell pakke" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Klarte ikke Ã¥ opprette underprosessen IPC" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "men er ikke installert" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Klarte ikke Ã¥ kjøre komprimeringen" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "men skal ikke installeres" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Lesefeil" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " eller" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "lese, har fremdeles %lu igjen Ã¥ lese, men ingen igjen" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Følgende NYE pakker vil bli installert:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skrive, har fremdeles %lu igjen Ã¥ skrive, men klarte ikke Ã¥" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Følgende pakker vil bli FJERNET:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem ved lÃ¥sing av fila %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Følgende pakker er holdt tilbake:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem ved endring av navn pÃ¥ fila %s til %s" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Følgende pakker vil bli oppgradert:" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem ved oppheving av lenke til fila %s" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Følgende pakker vil bli NEDGRADERT:" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem ved oppdatering av fila" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Følgende pakker vil bli endret:" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s ... Feil" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%s (due to %s) " -msgstr "%s (pga. %s) " +msgid "%c%s... Done" +msgstr "%c%s ... Ferdig" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"ADVARSEL: Følgende essensielle pakker vil bli fjernet.\n" -"Dette bør IKKE gjøres, med mindre du vet nøyaktig hva du gjør!" -#: apt-private/private-output.cc:694 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu oppgraderte, %lu nylig installerte, " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Ferdig" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu installert pÃ¥ nytt, " +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan ikke utføre mmap pÃ¥ en tom fil" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "%lu downgraded, " -msgstr "%lu nedgraderte, " +msgid "Couldn't duplicate file descriptor %i" +msgstr "Klarte ikke duplisere fildeskriptor %i" -#: apt-private/private-output.cc:702 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu Ã¥ fjerne og %lu ikke oppgradert.\n" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Klarte ikke lage mmap av %lu bytes" -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pakker ikke fullt installert eller fjernet.\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Klarte ikke lukke mmap" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[J/n]" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Klarte ikke synkronisere mmap" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[j/N]" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Klarte ikke lage mmap av %lu bytes" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "J" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Klarte ikke forkorte fila %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" +#: 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 "" +"Dynamisk MMap gikk tom for minne. Øk størrelsen pÃ¥ APT::Cache-Start. " +"NÃ¥værende verdi: %lu. (man 5 apt.conf)" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "Regex compilation error - %s" -msgstr "Kompileringsfeil i regulært uttrykk - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Oppdaterings-kommandoen tar ingen argumenter" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Klarte ikke øke størrelsen pÃ¥ MMap-en siden grensen pÃ¥ %lu byte allerede er " +"nÃ¥dd." -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Klarte ikke øke størrelsen pÃ¥ MMap-en siden automatisk voksing er deaktivert " +"av brukeren." -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Unable to stat the mount point %s" +msgstr "Klarer ikke Ã¥ fastsette monteringspunktet %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Klarer ikke Ã¥ fÃ¥ statusen pÃ¥ CD-spilleren" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ukjent typeforkortelse: «%c»" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakker trenges Ã¥ fjernes, men funksjonen er slÃ¥tt av." +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Åpner oppsettsfila %s" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Intern feil, sortering fullførte ikke" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksfeil %s:%u: Blokka starter uten navn." -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"SÃ¥ rart ... Størrelsene stemmer ikke overens, send en e-post til " -"apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksfeil %s:%u: Feil pÃ¥ taggen" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "MÃ¥ hente %sB/%sB med arkiver.\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "MÃ¥ hente %sB med arkiver.\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaksfeil %s:%u: Direktivene kan bare ligge i det øverste nivÃ¥et" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Etter denne operasjonen vil %sB ekstra diskplass bli brukt.\n" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksfeil %s:%u: Inkludert herfra" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Dessverre, ikke nok ledig plass i %s" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaksfeil %s:%u: clear-direktivet krever et valgtre som argument" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaksfeil %s:%u: Ugyldige angivelser pÃ¥ slutten av fila" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Ja, gjør som jeg sier!" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Ingen nøkkelring installert i %s." -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Du er iferd med Ã¥ utføre en mulig skadelig handling.\n" -"For Ã¥ fortsette skriv inn teksten «%s»\n" -" ?] " +msgid "Command line option '%c' [from %s] is not known." +msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)." -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Avbryter." +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Skjønner ikke kommandolinjevalget %s" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Vil du fortsette?" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Kommandolinjevalget %s er ikke boolsk" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Klarte ikke laste ned alle filene" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Valget %s krever et argument." -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Klarte ikke Ã¥ hente alle arkivene. Du kan prøve med «apt-get update» eller " -"«--fix-missing»." +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Valg %s: Angivelsen av oppsettselementet mÃ¥ ha en =<verdi>." -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "«--fix-missing» og bytte av media støttes nÃ¥ ikke" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Valget %s mÃ¥ ha et heltallsargument, ikke «%s»" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Klarer ikke Ã¥ rette pÃ¥ manglende pakker." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Valget «%s» er for langt" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Avbryter installasjonen." +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Skjønner ikke %s. Prøv «true» eller «false»." -#: apt-private/private-install.cc:365 -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] "" -"Den følgende pakken forsvant fra systemet ditt siden\n" -"alle filene er overskrevet av andre pakker:" -msgstr[1] "" -"De følgende pakkene forsvant fra systemet ditt siden\n" -"alle filene er overskrevet av andre pakker:" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Ugyldig operasjon %s" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakken %s versjon %s har et uinnfridd avhengighetsforhold:\n" -#: apt-private/private-install.cc:390 -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-cache.cc:277 +msgid "Total package names: " +msgstr "Antall pakkenavn: " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, det ser ut som auto-fjerneren (AutoRemover) ødela noe, og det skal\n" -"virkelig ikke skje. Send inn en feilmelding til apt-utviklerne." +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Antall pakkestrukturer: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -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-cache.cc:319 +msgid " Normal packages: " +msgstr " Vanlige pakker: " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Rent virtuelle pakker: " -#: apt-private/private-install.cc:512 -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] "" -"Følgende pakke ble automatisk installert og er ikke lenger pÃ¥krevet:" -msgstr[1] "" -"Følgende pakker ble automatisk installert og er ikke lenger pÃ¥krevet:" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Enkle virtuelle pakker: " -#: apt-private/private-install.cc:516 -#, 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 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-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Sammensatte virtuelle pakker: " -#: apt-private/private-install.cc:518 -#, 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-cache.cc:323 +msgid " Missing: " +msgstr " Mangler: " -#: apt-private/private-install.cc:612 -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-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Antall unike versjoner: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " -"angi en løsning)." +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Antall unike beskrivelser: " -#: apt-private/private-install.cc:628 -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 "" -"Noen pakker ble ikke installeres. Dette kan bety at du har bedt om\n" -"en umulig tilstand eller, hvis du bruker den ustabile utgaven av Debian,\n" -"at visse kjernepakker ennÃ¥ ikke er laget eller flyttet ut av «Incoming» for\n" -"distribusjonen." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Antall avhengighetsforhold: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Ødelagte pakker" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Antall forhold versjon/fil: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Følgende ekstra pakker vil bli installert." +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Antall forhold beskrivelse/fil: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "ForeslÃ¥tte pakker:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Antall tilbudte tilknyttinger: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Anbefalte pakker" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Antall utvidede strenger: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"OmgÃ¥r %s - den er allerede installert eller ikke satt til oppgradering.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Total plass for avhengighetsforhold/versjoner: " -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Hopper over %s siden den ikke er installert eller kun oppgraderinger er " -"ønsket.\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Plass brukt av slark: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Det er ikke mulig Ã¥ installere %s pÃ¥ nytt - den kan ikke nedlastes.\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Samlet mengde redegjort plass: " -#: apt-private/private-install.cc:836 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s er allerede nyeste versjon.\n" +msgid "Package file %s is out of sync." +msgstr "Pakkefila %s er ikke oppdatert." -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Fant ingen pakker" -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Du mÃ¥ oppgi minst ett søkemønster" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakkefiler:" -#: apt-private/private-main.cc:32 -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!" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"MERK: Dette er kun en simulering.\n" -" apt-get mÃ¥ ha root-rettigheter for reell utførelse.\n" -" Husk ogsÃ¥ at lÃ¥sing er deaktivert, sÃ¥ ikke regn med \n" -" relevans i forhold til den reelle gjeldende situasjonen." +"Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "LÃ¥ste pakker:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentiseringsadvarsel overstyrt.\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ikke funnet)" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Noen pakker ble ikke autentisert" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installert: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installer disse pakkene uten verifikasjon?" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Klarte ikke Ã¥ skaffe %s %s\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ingen)" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Klarte ikke Ã¥ endre navnet pÃ¥ %s til %s" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pakke lÃ¥st til: " -#: apt-private/private-sources.cc:70 +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versjonstabell:" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s for %s kompilert pÃ¥ %s %s\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Bruk: apt-cache [valg] kommando\n" +" apt-cache [valg] add fil1 [fil2 ...]\n" +" apt-cache [valg] showpkg pakke1 [pakke2 ...]\n" +" apt-cache [valg] showsrc pakke1 [pakke2 ...]\n" +"\n" +"apt-cache er et lavnivÃ¥-verktøy, som brukes til Ã¥ hÃ¥ndtere APT sine binære\n" +"lagerfiler, og spørre dem om informasjon.\n" +"\n" +"Kommandoer:\n" +" add - Legg en fil til kildelageret\n" +" gencaches - Bygg lagrene for bÃ¥de pakke og kildekode\n" +" showpkg - Vis overordnet informasjon om en enkelt pakke\n" +" showsrc - Vis data om kildekoden\n" +" stats - Vis en enkel statistikk\n" +" dump - Vis fila med liste over tilgjengelige pakker i kompakt form\n" +" dumpavail - Send hele lista over tilgjengelige pakker til standard ut\n" +" unmet - Vis uinnfridde avhengighetsforhold\n" +" search - Søk i pakkelista etter et regulært uttrykkr\n" +" show - Vis et lesbart oppslag for pakken\n" +" showauto - Vis en liste med automatisk installerte pakker\n" +" depends - Vis rÃ¥ informasjon om avhengighetsforholdene for pakken\n" +" rdepends - Vis informasjon om de reverserte avhengighetsforholdene for " +"pakken\n" +" pkgnames - List alle pakkenavn pÃ¥ systemet\n" +" dotty - Lag pakke-grafer for GraphViz\n" +" xvcg - Lag pakke-grafer for xvcg\n" +" policy - Vis regelinnstillingerr\n" +"\n" +"Valg:\n" +" -h Denne hjelpeteksten\n" +" -p=? Pakkelageret.\n" +" -s=? Kildekodelageret.\n" +" -q Ikke vis framdrift.\n" +" -i Vis bare viktige avhengighetsforhold for kommandoen «unmet».\n" +" -c=? Les denne innstillingsfila.\n" +" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" +"Les manualsidene apt-cache(8) og apt.conf(5) for mer informasjon.\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Funnet " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Hent:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Feil " +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Oppgi et navn for disken, for eksempel «Debian 5.0.3 Disk 1»" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hentet %sB pÃ¥ %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Sett inn en disk i lagringsenheten og trykk Enter" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid " [Working]" -msgstr " [Arbeider]" +msgid "Failed to mount '%s' to '%s'" +msgstr "Klarte ikke montere «%s» pÃ¥ «%s»" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-cdrom.cc:178 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Bytte av media: sett inn CD-en som er merket\n" -" «%s»\n" -"i «%s» og trykk «Enter»\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Klarer ikke Ã¥ lese %s" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Gjenta denne prosessen for resten av CD-ene i ditt sett." -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Klarer ikke Ã¥ endre %s" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Ikke parvise argumenter" -#. 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 "Ingen speilfil «%s» funnet" +#: cmdline/apt-config.cc:89 +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 "" +"Bruk: apt-config [innstillinger] kommando\n" +"\n" +"apt-config er et enkelt verktøy til Ã¥ lese APTs innstillingsfil\n" +"\n" +"Kommandoer:\n" +" shell - Skallmodus\n" +" dump - Vis innstillingene\n" +"\n" +"Innstillinger:\n" +" -h Denne hjelpeteksten\n" +" -c=? Les denne innstillingsfila.\n" +" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Ingen speilfil «%s» funnet" +msgid "Can not find a package for architecture '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Ingen speilfil «%s» funnet" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Speil: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Klarte ikke Ã¥ opprette IPC-rør til underprosessen" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Forbindelsen ble uventet stengt" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Feil standardinnstilling!" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Trykk «Enter» og fortsett" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Velger «%s» som kildepakke istedenfor «%s»\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Vil du slettet alle tidligere nedlastede .deb-filer?" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorer utilgjengelig versjon «%s» av pakke «%s»" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Feil oppstod ved utpakkinga. Setter nÃ¥ opp de installerte pakkene." +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Klarte ikke Ã¥ finne pakken %s" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "Det kan lede til fordobling av feil eller feil forÃ¥rsaket av " +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s satt til manuell installasjon.\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "manglende forutsetninger. Det er greit, bare de nevnte feilene er" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s satt til automatisk installasjon.\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "av betydning. Sett dem i stand dem og kjør [I]nstall igjen." - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Fletter tilgjengelig informasjon" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode ble startet pÃ¥ et knutepunkt som ennÃ¥ er lenket" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Fant ikke nøkkelelementet." - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Klarte ikke Ã¥ tildele avledning" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Intern feil i AddDiversion" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Prøver Ã¥ skrive over en avledning, %s -> %s og %s/%s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Intern feil, problemløser ødela noe" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobbel tillegging av avledning %s -> %s" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Klarer ikke Ã¥ lÃ¥se nedlastingsmappa" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dobbel oppsettsfil %s/%s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Du mÃ¥ angi minst en pakke du vil ha kildekoden til" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "The path %s is too long" -msgstr "Stien %s er for lang" +msgid "Unable to find a source package for %s" +msgstr "Klarer ikke Ã¥ finne en kildekodepakke for %s" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Unpacking %s more than once" -msgstr "Pakker ut %s mer enn en gang" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"MERK: «%s»-pakker blir vedlikeholdt i versjonskontrollsystemet «%s» pÃ¥:\n" +"%s\n" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Katalogen %s er avledet" +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Bruk:\n" +"bzr get %s\n" +"for Ã¥ hente siste (muligens ikke utgitte) oppdateringer for pakken.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:843 #, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Avledningsstien er for lang" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Hopper over allerede nedlastet fil «%s»\n" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Failed to stat %s" -msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" +msgid "Couldn't determine free space in %s" +msgstr "Klarte ikke bestemme ledig plass i %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Klarte ikke Ã¥ endre navnet pÃ¥ %s til %s" +msgid "You don't have enough free space in %s" +msgstr "Du har ikke nok ledig plass i %s" -#: apt-inst/extract.cc:249 +#. 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:891 #, 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:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Fant ikke knutepunktet i dens hash-spann" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Stien er for lang" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Trenger Ã¥ skaffe %sB av %sB fra kildekodearkivet.\n" -#: apt-inst/extract.cc:421 +#. 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:896 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Skriver over pakketreff uten versjon for %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Trenger Ã¥ skaffe %sB fra kildekodearkivet.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:902 #, 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" +msgid "Fetch source %s\n" +msgstr "Skaffer kildekode %s\n" -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Klarte ikke Ã¥ skaffe alle arkivene." -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "Klarte ikke Ã¥ skrive fila %s" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Nedlasting fullført med innstillinga «bare nedlasting»" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to close file %s" -msgstr "Klarte ikke Ã¥ lukke fila %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "OmgÃ¥r utpakking av allerede utpakket kilde i %s\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:962 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dette er ikke et gyldig DEB-arkiv, mangler «%s»-medlemmet" +msgid "Unpack command '%s' failed.\n" +msgstr "Utpakkingskommandoen «%s» mislyktes.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Intern feil, fant ikke medlemmet %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Kontrollfila kan ikke tolkes" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Byggekommandoen «%s» mislyktes.\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ugyldig arkivsignatur" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Barneprosessen mislyktes" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Feil ved lesing av arkivmedlemshode" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "Du mÃ¥ angi minst en pakke du vil sjekke «builddeps» for" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldig arkivmedlemshode %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ugyldig arkivmedlemshode" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkivet er for kort" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Klarer ikke Ã¥ skaffe informasjon om bygge-avhengighetene for %s" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Klarte ikke Ã¥ lese arkivhodene" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s har ingen avhengigheter.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Klarte ikke Ã¥ opprette rør" +#: cmdline/apt-get.cc:1271 +#, 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" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Klarte ikke Ã¥ kjøre gzip " +#: cmdline/apt-get.cc:1289 +#, 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" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Ødelagt arkiv" +#: cmdline/apt-get.cc:1312 +#, 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" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige " +"versjoner av pakken %s som oppfyller versjonskravene" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Ukjent TAR-hode: type %u, medlem %s" +#: cmdline/apt-get.cc:1357 +#, 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" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Unable to stat %s." -msgstr "Klarer ikke finne informasjonom %s." +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Klarte ikke Ã¥ tilfredsstille %s avhengighet for %s: %s" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Klarte ikke Ã¥ tilfredstille bygg-avhengighetene for %s." -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Kjører dpkg" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Klarte ikke Ã¥ behandle forutsetningene for bygging" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakkesystemet «%s» støttes ikke" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Kobler til %s (%s)" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Klarer ikke bestemme en passende pakkesystemtype" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Støttede moduler:" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Skrev %i poster.\n" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Bruk: apt-get [valg] kommando\n" +" apt-get [valg] install|remove pakke1 [pakke2 ...]\n" +" apt-get [valg] source pakke1 [pakke2 ...]\n" +"\n" +"apt-get er et enkelt grensesnitt som kan brukes fra kommandolinja\n" +"for Ã¥ laste ned og installere pakker. De mest brukte kommandoene \n" +"er «update» og «install».\n" +"\n" +"Kommandoer:\n" +" update - Hent nye pakkelister\n" +" upgrade - Utfør en oppgradering\n" +" install - Installér nye pakker (Pakke er «foo», ikke «foo.deb»)\n" +" remove - Fjern pakker\n" +" autoremove - Fjern alle automatisk ubrukte pakker\n" +" purge - Fjern og rydd opp etter pakker\n" +" source - Last ned kildekode fra arkivene\n" +" build-dep - Sett opp bygge-forutsetninger for kildekodepakker\n" +" dist-upgrade - Oppgradér utgave, les apt-get(8)\n" +" dselect-upgrade - Følg «dselect» sine anbefalinger\n" +" clean - Slett nedlastede arkivfiler\n" +" autoclean - Slett gamle nedlastede arkivfiler\n" +" check - Se etter om det finnes brutte avhengigheter\n" +" markauto - Merk de oppgitte pakkene som automatisk installert\n" +" unmarkauto - Merk de oppgitte pakkene som manuelt installert\n" +"\n" +"Valg:\n" +" -h Denne hjelpteksten.\n" +" -q Loggbar tilbakemelding - ikke vis framdrift\n" +" -qq Ingen tilbakemelding - bortsett fra feilmeldinger\n" +" -d Bare nedlasting - IKKE installér eller pakk ut arkivfilene\n" +" -s Simulering - bare simuler kommandoen\n" +" -y Anta Ja til alle forespørsler uten Ã¥ spørre\n" +" -f Prøv Ã¥ fortsette hvis integritetstesten mislykkes\n" +" -m Prøv Ã¥ fortsette nÃ¥r pakker mangler\n" +" -u Vis liste med oppgraderte pakker\n" +" -b Bygg pakken etter at kildekoden er lastet ned\n" +" -V Vis fullstendige versjonsnummere\n" +" -c=? Les denne innstillingsfila\n" +" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" +"Les manualsiden apt-get(8), sources.list(5) og apt.conf(5)\n" +"for mer informasjon og flere valg.\n" +" Denne APT har kraften til en Superku.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Skrev %i poster med %i manglende filer.\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du mÃ¥ angi minst en pakke du vil ha kildekoden til" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Skrev %i poster med %i feile filer.\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, 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" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Klarte ikke finne autentiseringsoppføring for: %s" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "men er ikke installert" -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hashsummen stemmer ikke for: %s" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s satt til manuell installasjon.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Finner ikke metode-driveren %s." +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s satt til automatisk installasjon.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" +msgid "%s was already set on hold.\n" +msgstr "%s er allerede nyeste versjon.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoden %s startet ikke korrekt" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s er allerede nyeste versjon.\n" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Sett inn disken merket «%s» i lagringsenheten «%s» og trykk Enter." +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s satt til manuell installasjon.\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Pakkelista eller tilstandsfila kunne ikke fortolkes eller Ã¥pnes." +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Klarte ikke Ã¥ Ã¥pne %s" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Det kan hende du vil kjøre «apt-get update» for Ã¥ rette pÃ¥ disse problemene" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Kan ikke lese kildlista." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Tomt pakkelager" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Pakkens lagerfil er ødelagt" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Pakkens lagerfil er ødelagt" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Denne APT støtter ikke versjonssystemet «%s»" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Pakkelageret ble bygd for en annen arkitektur" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Avhenger av" +msgid "Unable to read the cdrom database %s" +msgstr "Klarer ikke Ã¥ lese CD-databasen %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Forutsetter" +#: 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 "" +"Bruk «apt-cdrom» for Ã¥ gjøre denne CD-plata tilgjengelig for APT. Du kan " +"ikke bruke «apt-get update» til Ã¥ legge til nye CD-plater." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "ForeslÃ¥r" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Feil CD-plate" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Anbefaler" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Klarer ikke Ã¥ avmontere CD-plata i %s. Det kan hende plata fremdeles er i " +"bruk." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Er i konflikt med" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk ikke funnet." -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Erstatter" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fant ikke fila" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Nuller" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Klarte ikke Ã¥ fÃ¥ status" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ødelegger" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Klarte ikke Ã¥ sette endringstidspunkt" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Forbedrer" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ugyldig adresse. Lokale adresser kan ikke starte med //" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "viktig" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Logger inn" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "pÃ¥krevet" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Klarte ikke Ã¥ fastslÃ¥ navnet pÃ¥ motparten" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "vanlig" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Klarte ikke Ã¥ fastslÃ¥ det lokale navnet" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valgfri" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Tjeneren nektet oss Ã¥ kople til og sa: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "tillegg" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER mislykkes, tjeneren sa: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Oversiktsfil av typen «%s» støttes ikke" +msgid "PASS failed, server said: %s" +msgstr "PASS mislykkes, tjeneren sa: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Lageret har et uoverensstemmende versjonssystem" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::" +"ftp::ProxyLogin» er tomt." -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Feil oppsto under behandling av %s (FindPkg)" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Jøss, du har overgÃ¥tt antallet pakkenavn denne APT klarer." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE mislykkes, tjeneren sa: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Jøss, du har overgÃ¥tt antallet versjoner denne APT klarer." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Tidsavbrudd pÃ¥ forbindelsen" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Jøss, du har overgÃ¥tt antallet beskrivelser denne APT klarer." +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Tjeneren lukket forbindelsen" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Et svar oversvømte bufferen." -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Fant ikke pakken %s %s ved behandling av filkrav" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokollødeleggelse" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Klarte ikke finne informasjon om %s - lista over kildekodepakker" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Klarte ikke Ã¥ opprette en sokkel" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Leser pakkelister" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Klarte ikke Ã¥ kople til datasokkelen, tidsavbrudd pÃ¥ forbindelsen" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samler inn filtilbud" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislyktes" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Kan ikke skrive til %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Klarte ikke Ã¥ koble til en passiv sokkel." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO-feil ved lagring av kildekode-lager" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo klarte ikke Ã¥ opprette en lyttesokkel" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Klarte ikke Ã¥ binde til sokkel" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Klarte ikke Ã¥ lytte til sokkel" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Klarte ikke Ã¥ avgjøre sokkelnavnet" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Klarte ikke Ã¥ sende PORT-kommandoen" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Ukjent adressefamilie %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "klarte ikke Ã¥ endre navnet, %s (%s -> %s)." +msgid "EPRT failed, server said: %s" +msgstr "EPRT mislykkes, tjeneren sa: %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hashsummen stemmer ikke" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Tidsavbrudd pÃ¥ tilkoblingen til datasokkelen" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Feil størrelse" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Klarte ikke Ã¥ godta tilkoblingen" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ugyldig operasjon %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem ved oppretting av nøkkel for fil" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Klarte ikke Ã¥ hente fila, tjeneren sa «%s»" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Det er ingen offentlig nøkkel tilgjengelig for de følgende nøkkel-ID-ene:\n" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Tidsavbrudd pÃ¥ datasokkelen" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:935 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Data transfer failed, server said '%s'" +msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Spørring" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Klarte ikke Ã¥ starte" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:76 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"En feil oppstod under signaturverifisering. Depotet er ikke oppdatert og den " -"forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n" +msgid "Connecting to %s (%s)" +msgstr "Kobler til %s (%s)" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:87 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-feil: %s: %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:94 #, 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 "" -"Klarte ikke Ã¥ finne en fil for pakken %s. Det kan bety at du mÃ¥ ordne pakken " -"selv (fordi arkitekturen mangler)." +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)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:100 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Klarte ikke Ã¥ starte forbindelsen til %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:108 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Oversiktsfilene er ødelagte. Feltet «Filename:» mangler for pakken %s." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Klarte ikke Ã¥ koble til %s:%s (%s), tidsavbrudd pÃ¥ forbindelsen" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk" +msgid "Could not connect to %s:%s (%s)." +msgstr "Klarte ikke Ã¥ koble til %s:%s (%s)." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "List directory %spartial is missing." -msgstr "Listemappa %spartial mangler." +msgid "Connecting to %s" +msgstr "Kobler til %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkivmappa %spartial mangler." +msgid "Could not resolve '%s'" +msgstr "Klarte ikke Ã¥ slÃ¥ opp «%s»" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "Klarte ikke lÃ¥se mappa %s" +msgid "Temporary failure resolving '%s'" +msgstr "Midlertidig feil ved oppslag av «%s»" + +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Henter fil %li av %li (%s gjenværende)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Henter fil %li av %li" +msgid "Unable to connect to %s:%s:" +msgstr "Klarte ikke koble til %s:%s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Klarte ikke Ã¥ laste ned alle oversiktfilene. De ble ignorerte, eller gamle " -"ble brukt isteden. " +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Minst en ugyldig signatur ble funnet." + +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Beklager, du mÃ¥ legge inn noen kilder (nettadresser) i din «sources.list»." +"Klarte ikke kjøre «gpgv» for Ã¥ verifisere signaturen (er gpgv installert?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ugyldig oppslag i foretrekksfila %s, manglende pakkehode" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Forsto ikke spikring av typen %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Ukjent feil ved kjøring av gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Ingen prioritet (eller null) spesifisert for pin" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "De følgende signaturene var ugyldige:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" 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:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Klarte ikke Ã¥pne fila «%s»" +"De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen " +"ikke er tilgjengelig:\n" -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"Den forestÃ¥ende installasjon mÃ¥ midlertidig fjerne den meget viktige pakken " -"%s pga. en konflikt/forutsettelses-løkke. Dette er ofte stygt, men hvis du " -"virkelig vil det, sÃ¥ bruk innstillingen APT::Force-LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Linje %u i kildelista %s er for lang" - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterer CD-ROM ...\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Bruker CD-ROM monteringspunkt %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Feil ved skriving til fila" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Venter pÃ¥ CD-en...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterer CD-ROM...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Feil ved lesing fra tjeneren" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Indentifiserer..." +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Feil ved skriving til fil" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Lagret merkelapp: %s \n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Utvalget mislykkes" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Leter gjennom CD for indeksfiler...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Tidsavbrudd pÃ¥ forbindelsen" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Fant %zu pakkeindekser, %zu kildeindekser, %zu oversettelsesindekser og %zu " -"signaturer\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Feil ved skriving til utfil" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Klarte ikke finne noen Package-filer. Kanskje dette ikke er en Debian Disc " -"eller du har valgt feil arkitektur?" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Venter pÃ¥ hoder" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Fant merkelapp «%s»\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Ødelagt hodelinje" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Det er ikke et gyldig navn, prøv igjen.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP-tjeneren sendte et ugyldig svarhode" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"CD-en er kalt: \n" -"«%s»\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopierer pakkelister..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriver ny kildeliste\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Denne HTTP-tjeneren har ødelagt støtte for omrÃ¥de" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Kildelisteoppføringer for denne CD-en er:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ukjent datoformat" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Pakka %s trenger Ã¥ installeres pÃ¥ nytt, men jeg finner ikke lageret for den." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Ødelagte hodedata" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " -"som holdes tilbake." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Forbindelsen mislykkes" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Klarer ikke Ã¥ rette problemene, noen ødelagte pakker er holdt tilbake." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Intern feil" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Skaper oversikt over avhengighetsforhold" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Beregner oppgradering... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versjons-kandidater" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Utført" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Oppretter avhengighetsforhold" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Leser tilstandsinformasjon" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Klarte ikke Ã¥ Ã¥pne StateFile %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Retter pÃ¥ avhengighetsforhold ..." -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Klarte ikke Ã¥ skrive midlertidig StateFile %s" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " mislyktes." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (1)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Klarer ikke Ã¥ rette pÃ¥ avhengighetsforholdene" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Klarer ikke Ã¥ minimere oppgraderingsettet" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Utgave «%s» av «%s» ble ikke funnet" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Utført" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versjon «%s» av «%s» ble ikke funnet" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Du vil kanskje kjøre «apt-get -f install» for Ã¥ rette pÃ¥ dette." -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Klarte ikke Ã¥ finne oppgave «%s»" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" +msgid "[installed,upgradable to: %s]" +msgstr " [Installert]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Klarte ikke velge versjoner fra pakken «%s» siden den er kun virtuell" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installert]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Klarte ikke velge installert eller kandidatversjon fra pakken «%s» siden den " -"har ingen av dem" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Klarte ikke velge nyeste versjon fra pakken «%s» siden den er kun virtuell" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installert]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installert]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Klarte ikke velge kandidatversjon fra pakken «%s» siden den ikke har noen " -"kandidat" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Klarte ikke velge installert versjon fra pakken «%s» siden den ikke er " -"installert" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" +msgid "but %s is installed" +msgstr "men %s er installert" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Ingen avsnitt i Release-fila %s" +msgid "but %s is to be installed" +msgstr "men %s skal installeres" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Ingen sjekksumoppføring i Release-fila %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "men lar seg ikke installere" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ugyldig «Valid-Until»-oppføring i Release-fila %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "men er en virtuell pakke" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ugyldig «Date»-oppføring i Release-fila %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "men er ikke installert" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Feil pÃ¥ %lu i kildelista %s (fortolkning av nettadressen)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "men skal ikke installeres" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Feil pÃ¥ linje %lu i kildelista %s ([valg] ikke tolkbar)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " eller" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Feil pÃ¥ linje %lu i kildelista %s ([valg] for kort)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Følgende pakker har uinnfridde avhengighetsforhold:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] er ingen tilordning)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Følgende NYE pakker vil bli installert:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] har ingen nøkkel)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Følgende pakker vil bli FJERNET:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] nøkkel %s har ingen verdi)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Følgende pakker er holdt tilbake:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Feil pÃ¥ linje %lu i kildelista %s (nettadresse)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Følgende pakker vil bli oppgradert:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Feil pÃ¥ linje %lu i kildelista %s (dist)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Følgende pakker vil bli NEDGRADERT:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Følgende pakker vil bli endret:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Feil pÃ¥ %lu i kildelista %s (fortolkning av nettadressen)" +msgid "%s (due to %s) " +msgstr "%s (pga. %s) " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"ADVARSEL: Følgende essensielle pakker vil bli fjernet.\n" +"Dette bør IKKE gjøres, med mindre du vet nøyaktig hva du gjør!" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Feil pÃ¥ %lu i kildelista %s (Absolutt dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu oppgraderte, %lu nylig installerte, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Feil pÃ¥ %lu i kildelista %s (dist fortolking)" +msgid "%lu reinstalled, " +msgstr "%lu installert pÃ¥ nytt, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Åpner %s" +msgid "%lu downgraded, " +msgstr "%lu nedgraderte, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Feil pÃ¥ %u i kildelista %s (type)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu Ã¥ fjerne og %lu ikke oppgradert.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pakker ikke fullt installert eller fjernet.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Installerer %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Setter opp %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Oppdaterings-kommandoen tar ingen argumenter" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Removing %s" -msgstr "Fjerner %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Fjerner %s fullstendig" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-show.cc:156 #, c-format -msgid "Noting disappearance of %s" -msgstr "Legger merke til at %s forsvinner" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Kjører etter-installasjonsutløser %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Mappa «%s» mangler" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Klarte ikke Ã¥pne fila «%s»" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakker trenges Ã¥ fjernes, men funksjonen er slÃ¥tt av." -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Forbereder %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Intern feil, sortering fullførte ikke" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Pakker ut %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"SÃ¥ rart ... Størrelsene stemmer ikke overens, send en e-post til " +"apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Preparing to configure %s" -msgstr "Forbereder oppsett av %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "MÃ¥ hente %sB/%sB med arkiver.\n" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Installed %s" -msgstr "Installerte %s" +msgid "Need to get %sB of archives.\n" +msgstr "MÃ¥ hente %sB med arkiver.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Preparing for removal of %s" -msgstr "Forbereder fjerning av %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Etter denne operasjonen vil %sB ekstra diskplass bli brukt.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Removed %s" -msgstr "Fjernet %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Forbereder Ã¥ fullstendig slette %s" +msgid "You don't have enough free space in %s." +msgstr "Dessverre, ikke nok ledig plass i %s" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Fjernet %s fullstendig" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" +"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Kan ikke skrive til %s" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, gjør som jeg sier!" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Du er iferd med Ã¥ utføre en mulig skadelig handling.\n" +"For Ã¥ fortsette skriv inn teksten «%s»\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Avbryter." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vil du fortsette?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Klarte ikke laste ned alle filene" + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Klarte ikke Ã¥ hente alle arkivene. Du kan prøve med «apt-get update» eller " +"«--fix-missing»." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Ingen apport-rapport skrevet for MaxReports allerede er nÃ¥dd" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "«--fix-missing» og bytte av media støttes nÃ¥ ikke" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "avhengighetsproblemer - lar den være uoppsatt" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Klarer ikke Ã¥ rette pÃ¥ manglende pakker." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Avbryter installasjonen." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer at den er en " -"følgefeil fra en tidligere feil." +"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] "" +"Den følgende pakken forsvant fra systemet ditt siden\n" +"alle filene er overskrevet av andre pakker:" +msgstr[1] "" +"De følgende pakkene forsvant fra systemet ditt siden\n" +"alle filene er overskrevet av andre pakker:" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Vi skal ikke slette ting, kan ikke starte auto-fjerner (AutoRemover)" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" -"feil" +"Hmm, det ser ut som auto-fjerneren (AutoRemover) ødela noe, og det skal\n" +"virkelig ikke skje. Send inn en feilmelding til apt-utviklerne." -#: apt-pkg/deb/dpkgpm.cc:1651 +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Følgende informasjon kan være til hjelp med Ã¥ løse problemet:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" + +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «tom for " -"minne»-feil" +"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] "" +"Følgende pakke ble automatisk installert og er ikke lenger pÃ¥krevet:" +msgstr[1] "" +"Følgende pakker ble automatisk installert og er ikke lenger pÃ¥krevet:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:517 +#, 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 pakke ble automatisk installert og er ikke lenger pÃ¥krevet.\n" +msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger pÃ¥krevet.\n" + +#: apt-private/private-install.cc:519 #, 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." + +#: apt-private/private-install.cc:612 +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:" + +#: apt-private/private-install.cc:614 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" -"feil" +"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " +"angi en løsning)." -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:638 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"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 "" +"Noen pakker ble ikke installeres. Dette kan bety at du har bedt om\n" +"en umulig tilstand eller, hvis du bruker den ustabile utgaven av Debian,\n" +"at visse kjernepakker ennÃ¥ ikke er laget eller flyttet ut av «Incoming» for\n" +"distribusjonen." + +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Ødelagte pakker" + +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Følgende ekstra pakker vil bli installert." + +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "ForeslÃ¥tte pakker:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Anbefalte pakker" + +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «dpkg I/O»-feil" +"OmgÃ¥r %s - den er allerede installert eller ikke satt til oppgradering.\n" -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:829 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Klarte ikke lÃ¥se den administrative mappen (%s). Bruker en annen prosess den?" +"Hopper over %s siden den ikke er installert eller kun oppgraderinger er " +"ønsket.\n" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:841 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Klarte ikke lÃ¥se den administrative mappen (%s). Er du root?" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Det er ikke mulig Ã¥ installere %s pÃ¥ nytt - den kan ikke nedlastes.\n" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: apt-private/private-install.cc:846 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg ble avbrutt. Du mÃ¥ kjøre «%s» manuelt for Ã¥ rette problemet," - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Ikke lÃ¥st" +msgid "%s is already the newest version.\n" +msgstr "%s er allerede nyeste versjon.\n" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: apt-private/private-install.cc:894 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lit %lim %lis" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lit %lim %lis" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%lim %lis" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "Fant ikke utvalget %s" +#: apt-private/private-main.cc:32 +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 "" +"MERK: Dette er kun en simulering.\n" +" apt-get mÃ¥ ha root-rettigheter for reell utførelse.\n" +" Husk ogsÃ¥ at lÃ¥sing er deaktivert, sÃ¥ ikke regn med \n" +" relevans i forhold til den reelle gjeldende situasjonen." -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Bruker ikke lÃ¥sing for den skrivebeskyttede lÃ¥sefila %s" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Klarte ikke Ã¥pne lÃ¥sefila %s" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentiseringsadvarsel overstyrt.\n" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Bruker ikke lÃ¥sing pÃ¥ den nfs-monterte lÃ¥sefila %s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Noen pakker ble ikke autentisert" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "FÃ¥r ikke lÃ¥st %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installer disse pakkene uten verifikasjon?" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Klarte ikke Ã¥ endre navnet pÃ¥ %s til %s" -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Funnet " -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Underprosessen %s mottok et minnefeilsignal." +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Hent:" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Underprosessen %s mottok signalet %u." +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Underprosessen %s ga en feilkode (%u)" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Feil " -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Underprosessen %s avsluttet uventet" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Hentet %sB pÃ¥ %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem ved lÃ¥sing av gzip-fila %s" +msgid " [Working]" +msgstr " [Arbeider]" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Could not open file %s" -msgstr "Klarte ikke Ã¥pne fila %s" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Bytte av media: sett inn CD-en som er merket\n" +" «%s»\n" +"i «%s» og trykk «Enter»\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Klarte ikke Ã¥pne fildeskriptor %d" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Klarte ikke Ã¥ opprette underprosessen IPC" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Klarte ikke Ã¥ kjøre komprimeringen" +msgid "No mirror file '%s' found " +msgstr "Ingen speilfil «%s» funnet" -#: apt-pkg/contrib/fileutl.cc:1514 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lese, har fremdeles %lu igjen Ã¥ lese, men ingen igjen" +msgid "Can not read mirror file '%s'" +msgstr "Ingen speilfil «%s» funnet" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "skrive, har fremdeles %lu igjen Ã¥ skrive, men klarte ikke Ã¥" +msgid "No entry found in mirror file '%s'" +msgstr "Ingen speilfil «%s» funnet" -#: apt-pkg/contrib/fileutl.cc:1915 +#: methods/mirror.cc:445 #, c-format -msgid "Problem closing the file %s" -msgstr "Problem ved lÃ¥sing av fila %s" +msgid "[Mirror: %s]" +msgstr "[Speil: %s]" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem ved endring av navn pÃ¥ fila %s til %s" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Klarte ikke Ã¥ opprette IPC-rør til underprosessen" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem ved oppheving av lenke til fila %s" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Forbindelsen ble uventet stengt" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem ved oppdatering av fila" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Feil standardinnstilling!" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s ... Feil" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Trykk «Enter» og fortsett" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s ... Ferdig" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Vil du slettet alle tidligere nedlastede .deb-filer?" + +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Feil oppstod ved utpakkinga. Setter nÃ¥ opp de installerte pakkene." + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "Det kan lede til fordobling av feil eller feil forÃ¥rsaket av " + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "manglende forutsetninger. Det er greit, bare de nevnte feilene er" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "av betydning. Sett dem i stand dem og kjør [I]nstall igjen." -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s ... Ferdig" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Fletter tilgjengelig informasjon" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan ikke utføre mmap pÃ¥ en tom fil" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode ble startet pÃ¥ et knutepunkt som ennÃ¥ er lenket" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Klarte ikke duplisere fildeskriptor %i" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Fant ikke nøkkelelementet." -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Klarte ikke lage mmap av %lu bytes" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Klarte ikke Ã¥ tildele avledning" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Klarte ikke lukke mmap" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Intern feil i AddDiversion" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Klarte ikke synkronisere mmap" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Prøver Ã¥ skrive over en avledning, %s -> %s og %s/%s" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Klarte ikke lage mmap av %lu bytes" +msgid "Double add of diversion %s -> %s" +msgstr "Dobbel tillegging av avledning %s -> %s" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Klarte ikke forkorte fila %s" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Dobbel oppsettsfil %s/%s" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, 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 "" -"Dynamisk MMap gikk tom for minne. Øk størrelsen pÃ¥ APT::Cache-Start. " -"NÃ¥værende verdi: %lu. (man 5 apt.conf)" +msgid "The path %s is too long" +msgstr "Stien %s er for lang" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Klarte ikke øke størrelsen pÃ¥ MMap-en siden grensen pÃ¥ %lu byte allerede er " -"nÃ¥dd." +msgid "Unpacking %s more than once" +msgstr "Pakker ut %s mer enn en gang" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Klarte ikke øke størrelsen pÃ¥ MMap-en siden automatisk voksing er deaktivert " -"av brukeren." +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Katalogen %s er avledet" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Klarer ikke Ã¥ fastsette monteringspunktet %s" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Pakken prøver Ã¥ skrive til avledningsmÃ¥let %s/%s" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Klarer ikke Ã¥ fÃ¥ statusen pÃ¥ CD-spilleren" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Avledningsstien er for lang" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ukjent typeforkortelse: «%c»" +msgid "Failed to stat %s" +msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Opening configuration file %s" -msgstr "Åpner oppsettsfila %s" +msgid "Failed to rename %s to %s" +msgstr "Klarte ikke Ã¥ endre navnet pÃ¥ %s til %s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaksfeil %s:%u: Blokka starter uten navn." +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-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksfeil %s:%u: Feil pÃ¥ taggen" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Fant ikke knutepunktet i dens hash-spann" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Stien er for lang" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaksfeil %s:%u: Direktivene kan bare ligge i det øverste nivÃ¥et" +msgid "Overwrite package match with no version for %s" +msgstr "Skriver over pakketreff uten versjon for %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Fila %s/%s skriver over den tilsvarende fila i pakken %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaksfeil %s:%u: Inkludert herfra" +msgid "Unable to stat %s" +msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet" +msgid "Failed to write file %s" +msgstr "Klarte ikke Ã¥ skrive fila %s" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksfeil %s:%u: clear-direktivet krever et valgtre som argument" +msgid "Failed to close file %s" +msgstr "Klarte ikke Ã¥ lukke fila %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaksfeil %s:%u: Ugyldige angivelser pÃ¥ slutten av fila" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dette er ikke et gyldig DEB-arkiv, mangler «%s»-medlemmet" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "No keyring installed in %s." -msgstr "Ingen nøkkelring installert i %s." +msgid "Internal error, could not locate member %s" +msgstr "Intern feil, fant ikke medlemmet %s" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Kontrollfila kan ikke tolkes" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Skjønner ikke kommandolinjevalget %s" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ugyldig arkivsignatur" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Kommandolinjevalget %s er ikke boolsk" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Feil ved lesing av arkivmedlemshode" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Option %s requires an argument." -msgstr "Valget %s krever et argument." +msgid "Invalid archive member header %s" +msgstr "Ugyldig arkivmedlemshode %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Valg %s: Angivelsen av oppsettselementet mÃ¥ ha en =<verdi>." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ugyldig arkivmedlemshode" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Valget %s mÃ¥ ha et heltallsargument, ikke «%s»" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkivet er for kort" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Valget «%s» er for langt" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Klarte ikke Ã¥ lese arkivhodene" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Skjønner ikke %s. Prøv «true» eller «false»." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Klarte ikke Ã¥ opprette rør" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Klarte ikke Ã¥ kjøre gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Ødelagt arkiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Ugyldig operasjon %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Ukjent TAR-hode: type %u, medlem %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3542,7 +3546,7 @@ msgstr "Klarte ikke Ã¥ lese under utregning av MD5" msgid "Problem unlinking %s" msgstr "Problem ved oppheving av lenken til %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3596,6 +3600,10 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Intern feil - «AllUpgrade» ødela noe" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s er ikke en gyldig debianpakke." diff --git a/po/ne.po b/po/ne.po index b69db6abe..107ef1d71 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel <pokharelshiva@hotmail.com>\n" "Language-Team: Nepali <info@mpp.org.np>\n" @@ -17,3125 +17,3129 @@ msgstr "" "Plural-Forms: nplurals=2;plural=(n!=1)\n" "X-Generator: KBabel 1.10.2\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "प्याकेज %s संस्करण %s संग एउटा नभेटिएको dep छ:\n" +msgid "Unable to read %s" +msgstr "%s पढ्न असफल भयो" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "कूल प्याकेज नामहरू :" +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "%s मा परिवर्तन गर्न असक्षम" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "कूल प्याकेज नामहरू :" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s स्थिर गर्न असक्षम भयो ।" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " सामान्य प्याकेजहरू:" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr "शुद्ध अवास्तविक प्याकेजहरू:" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " एकल अवास्तविक प्याकेजहरू:" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "प्याकिङ्ग प्रणाली '%s' समर्थित छैन" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " मिश्रित अवास्तविक प्याकेजहरू:" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "उपयुक्त प्याकिङ्ग प्रणाली प्रकार निर्धारन गर्न असक्षम भयो" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " हराइरहेको:" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i रेकर्डहरू लेखियो ।\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "कूल भिन्न संस्करणहरू:" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "हराइरहेको फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "कूल भिन्न संस्करणहरू:" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "कूल निर्भरताहरू:" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "हराइरहेको फाइल %i हरू र मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "जम्मा ver/file सम्बन्धहरू: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "जम्मा ver/file सम्बन्धहरू: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "MD5Sum मेल भएन" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "कूल उपलब्ध मानचित्रणहरू:" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "विधि ड्राइभर %s फेला पार्न सकिएन ।" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "कूल विश्वव्यापी स्ट्रिङ्गहरू:" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "कूल निर्भरता संस्करण खाली ठाऊँ:" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "विधि %s सही रुपले सुरू हुन सकेन" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "कूल शिथिल खाली ठाऊँ:" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "कृपया डिस्क लेबुल: '%s' ड्राइभ '%s'मा घुसउनुहोस् र इन्टर थिच्नुहोस् । " -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "को लागि कूल खाली ठाऊँ लेखांकन:" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "प्याकेज सूचीहरू वा वस्तुस्थिति फाइल पद वर्णन गर्न वा खोल्न सकिएन ।" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "प्याकेज फाइल %s sync भन्दा बाहिर छ ।" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "यो समस्याहरू सुधार्न तपाईँ apt-get अद्यावधिक चलाउन चाहनुहुन्छ" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "कुनै प्याकेजहरू फेला परेन" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "स्रोतहरुको सूचि पढ्न सकिएन ।" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "तपाईँले एउटा वास्तविक बान्की दिनुपर्छ" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "खाली प्याकेज क्यास" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "प्याकेज क्यास फाइल दूषित भयो " + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "प्याकेज क्यास फाइल एउटा अमिल्दो संस्करण हो" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "प्याकेज क्यास फाइल दूषित भयो " -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "प्याकेज %s तोक्न असक्षम भयो" +msgid "This APT does not support the versioning system '%s'" +msgstr "यो APT ले संस्करण प्रणालीलाई समर्थन गर्दैन '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "प्याकेज फाइलहरू:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "प्याकेज क्यास विभिन्न वास्तुकलाको लागि निर्माण भएको हो" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "क्यास sync भन्दा बाहिर छ, प्याकेज फाइल x-ref गर्न सक्दैन" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "आधारित" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "पिन गरिएका प्याकेजहरू:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "पुन:आधारित" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(फेला परेन)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "सुझाव दिन्छ" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " स्थापना भयो:" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "सिफारिस गर्दछ" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " उमेद्वार:" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "द्वन्दहरू" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(कुनै पनि होइन)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "बदल्छ" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr "प्याकेज पिन:" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "वेकायमहरू" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " संस्करण तालिका:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s को लागि %s %s, %s %s मा कम्पाएल गरिएको छ\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"उपयोग: apt-cache [विकल्पहरू] आदेश\n" -" apt-cache [विकल्पहरू] फाइल १ थप्नुहोस् [फाइल २ ...]\n" -" apt-cache [विकल्पहरू] pkg pkg1 देखाउनुहोस् [pkg2 ...]\n" -" apt-cache [विकल्पहरू] src pkg1 देखाउनुहोस् [pkg2 ...]\n" -"\n" -"तिनीहरुबाट APT's बिनारी क्यास फाइलहरू, र क्वेरी सूचना मिलाउन प्रयोग गरिने apt-cache " -"कम-स्तरको उपकरण हो\n" -"\n" -"\n" -"आदेशहरू:\n" -" थप्नुहोस् - स्रोत क्यासमा प्याकेज फाइल थप्नुहोस्\n" -" gencaches - प्याकेज र स्रोत क्यास दुवै निर्माण गर्नुहोस्\n" -" showpkg - एकल प्याकेजको लागि केही सामान्य सूचनाहरू देखाउनुहोस्\n" -" showsrc - स्रोत रेकर्डहरू देखाउनुहोस्\n" -" stats - केही आधारभूत तथ्यांकशास्त्र हरू देखाउनुहोस्\n" -" dump - पुरै फाइल स्पष्ट रुपमा देखाउनुहोस्\n" -" dumpavail - stdout मा एउटा उपलब्ध फाइल मुद्रण गर्नुहोस्\n" -" unmet - नभेटिएका निर्भरताहरू देखाउनुहोस्\n" -" खोजी गर्नुहोस् - regex बान्कीको लागि प्याकेज सूचि खोजी गर्नुहोस्\n" -" देखाउनुहोस् - प्याकेजको लागि पढ्नयोग्य रेकर्ड देखाउनुहोस्\n" -" आधारित - प्याकेजको लागि कच्चा निर्भरता सूचना देखाउनुहोस्\n" -" rdepends - प्याकेजको लागि उल्टो निर्भरता सूचना देखाउनुहोस्\n" -" pkgnames - सबै प्याकेजहरुको नामहरू सूचिबद्ध गर्नुहोस्\n" -" dotty - GraphViz को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n" -" xvcg - xvcg को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n" -" नीति - नीति सेटिङ्गहरू देखाउनुहोस्\n" -"\n" -"विकल्पहरू:\n" -" -h यो मद्दत पाठ ।\n" -" -p=? प्याकेज क्यास ।\n" -" -s=? स्रोत क्यास ।\n" -" -q प्रगति सूचक अक्षम गर्नुहोस् ।\n" -" -i नभेटिएको आदेशको लागि महत्वपूर्ण deps देखाउनुहोस् ।\n" -" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" -" -o=? एउटा स्वेच्छाचारी कनफिगरेसन फाइल सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -"धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) म्यानुल पृष्टहरू हेर्नुहोस् ।\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "महत्वपूर्ण" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "कृपया यो डिस्कको लागि नाम उपलब्ध गराउनुहोस्, जस्तै 'Debian 2.1r1 Disk 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "आवश्यक" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "कृपया ड्राइभमा डिस्क घुसाउनुहोस् र इन्टर थिच्नुहोस्" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "मानक" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr " %s मा %s पुन:नामकरण असफल भयो" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "वैकल्पिक" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "अतिरिक्त" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "तपाईँको सेटमा बाँकी सि डि हरुको लागि यो प्रक्रिया फेरी गर्नुहोस् । " +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "तर्कहरू जोडामा छैन" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "संकलन त्रुटि रिजेक्स गर्नुहोस् - %s" -#: cmdline/apt-config.cc:89 -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 "" -"उपयग: apt-config [विकल्पहरू] आदेश\n" -"\n" -" APT कनफिग फाइल पढ्नको लागि apt-config साधारण उपकरण हो\n" -"\n" -"आदेशहरू:\n" -" शेल - शेल मोड\n" -" dump - कनफिगरेसन देखाउनुहोस्\n" -"\n" -"विकल्पहरू:\n" -" -h यो मद्दत पाठ ।\n" -" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" -" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "क्यास संग एउटा नमिल्दो संस्करण प्रणाली छ" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +msgid "Error occurred while processing %s (%s%d)" +msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको प्याकेज नामहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको निर्भरताहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "प्याकेज फेला पार्न सकिएन %s" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "प्याकेज सूचिहरू पढिदैछ" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "फाइल उपलब्धताहरू संकलन गरिदैछ" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr " %s मा लेख्न असक्षम" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "पहिल्यै डाउनलोड भएका फाइलहरु फड्काइदैछ '%s'\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन" +msgid "rename failed, %s (%s -> %s)." +msgstr "पुन:नामकरण असफल गरियो, %s (%s -> %s) ।" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन" +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "MD5Sum मेल भएन" -#. 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:891 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "साइज मेल खाएन" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "अवैध सञ्चालन %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +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:896 +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "निम्न कुञ्जी IDs को लागि कुनै सार्वजनिक कुञ्जी उपलब्ध छैन:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "स्रोत फड्काउनुहोस् %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "केही संग्रह फड्काउन असफल भयो ।" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n" +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 प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज " +"निश्चित गर्नुहोस् । (arch हराएरहेको कारणले) " -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "अनप्याक आदेश '%s' असफल भयो ।\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "प्याकेज अनुक्रमणिका फाइलहरू दूषित भए । प्याकेज %s को लागि कुनै फाइलनाम: फाँट छैन ।" -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "निर्माण आदेश '%s' असफल भयो ।\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "बिक्रता ब्ल्क %s ले कुनै औठाछाप समाविष्ट गर्दैन" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "शाखा प्रक्रिया असफल भयो" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "को लागि builddeps जाँच्न कम्तिमा एउटा प्याकेज निर्दष्ट गर्नुपर्छ" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "आंशिक संग्रह डाइरेक्ट्री %s हराइरहेछ ।" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ (%s बाँकी छ)" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो" +msgid "Retrieving file %li of %li" +msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s कुनै निर्माणमा आधारित हुदैन ।\n" +msgid "Failed to fetch %s %s\n" +msgstr "%s %s तान्न असफल भयो\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"केही अनुक्रमणिका फाइलहरू डाउनलोड गर्न असफल भयो, तिनीहरू उपेक्षित भए, वा सट्टामा पुरानो " +"एउटा प्रयोग गरियो ।" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "तपाईँको स्रोत सूचिमा केही 'source' URIs राख्नुहोस्" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "प्राथमिकता फाइलमा अवैध रेकर्ड, कुनै प्याकेज हेडर छैन" + +#: apt-pkg/policy.cc:444 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट पार्न असफल भयो: स्थापित प्याकेज %s अति नयाँ छ" +msgid "Did not understand pin type %s" +msgstr "पिन टाइप %s बुझ्न सकिएन " -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "पिनको लागि कुनै प्राथमिकता (वा शून्य) निर्दिष्ट छैन" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"%sको लागि %s निर्भरता सन्तुष्ट हुन सकेन किन भने प्याकेज %s को कुनै उपलब्ध संस्करणले संस्करण " -"आवश्यकताहरुलाई सन्तुष्ट पार्न सकेन " -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "फाइल %s खोल्न सकिएन" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" +"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 "" +"द्वन्द/पुन-आधारित लूपको कारणले गर्दा स्थापना चलाउनको लागि अस्थायी रुपमा प्याकेज %s " +"हटाउनु पर्नेछ । यो प्राय नराम्रो हो, तर यदि तपाईँ यो साँच्चै गर्न चाहनुहुन्छ भने, APT::" +"Force-LoopBreak विकल्प सक्रिय गर्नुहोस् ।" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट गर्न असफल: %s" +msgid "Line %u too long in source list %s." +msgstr "लाइन %u स्रोत सूचि %s मा अति लामो छ ।" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "सिडी रोम अनमाउन्ट गरिदैछ..." + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s को लागि निर्माण निर्भरताहरू सन्तुष्ट गर्न सकिएन । " +msgid "Using CD-ROM mount point %s\n" +msgstr "सिडी रोम माउन्ट विन्दु प्रयोग गरिदैछ %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "निर्माण निर्भरताहरू प्रक्रिया गर्न असफल" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "डिस्को लागि पर्खिदै...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) मा जडान गरिदैछ" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "सिडी रोम माउन्ट गरिदै...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "समर्थित मोड्युलहरू:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "परिचय गराइदैछ..." -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "अनुक्रमणिका फाइलहरुको लागि डिस्क स्क्यान गरिदैछ...\n" + +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr " %i प्याकेज अनुक्रमणिकाहरू, %i स्रोत अनुक्रमणिका र %i हस्ताक्षरहरू फेला परे\n" + +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"उपयोग: apt-get [विकल्पहरू] आदेश\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get डाउनलोड गर्न र प्याकेजहरू स्थापना गर्नको लागि साधारण आदेश लाइन इन्टरफेस हो ।\n" -"बारम्बार प्रयोग भइरहने आदेशहरू अद्यावधिक र स्थापना हुन् ।\n" -"\n" -"\n" -"आदेशहरू:\n" -" अद्यावधिक गर्नुहोस् - प्याकेजहरुको नयाँ सूचिहरू पुन:प्राप्त गर्नुहोस्\n" -" स्तर वृद्धि गर्नुहोस् - एउटा स्तरवृद्धि सम्पादन गर्नुहोस्\n" -" स्थापना गर्नुहोस् - नयाँ प्याकेजहरू स्थापना गर्नुहोस् (pkg libc6 हो libc6.deb होइन)\n" -" हटाउनुहोस् - प्याकेजहरू हटाउनुहोस्\n" -" स्रोत - स्रोत संग्रहहरू डाउनलोड गर्नुहोस्\n" -" build-dep - स्रोत प्याकेजहरुको लागि निर्माण-निर्भरताहरू कनफिगर गर्नुहोस्\n" -" dist-upgrade - स्तरवृद्धि वितरण गर्नुहोस्, apt-get(8) हेर्नुहोस्\n" -" dselect-upgrade - dselect चयनहरू पछ्याउनुहोस्\n" -" सफा गर्नुहोस् - डाउनलोड गरिएको संग्रह फाइलहरू मेट्नुहोस्\n" -" स्वचालित सफा - पुरानो डाउनलोड भएको संग्रह पाइलहरू मेट्नुहोस्\n" -" जाँच्नुहोस् - त्यहाँ कुनै भाँचिएका निर्भरताहरू छैन भन्ने रूजू गर्नुहोस्\n" -"\n" -"विकल्पहरू:\n" -" -h यो मद्दत पाठ.\n" -" -q लगयोग्य निर्गात - कुनै प्रगति सूचि छैन\n" -" -qq त्रुटिहरुको लागि निर्गात बाहेक केही छैन\n" -" -d डाउनलोड मात्र - संग्रहहरू स्थापना वा अनप्याक नगर्नुहोस्\n" -" -s No-act. Perform ordering simulation\n" -" -y सबै क्वेरीहरुलाई हो मान्नुहोस् र दूषित नबनाउनुहोस्\n" -" -f यदि पूर्णरुपले जाँच असफल भयो भने निरन्तरता दिने प्रयत्न गर्नुहोस्\n" -" -m यदि संग्रहहरु स्थानियकरण योग्य छैन भने निरन्तरता दिने प्रयत्न दिनुहोस्\n" -" -u स्तर वृद्धि प्याकेजहरुको सूचि राम्रो संग देखाउनुहोस्\n" -" -b यसलाई तानिसके पछि स्रोत प्याकेज निर्माण गर्नुहोस्\n" -" -V भरबोस संस्करण नम्बरहरू देखाउनुहोस्\n" -" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" -" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -"धेरै सूचना र विकल्पको लागि apt-get(8), sources.list(5) र apt.conf(5) manual\n" -"pages हेर्नुहोस् ।\n" -" APT संग सुपर काउ शक्तिहरू छ ।\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "त्यो वैध नाम होइन, फेरी प्रयास गर्नुहोस् ।\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"यो डिस्कको नाम:\n" +"'%s'\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "प्यकेज सूचिहरू प्रतिलिपी गरिदैछ..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "नयाँ स्रोत सूचि लेखिदैछ\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "प्याकेज %s पुन:स्थापना हुन चाहन्छ, तर यसको लागि मैले एउटा संग्रह फेला पार्न सकिन ।" + +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"त्रुटि, pkgProblemResolver:: समाधानले विच्छेदन सिर्जना गर्दछ, यो भइरहेको प्याकेजहरुको " +"कारणले गर्दा हो ।" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "तर यो स्थापना भएन" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "समस्याहरू सुधार्न असक्षम भयो, तपाईँले प्याकेजहरु भाँच्नुभयो ।" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "निर्भरता ट्री निर्माण गरिदैछ" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "उमेद्वार संस्करणहरू" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "निर्भरता सिर्जना" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "उपलब्ध सूचना गाँभिदैछ" + +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" +msgid "Failed to open StateFile %s" +msgstr "%s खोल्न असफल" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" +msgid "Failed to write temporary StateFile %s" +msgstr "फाइल %s लेख्न असफल भयो" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr " %s को लागि पर्खिरहेको तर यो त्यहाँ छैन" +msgid "Unable to parse package file %s (1)" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (२)" + +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr " '%s' को लागि '%s' निष्काशन फेला पार्न सकिएन" + +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr " '%s' को लागि '%s' संस्करण फेला पार्न सकिएन" + +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "प्याकेज %s तोक्न असक्षम भयो" + +#: apt-pkg/cacheset.cc:603 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +msgid "Couldn't find task '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:609 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s खोल्न असफल" +msgid "Couldn't find any package by regex '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" + +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "सिडी रोम डेटाबेस पढ्न असक्षम %s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: 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" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"कृपया APT ले यो सिडी रोमलाई चिन्नको लागि apt-cdrom प्रयोग गर्नुहोस् । apt-get " -"अद्यावधिक नयाँ सिडी रोमहरू थप्नको लागि प्रयोग गरिदैन" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "गलत सिडी रोम" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" -#: methods/cdrom.cc:249 +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n" + +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s मा सिडी रोम अनमाउन्ट गर्न असक्षम भयो, यो अहिले प्रयोगमा हुन सक्छ ।" +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "डिस्क फेला परेन ।" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "घुमाउरो फाइलमा अवैध लाइन:%s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "फाइल फेला परेन " +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "स्थिर गर्न असफल भयो" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI पद वर्णन)" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "परिमार्जन समय सेट असफल भयो" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "अवैध URl, स्थानिय URIS // संग सुरू हुन सक्दैन" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "लगइन भइरहेछ" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "समान नाम निर्धारण गर्न असक्षम भयो" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "स्थानिय नाम निर्धारण गर्न असक्षम भयो" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "सर्भरले जडान अस्वीकार गर्यो र भन्यो: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "USER failed, server said: %s" -msgstr "प्रयोगकर्ता असफल भयो, सर्भरले भन्यो: %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "PASS failed, server said: %s" -msgstr "पास असफल भयो, सर्भरले भन्यो: %s" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI पद वर्णन)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"प्रोक्सी सर्भर निर्दिष्ट गरियो तर कुनै स्क्रिफ्ट लगइन भएन, Acquire::ftp::ProxyLogin " -"खाली छ ।" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (पूर्ण dist)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "लगइन स्क्रिफ्ट आदेश '%s' असफल भयो, सर्भरले भन्यो: %s" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "टाइप असफल भयो: %s" +msgid "Opening %s" +msgstr "%s खोलिदैछ" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "जडान समय सकियो" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (प्रकार)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "सर्भरले जडान बन्द गर्यो" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "त्रुटि पढ्नुहोस्" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "एउटा प्रतिक्रियाले बफर अधिप्रवाह गर्यो" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " %s स्थापना भयो" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "प्रोटोकल दूषित" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr " %s कनफिगर गरिदैछ" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "त्रुटि लेख्नुहोस्" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr " %s हटाइदैछ" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "एउटा सकेट सिर्जना गर्न सकेन" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr " %s पूर्ण रुपले हट्यो" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "डेटा सकेट जडान गर्न सकिएन, जडान समय सकियो" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "असफल भयो" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "निस्क्रिय सकेट जडान गर्न सकिएन" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo सुन्ने सकेट प्राप्त गर्न असक्षम भयो" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "फाइल %s खोल्न सकिएन" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "सकेट बाँध्न सकिएन" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr " %s तयार गरिदैछ" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "सकेटमा सुन्न सकिएन" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr " %s अनप्याक गरिदैछ" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "सकेट नाम निर्धारण गर्न सकिएन" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr " %s कनफिगर गर्न तयार गरिदैछ" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "पोर्ट आदेश पठाउन असक्षम भयो" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr " %s स्थापना भयो" -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "अज्ञात ठेगाना परिवार %u (AF_*)" +msgid "Preparing for removal of %s" +msgstr " %s हटाउन तयार गरिदैछ" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT असफल भयो, सर्भरले भन्यो: %s" +msgid "Removed %s" +msgstr " %s हट्यो" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "डेटा सकेटको जडान समय सकियो" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr " %s पूर्ण रुपले हटाउन तयार गरिदैछ" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "जडान स्वीकार गर्न असक्षम भयो" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr " %s पूर्ण रुपले हट्यो" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "समस्या द्रुतान्वेषण फाइल" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "फाइल तान्न असक्षम भयो, सर्भरले भन्यो '%s'" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr " %s मा लेख्न असक्षम" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "डेटा सकेट समय सकियो" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "डेटा स्थान्तरण असफल भयो, सर्भरले भन्यो '%s'" +msgid "Waited for %s but it wasn't there" +msgstr " %s को लागि पर्खिरहेको तर यो त्यहाँ छैन" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "क्वेरी" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "आह्वान गर्न असक्षम भयो" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "%s (%s) मा जडान गरिदैछ" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/connect.cc:94 +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s (f=%u t=%u p=%u) को लागि सकेट सिर्जना गर्न सकिएन" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" + +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr " %s:%s (%s) मा जडान सुरुवात गर्न सकेन" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/connect.cc:108 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s (%s) मा जडान गर्न सकिएन, जडान समय सकियो" +msgid "%lih %limin %lis" +msgstr "" -#: methods/connect.cc:126 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr " %s:%s (%s) मा जडान गर्न सकिएन ।" +msgid "%limin %lis" +msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Connecting to %s" -msgstr "%s मा जडान गरिदैछ" +msgid "%lis" +msgstr "" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Could not resolve '%s'" -msgstr "'%s' हल गर्न सकिएन" +msgid "Selection %s not found" +msgstr "चयन %s फेला पार्न सकिएन" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' हल गर्दा अस्थायी असफल" +msgid "Not using locking for read only lock file %s" +msgstr "ताल्चा मारिएको फाइल मात्र पढ्नको लागि ताल्चा मार्न प्रयोग गरिएको छैन %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "ताल्चा मारिएको फाइल खोल्न सकिएन %s" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "nfs माउन्ट गरिएको लक फाइलको लागि लक प्रयोग गरिएको छैन %s" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s %s मा जडान गर्न असफल भयो:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "ताल्चा प्राप्त गर्न सकिएन %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "आन्तरिक त्रुटि: असल हस्ताक्षर, तर कुञ्जी औठाछाप निर्धारण गर्न सकिएन?!" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "कम्तिमा एउटा अवैध हस्ताक्षर विरोध भयो ।" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "हस्ताक्षर रूजू गर्न '%s' कार्यन्वयन गर्न सकिएन (के gpgv स्थापना भयो?)" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv कार्यन्वयन गर्दा अज्ञात त्रुटि" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "निम्न हस्ताक्षरहरू अवैध छन्:\n" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "निम्न हस्ताक्षरहरू रूजू हुन सक्दैन किन भने सार्वजनिक कुञ्जी उपलब्ध छैन:\n" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "सहायक प्रक्रिया %s ले एउटा त्रुटि कोड फर्कायो (%u)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "सहायक प्रक्रिया %s अनपेक्षित बन्द भयो" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "फाइलमा त्रुटि लेखिदैछ" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "त्रुटि लेख्नुहोस्" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "सर्भरबाट त्रुटि पढिदैछ । दूर गन्तब्य बन्द जडान" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "फाइल बन्द गर्दा समस्या" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "सर्भरबाट त्रुटि पढिदैछ" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "फाइलमा त्रुटि लेखिदैछ" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "असफल चयन गर्नुहोस्" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "जडान समय सकियो" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "निर्गात फाइलमा त्रुटि लेखिदैछ" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "हेडरहरुको लागि पर्खिदैछ" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "खराब हेडर लाइन" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP सर्भरले अवैध जवाफ हेडर पठायो" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP सर्भरले अवैध सामग्री-लम्बाई हेडर पठायो" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP सर्भरले अवैध सामग्री-दायरा हेडर पठायो" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "फाइल %s खोल्न सकिएन" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP सर्भर संग भाँचिएको दायरा समर्थन छ" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "%s को लागि पाइप खोल्न सकिएन" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "अज्ञात मिति ढाँचा" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "सहायक प्रक्रिया IPC सिर्जना गर्न असफल" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "खराब हेडर डेटा" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "सङ्कुचनकर्ता कार्यान्वयन गर्न असफल भयो" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "जडान असफल भयो" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "त्रुटि पढ्नुहोस्" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "आन्तरिक त्रुटि" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "पड्नुहोस्, अहिले सम्म %lu पढ्न छ तर कुनै बाँकी छैन" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "स्तर वृद्धि गणना गरिदैछ..." +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "लेख्नुहोस्, अहिले सम्म %lu लेख्न छ तर सकिदैन " -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "आन्तरिक त्रुटि,सबै स्तरवृद्धिले उत्तम गुण नष्ट गर्दछ" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "फाइल बन्द गर्दा समस्या" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "काम भयो" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "फाइल गुप्तिकरण गर्दा समस्या" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "फाइल अनलिङ्क गर्दा समस्या" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "फाइल गुप्तिकरण गर्दा समस्या" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "निर्भरताहरू सुधार गरिदैछ..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr "असफल भयो ।" - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "निर्भरताहरू सुधार गर्न असक्षम भयो" +msgid "%c%s... Error!" +msgstr "%c%s... त्रुटि!" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "स्तर वृद्धि सेटलाई न्यूनतम गर्न असक्षम भयो" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... गरियो" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr "काम भयो" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "यी सुधार गर्न तपाईँले 'apt-get -f install' चलाउन पर्छ ।" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... गरियो" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "नभेटिएका निर्भरताहरू । -f प्रयोग गरेर प्रयास गर्नुहोस् ।" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "एउटा खाली फाइल mmap बनाउन सकिएन" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%s को लागि पाइप खोल्न सकिएन" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/mmap.cc:119 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [स्थापना भयो]" +msgid "Couldn't make mmap of %llu bytes" +msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" -#: apt-private/private-output.cc:237 +#: apt-pkg/contrib/mmap.cc:146 #, fuzzy -msgid "[installed,local]" -msgstr " [स्थापना भयो]" - -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +msgid "Unable to close mmap" +msgstr "%s खोल्न असफल" -#: apt-private/private-output.cc:242 +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 #, fuzzy -msgid "[installed,automatic]" -msgstr " [स्थापना भयो]" +msgid "Unable to synchronize mmap" +msgstr "आह्वान गर्न असक्षम भयो" + +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" -#: apt-private/private-output.cc:244 +#: apt-pkg/contrib/mmap.cc:322 #, fuzzy -msgid "[installed]" -msgstr " [स्थापना भयो]" +msgid "Failed to truncate file" +msgstr "फाइल %s लेख्न असफल भयो" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "निम्न प्याकेजहरुले निर्भरताहरू भेटेनन्:" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "but %s is installed" -msgstr "तर %s स्थापना भयो" +msgid "Unable to stat the mount point %s" +msgstr "माउन्ट बिन्दु %s स्थिर गर्न असक्षम" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "सिडी रोम स्थिर गर्न असफल भयो" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "but %s is to be installed" -msgstr "तर %s स्थापना हुनुपर्यो" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "नचिनिएको टाइप संक्षिप्त रुप: '%c'" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "तर यो स्थापनायोग्य छैन" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "कनफिगरेसन फाइल खोलिदैछ %s" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "तर यो अवास्तविक प्याकेज होइन" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "वाक्य संरचना त्रुटि %s:%u: बन्द कुनै नाम बिना सुरू हुन्छ ।" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "तर यो स्थापना भएन" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "वाक्य संरचना त्रुटि %s:%u: वैरुप गरिएको ट्याग" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "तर यो स्थापना हुन गइरहेको छैन" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "वाक्य संरचना त्रुटि %s:%u: मान पछाडि अतिरिक्त जंक" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr "वा" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "वाक्य संरचना त्रुटि %s:%u: अति धेरै नेस्टेड समावेश गर्दछ" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "निम्न प्याकेजहरू हटाइनेछन्:" - -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "निम्न प्याकेजहरू पछाडि राखिनेछन्:" - -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "निम्न प्याकेजहरू स्तर वृद्धि हुनेछन्:" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "वाक्य संरचना त्रुटि %s:%u: यहाँ बाट समावेश गरेको" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "निम्न प्याकेजहरू स्तरकम गरिनेछन्:" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "वाक्य संरचना त्रुटि %s:%u: समर्थन नभएको डाइरेक्टिभ '%s'" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "निम्न भइरहेको प्याकेजहरू परिवर्तन हुनेछैन:" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "%s (due to %s) " -msgstr "%s (%s कारणले) " +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "वाक्य संरचना त्रुटि %s:%u:फाइलको अन्त्यमा अतिरिक्त जंक" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"चेतावनी: निम्न आवश्यक प्याकेजहरू हटाइनेछन् ।\n" -"तपाईँ के गरिरहेको यकिन नभएसम्म यो काम गरिने छैन!" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "स्थापना परित्याग गरिदैछ ।" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu स्तर वृद्धि गरियो, %lu नयाँ स्थापना भयो, " +msgid "Command line option '%c' [from %s] is not known." +msgstr "आदेश लाइन विकल्प '%c' [%s बाट] ज्ञात छैन ।" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu पुन: स्थापना गरियो, " +msgid "Command line option %s is not understood" +msgstr "आदेश लाइन विकल्प %s बुझिएन" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "%lu downgraded, " -msgstr "%lu स्तर कम गरियो, " +msgid "Command line option %s is not boolean" +msgstr "आदेश लाइन विकल्प %s बूलियन छैन" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu हटाउन र %lu स्तर वृद्धि गरिएन ।\n" +msgid "Option %s requires an argument." +msgstr "विकल्प %s लाई एउटा तर्कको आवश्यकता पर्दछ ।" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu पूर्णरुपले स्थापना भएन र हटाइएन ।\n" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "विकल्प %s: कनफिगरेसन वस्तु विशिष्टिकरण संग एउटा =<val> हुनुपर्छ ।" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "विकल्प %s लाई एउटा इन्टिजर तर्कको आवश्यक पर्दछ, '%s' होइन" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "विकल्प '%s' अति लामो छ" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "अर्थ %s बुझिएन, सत्य वा झूठो प्रयास गर्नुहोस् ।" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "अवैध सञ्चालन %s" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Regex compilation error - %s" -msgstr "संकलन त्रुटि रिजेक्स गर्नुहोस् - %s" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "प्याकेज %s संस्करण %s संग एउटा नभेटिएको dep छ:\n" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "अद्यावधिक आदेशले कुनै तर्कहरू लिदैन" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "कूल प्याकेज नामहरू :" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "कूल प्याकेज नामहरू :" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " सामान्य प्याकेजहरू:" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr "शुद्ध अवास्तविक प्याकेजहरू:" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "आन्तरिक त्रुटि, स्थापना प्याकेजहरुलाई भाँचिएको प्याकेज भनिन्थ्यो!" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " एकल अवास्तविक प्याकेजहरू:" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "प्याकेजहरू हट्न चाहदैछन् तर हटाई अक्षम भइरहेछ ।" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " मिश्रित अवास्तविक प्याकेजहरू:" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "आन्तरिक त्रुटि, आदेश समाप्त भएको छैन" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " हराइरहेको:" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "कस्तो नमिलेको.. साइजहरू मेल खाएन, apt@packages.debian.org इमेल गर्नुहोस्" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक ।\n" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "संग्रहहरुको %sB प्राप्त गर्न आवश्यक ।\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +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 -#: apt-private/private-install.cc:166 -#, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "अनप्याक गरिसके पछि थप डिस्क खाली ठाउँको %sB प्रयोग हुनेछ ।\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "जम्मा ver/file सम्बन्धहरू: " -#. 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 -#: apt-private/private-install.cc:171 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "जम्मा ver/file सम्बन्धहरू: " -#: apt-private/private-install.cc:199 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन ।" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "कूल उपलब्ध मानचित्रणहरू:" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "त्यहाँ समस्याहरू छन् र हुन्छलाई जोड नगरिकन -y को प्रयोग भयो" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "कूल विश्वव्यापी स्ट्रिङ्गहरू:" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "त्रिभियल मात्र निर्दिष्ट गरिएको छ तर यो त्रिभियल सञ्चालन होइन ।" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "कूल निर्भरता संस्करण खाली ठाऊँ:" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "हो,मैले भने जस्तै गर्नुहोस्!" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "कूल शिथिल खाली ठाऊँ:" + +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "को लागि कूल खाली ठाऊँ लेखांकन:" -#: apt-private/private-install.cc:221 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"तपाईँले केही संभवत: हानिकारक काम गर्नुपर्छ ।\n" -"निरन्तरता दिन '%s' वाक्यांशमा टाइप गर्नुहोस् \n" -" ?] " +msgid "Package file %s is out of sync." +msgstr "प्याकेज फाइल %s sync भन्दा बाहिर छ ।" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "परित्याग गर्नुहोस् ।" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "कुनै प्याकेजहरू फेला परेन" -#: apt-private/private-install.cc:242 +#: cmdline/apt-cache.cc:1254 #, fuzzy -msgid "Do you want to continue?" -msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " - -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो" +msgid "You must give at least one search pattern" +msgstr "तपाईँले एउटा वास्तविक बान्की दिनुपर्छ" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"केही संग्रहहरू तान्न असक्षम भयो,apt-get अद्यावधिक चलिरहेछ वा हराइरहेको --fix-संगै प्रयास " -"गर्नुहुन्छ ?" - -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "हराइरहेको --fix-र स्वाप भइरहेको मेडिया हाल समर्थित भइरहेको छैन" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "प्याकेज फाइलहरू:" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "स्थापना परित्याग गरिदैछ ।" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "क्यास sync भन्दा बाहिर छ, प्याकेज फाइल x-ref गर्न सक्दैन" -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "पिन गरिएका प्याकेजहरू:" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(फेला परेन)" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " स्थापना भयो:" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " उमेद्वार:" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: " +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(कुनै पनि होइन)" -#: apt-private/private-install.cc:505 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr "प्याकेज पिन:" + +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " संस्करण तालिका:" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s को लागि %s %s, %s %s मा कम्पाएल गरिएको छ\n" -#: apt-private/private-install.cc:512 +#: cmdline/apt-cache.cc:1749 #, fuzzy 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] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +"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 "" +"उपयोग: apt-cache [विकल्पहरू] आदेश\n" +" apt-cache [विकल्पहरू] फाइल १ थप्नुहोस् [फाइल २ ...]\n" +" apt-cache [विकल्पहरू] pkg pkg1 देखाउनुहोस् [pkg2 ...]\n" +" apt-cache [विकल्पहरू] src pkg1 देखाउनुहोस् [pkg2 ...]\n" +"\n" +"तिनीहरुबाट APT's बिनारी क्यास फाइलहरू, र क्वेरी सूचना मिलाउन प्रयोग गरिने apt-cache " +"कम-स्तरको उपकरण हो\n" +"\n" +"\n" +"आदेशहरू:\n" +" थप्नुहोस् - स्रोत क्यासमा प्याकेज फाइल थप्नुहोस्\n" +" gencaches - प्याकेज र स्रोत क्यास दुवै निर्माण गर्नुहोस्\n" +" showpkg - एकल प्याकेजको लागि केही सामान्य सूचनाहरू देखाउनुहोस्\n" +" showsrc - स्रोत रेकर्डहरू देखाउनुहोस्\n" +" stats - केही आधारभूत तथ्यांकशास्त्र हरू देखाउनुहोस्\n" +" dump - पुरै फाइल स्पष्ट रुपमा देखाउनुहोस्\n" +" dumpavail - stdout मा एउटा उपलब्ध फाइल मुद्रण गर्नुहोस्\n" +" unmet - नभेटिएका निर्भरताहरू देखाउनुहोस्\n" +" खोजी गर्नुहोस् - regex बान्कीको लागि प्याकेज सूचि खोजी गर्नुहोस्\n" +" देखाउनुहोस् - प्याकेजको लागि पढ्नयोग्य रेकर्ड देखाउनुहोस्\n" +" आधारित - प्याकेजको लागि कच्चा निर्भरता सूचना देखाउनुहोस्\n" +" rdepends - प्याकेजको लागि उल्टो निर्भरता सूचना देखाउनुहोस्\n" +" pkgnames - सबै प्याकेजहरुको नामहरू सूचिबद्ध गर्नुहोस्\n" +" dotty - GraphViz को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n" +" xvcg - xvcg को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n" +" नीति - नीति सेटिङ्गहरू देखाउनुहोस्\n" +"\n" +"विकल्पहरू:\n" +" -h यो मद्दत पाठ ।\n" +" -p=? प्याकेज क्यास ।\n" +" -s=? स्रोत क्यास ।\n" +" -q प्रगति सूचक अक्षम गर्नुहोस् ।\n" +" -i नभेटिएको आदेशको लागि महत्वपूर्ण deps देखाउनुहोस् ।\n" +" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" +" -o=? एउटा स्वेच्छाचारी कनफिगरेसन फाइल सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" +"धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) म्यानुल पृष्टहरू हेर्नुहोस् ।\n" -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "कृपया यो डिस्कको लागि नाम उपलब्ध गराउनुहोस्, जस्तै 'Debian 2.1r1 Disk 1'" -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "कृपया ड्राइभमा डिस्क घुसाउनुहोस् र इन्टर थिच्नुहोस्" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "तपाईँ यसलाई सुधार गर्न 'apt-get -f install' चलाउन चाहनुहुन्छ:" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr " %s मा %s पुन:नामकरण असफल भयो" -#: apt-private/private-install.cc:614 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा " -"समाधान निर्दिष्ट गर्नुहोस्) ।" -#: apt-private/private-install.cc:628 +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "तपाईँको सेटमा बाँकी सि डि हरुको लागि यो प्रक्रिया फेरी गर्नुहोस् । " + +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "तर्कहरू जोडामा छैन" + +#: cmdline/apt-config.cc:89 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." +"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 "" -"केही प्याकेजहरू स्थापना हुन सक्दैन । यसको मतलब तपाईँले\n" -" एउटा असम्भव अवास्थाको अनुरोध गर्नु भएको छ वा यदि तपाईँले प्रयोग गर्नु भइरहेको केहि " -"प्याकेजहरुको आवश्यकता पर्ने अस्थिर\n" -" वितरण अहिले सम्म सिर्जना\n" -" भएको छैन वा आवगमन विनानै सर्यो ।" +"उपयग: apt-config [विकल्पहरू] आदेश\n" +"\n" +" APT कनफिग फाइल पढ्नको लागि apt-config साधारण उपकरण हो\n" +"\n" +"आदेशहरू:\n" +" शेल - शेल मोड\n" +" dump - कनफिगरेसन देखाउनुहोस्\n" +"\n" +"विकल्पहरू:\n" +" -h यो मद्दत पाठ ।\n" +" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" +" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "भाँचिएका प्याकेजहरू" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "सुझाव दिएका प्याकेजहरू:" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "सिफारिस गरिएका प्याकेजहरू:" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " -#: apt-private/private-install.cc:815 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" - -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr " %s को पुन: स्थापना सम्भव छैन, यो डाउनलोड हुन सक्दैन ।\n" - -#: apt-private/private-install.cc:836 +#: cmdline/apt-get.cc:454 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" - -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" - -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" +msgid "Couldn't find package %s" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" +msgid "%s set to manually installed.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-private/private-install.cc:937 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" +msgid "%s set to automatically installed.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-private/private-main.cc:32 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 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!" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "चेतावनी: निम्न प्याकलेजहरू प्रणाणीकरण हुन सक्दैन! " - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "प्रमाणिकरण चेतावनी अधिलेखन भयो ।\n" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "केही प्याकेजहरू प्रमाणीकरण हुन सक्दैन" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम" -#: apt-private/private-download.cc:50 -#, fuzzy -msgid "Install these packages without verification?" -msgstr "यी प्याकेजहरू रूजू बिना स्थापना गर्नुहुन्छ [y/N]? " +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s %s तान्न असफल भयो\n" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr " %s मा %s पुन:नामकरण असफल भयो" +msgid "Unable to find a source package for %s" +msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "हान्नुहोस्" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "पहिल्यै डाउनलोड भएका फाइलहरु फड्काइदैछ '%s'\n" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "प्राप्त गर्नुहोस्:" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#. 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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n" -#: apt-private/acqprogress.cc:146 +#. 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:896 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s (%sB/s) मा %sB मा तानियो\n" +msgid "Need to get %sB of source archives.\n" +msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:902 #, c-format -msgid " [Working]" -msgstr " [काम गरिरहेको]" +msgid "Fetch source %s\n" +msgstr "स्रोत फड्काउनुहोस् %s\n" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "केही संग्रह फड्काउन असफल भयो ।" + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"मेडिया परिवर्तन: कृपया डिस्क लेबुल ड्राइभ '%s' मा घुसाउनुहोस्\n" -" '%s'\n" -"र इन्टर थिच्नुहोस्\n" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to read %s" -msgstr "%s पढ्न असफल भयो" +msgid "Unpack command '%s' failed.\n" +msgstr "अनप्याक आदेश '%s' असफल भयो ।\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to change to %s" -msgstr "%s मा परिवर्तन गर्न असक्षम" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:991 #, c-format -msgid "No mirror file '%s' found " -msgstr "" +msgid "Build command '%s' failed.\n" +msgstr "निर्माण आदेश '%s' असफल भयो ।\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "फाइल %s खोल्न सकिएन" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "शाखा प्रक्रिया असफल भयो" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "फाइल %s खोल्न सकिएन" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "को लागि builddeps जाँच्न कम्तिमा एउटा प्याकेज निर्दष्ट गर्नुपर्छ" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "[Mirror: %s]" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "सहायक प्रक्रियामा IPC पाइप सिर्जना गर्न असफल" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "जडान असमायिक बन्द भयो" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "खराब पूर्वनिर्धारण सेटिङ्ग!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "निरन्तरता दिन इन्टर थिच्नुहोस् ।" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s कुनै निर्माणमा आधारित हुदैन ।\n" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "अनप्याक गर्दा केही त्रुटिहरू देखा पर्यो । म कनफिगर गर्न गइरहेको छु" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "स्थापना भएको प्याकेजहरू । यसले नक्कली त्रुटिहरुमा नतिजा गर्न सक्छ" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "वा त्रुटि हरटाइरहेको निर्भरताहरुले गरेको हो । यो ठीक छ, मात्र त्रुटिहरू" +#: cmdline/apt-get.cc:1312 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट पार्न असफल भयो: स्थापित प्याकेज %s अति नयाँ छ" -#: dselect/install:105 +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"दिएको संदेशहरू महत्वपूर्ण छ । कृपया तिनीहरू निश्चित गर्नुहोस् र चलाउनुहोस् [I]फेरी स्थापना " -"गर्नुहोस्" +"%sको लागि %s निर्भरता सन्तुष्ट हुन सकेन किन भने प्याकेज %s को कुनै उपलब्ध संस्करणले संस्करण " +"आवश्यकताहरुलाई सन्तुष्ट पार्न सकेन " -#: dselect/update:30 -msgid "Merging available information" -msgstr "उपलब्ध सूचना गाँभिदैछ" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "अहिलेसम्म लिङ्क गरिएको नोडमा बोलाइएको ड्रपनोड" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "ह्यास तत्व तोक्न असफल भयो" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "मोड बाँड्न असफल भयो" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "थपमोडमा आन्तरिक त्रुटि" - -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "मोड अधिलेखन गर्ने प्यास गरिदै, %s -> %s र %s/%s" - -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "मोडको डबल थप %s -> %s" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "नक्कली कनफिगगरेसन फाइल %s/%s" - -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "बाटो %s अति लामो छ " - -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "एक भन्दा बढी %s अनप्याक गरिदैछ" - -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "डाइरेक्ट्री %s फेरियो " - -#: apt-inst/extract.cc:152 -#, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "प्याकेज लक्षित मोडमा लेख्ने प्यास गर्दैछ %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "घुम्ती बाटो अति लामो छ" - -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr " %s स्थिर गर्न असफल" - -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 -#, c-format -msgid "Failed to rename %s to %s" -msgstr " %s मा %s पुन:नामकरण असफल भयो" - -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "डाइरेक्ट्री %s डाइरेक्ट्री विहिन द्वारा बदलिदैछ" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "यसको ह्यास बाल्टीमा नोड स्थित गर्न असफल भयो" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "बाटो अति लामो छ" - -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr " %s को लागि संस्करन बिना अधिलेखन प्याकेज मेल खायो" - -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "फाइल %s/%s ले प्याकेज %s मा एउटा अधिलेखन गर्दछ" - -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "%s स्थिर गर्न असक्षम भयो" - -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "फाइल %s लेख्न असफल भयो" - -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "%s फाइल बन्द गर्न असफल भयो" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "यो वैध DEB संग्रह होइन, '%s' सदस्य हराइरहेछ" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट गर्न असफल: %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "आन्तरीक त्रुटि, सदस्य तोक्न सक्दैन %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "पद वर्णन गर्न नसकिने नियन्त्रण फाइल" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "अवैध संग्रह हस्ताक्षर" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s को लागि निर्माण निर्भरताहरू सन्तुष्ट गर्न सकिएन । " -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "संग्रह सदस्य हेडर पढ्दा त्रुटि " +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "निर्माण निर्भरताहरू प्रक्रिया गर्न असफल" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "अवैध संग्रह सदस्य हेडर" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "अवैध संग्रह सदस्य हेडर" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "संग्रह अति छोटो छ" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "संग्रह हेडरहरू पढ्न असफल" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "पाइपहरू सिर्जना गर्न असफल" - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip कार्यन्वयन गर्न असफल" - -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "संग्रह दूषित भयो" - -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "टार चेकसम असफल भयो, संग्रह दूषित भयो" - -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "अज्ञात टार हेडर प्रकार %u, सदस्य %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "%s स्थिर गर्न असक्षम भयो ।" +msgid "Changelog for %s (%s)" +msgstr "%s (%s) मा जडान गरिदैछ" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "समर्थित मोड्युलहरू:" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"उपयोग: apt-get [विकल्पहरू] आदेश\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get डाउनलोड गर्न र प्याकेजहरू स्थापना गर्नको लागि साधारण आदेश लाइन इन्टरफेस हो ।\n" +"बारम्बार प्रयोग भइरहने आदेशहरू अद्यावधिक र स्थापना हुन् ।\n" +"\n" +"\n" +"आदेशहरू:\n" +" अद्यावधिक गर्नुहोस् - प्याकेजहरुको नयाँ सूचिहरू पुन:प्राप्त गर्नुहोस्\n" +" स्तर वृद्धि गर्नुहोस् - एउटा स्तरवृद्धि सम्पादन गर्नुहोस्\n" +" स्थापना गर्नुहोस् - नयाँ प्याकेजहरू स्थापना गर्नुहोस् (pkg libc6 हो libc6.deb होइन)\n" +" हटाउनुहोस् - प्याकेजहरू हटाउनुहोस्\n" +" स्रोत - स्रोत संग्रहहरू डाउनलोड गर्नुहोस्\n" +" build-dep - स्रोत प्याकेजहरुको लागि निर्माण-निर्भरताहरू कनफिगर गर्नुहोस्\n" +" dist-upgrade - स्तरवृद्धि वितरण गर्नुहोस्, apt-get(8) हेर्नुहोस्\n" +" dselect-upgrade - dselect चयनहरू पछ्याउनुहोस्\n" +" सफा गर्नुहोस् - डाउनलोड गरिएको संग्रह फाइलहरू मेट्नुहोस्\n" +" स्वचालित सफा - पुरानो डाउनलोड भएको संग्रह पाइलहरू मेट्नुहोस्\n" +" जाँच्नुहोस् - त्यहाँ कुनै भाँचिएका निर्भरताहरू छैन भन्ने रूजू गर्नुहोस्\n" +"\n" +"विकल्पहरू:\n" +" -h यो मद्दत पाठ.\n" +" -q लगयोग्य निर्गात - कुनै प्रगति सूचि छैन\n" +" -qq त्रुटिहरुको लागि निर्गात बाहेक केही छैन\n" +" -d डाउनलोड मात्र - संग्रहहरू स्थापना वा अनप्याक नगर्नुहोस्\n" +" -s No-act. Perform ordering simulation\n" +" -y सबै क्वेरीहरुलाई हो मान्नुहोस् र दूषित नबनाउनुहोस्\n" +" -f यदि पूर्णरुपले जाँच असफल भयो भने निरन्तरता दिने प्रयत्न गर्नुहोस्\n" +" -m यदि संग्रहहरु स्थानियकरण योग्य छैन भने निरन्तरता दिने प्रयत्न दिनुहोस्\n" +" -u स्तर वृद्धि प्याकेजहरुको सूचि राम्रो संग देखाउनुहोस्\n" +" -b यसलाई तानिसके पछि स्रोत प्याकेज निर्माण गर्नुहोस्\n" +" -V भरबोस संस्करण नम्बरहरू देखाउनुहोस्\n" +" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" +" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" +"धेरै सूचना र विकल्पको लागि apt-get(8), sources.list(5) र apt.conf(5) manual\n" +"pages हेर्नुहोस् ।\n" +" APT संग सुपर काउ शक्तिहरू छ ।\n" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "प्याकिङ्ग प्रणाली '%s' समर्थित छैन" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "उपयुक्त प्याकिङ्ग प्रणाली प्रकार निर्धारन गर्न असक्षम भयो" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i रेकर्डहरू लेखियो ।\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "हराइरहेको फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" - -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "हराइरहेको फाइल %i हरू र मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "MD5Sum मेल भएन" - -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "विधि ड्राइभर %s फेला पार्न सकिएन ।" +msgid "%s can not be marked as it is not installed.\n" +msgstr "तर यो स्थापना भएन" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "विधि %s सही रुपले सुरू हुन सकेन" +msgid "%s was already set to manually installed.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "कृपया डिस्क लेबुल: '%s' ड्राइभ '%s'मा घुसउनुहोस् र इन्टर थिच्नुहोस् । " +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "प्याकेज सूचीहरू वा वस्तुस्थिति फाइल पद वर्णन गर्न वा खोल्न सकिएन ।" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "यो समस्याहरू सुधार्न तपाईँ apt-get अद्यावधिक चलाउन चाहनुहुन्छ" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "स्रोतहरुको सूचि पढ्न सकिएन ।" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "खाली प्याकेज क्यास" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "%s खोल्न असफल" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "प्याकेज क्यास फाइल दूषित भयो " +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "प्याकेज क्यास फाइल एउटा अमिल्दो संस्करण हो" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "प्याकेज क्यास फाइल दूषित भयो " +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "यो APT ले संस्करण प्रणालीलाई समर्थन गर्दैन '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "प्याकेज क्यास विभिन्न वास्तुकलाको लागि निर्माण भएको हो" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "आधारित" +msgid "Unable to read the cdrom database %s" +msgstr "सिडी रोम डेटाबेस पढ्न असक्षम %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "पुन:आधारित" +#: 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 "" +"कृपया APT ले यो सिडी रोमलाई चिन्नको लागि apt-cdrom प्रयोग गर्नुहोस् । apt-get " +"अद्यावधिक नयाँ सिडी रोमहरू थप्नको लागि प्रयोग गरिदैन" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "सुझाव दिन्छ" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "गलत सिडी रोम" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "सिफारिस गर्दछ" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s मा सिडी रोम अनमाउन्ट गर्न असक्षम भयो, यो अहिले प्रयोगमा हुन सक्छ ।" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "द्वन्दहरू" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "डिस्क फेला परेन ।" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "बदल्छ" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "फाइल फेला परेन " -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "वेकायमहरू" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "स्थिर गर्न असफल भयो" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "परिमार्जन समय सेट असफल भयो" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "अवैध URl, स्थानिय URIS // संग सुरू हुन सक्दैन" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "महत्वपूर्ण" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "लगइन भइरहेछ" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "आवश्यक" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "समान नाम निर्धारण गर्न असक्षम भयो" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "मानक" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "स्थानिय नाम निर्धारण गर्न असक्षम भयो" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "वैकल्पिक" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "सर्भरले जडान अस्वीकार गर्यो र भन्यो: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "अतिरिक्त" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "प्रयोगकर्ता असफल भयो, सर्भरले भन्यो: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन" +msgid "PASS failed, server said: %s" +msgstr "पास असफल भयो, सर्भरले भन्यो: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "क्यास संग एउटा नमिल्दो संस्करण प्रणाली छ" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"प्रोक्सी सर्भर निर्दिष्ट गरियो तर कुनै स्क्रिफ्ट लगइन भएन, Acquire::ftp::ProxyLogin " +"खाली छ ।" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "लगइन स्क्रिफ्ट आदेश '%s' असफल भयो, सर्भरले भन्यो: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "वाऊ, APT ले सक्षम गरेको प्याकेज नामहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "टाइप असफल भयो: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "जडान समय सकियो" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "सर्भरले जडान बन्द गर्यो" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "वाऊ, APT ले सक्षम गरेको निर्भरताहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "एउटा प्रतिक्रियाले बफर अधिप्रवाह गर्यो" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "प्रोटोकल दूषित" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "एउटा सकेट सिर्जना गर्न सकेन" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "प्याकेज सूचिहरू पढिदैछ" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "डेटा सकेट जडान गर्न सकिएन, जडान समय सकियो" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "फाइल उपलब्धताहरू संकलन गरिदैछ" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "असफल भयो" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr " %s मा लेख्न असक्षम" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "निस्क्रिय सकेट जडान गर्न सकिएन" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo सुन्ने सकेट प्राप्त गर्न असक्षम भयो" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "सकेट बाँध्न सकिएन" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "सकेटमा सुन्न सकिएन" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "सकेट नाम निर्धारण गर्न सकिएन" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "पोर्ट आदेश पठाउन असक्षम भयो" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "अज्ञात ठेगाना परिवार %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "पुन:नामकरण असफल गरियो, %s (%s -> %s) ।" +msgid "EPRT failed, server said: %s" +msgstr "EPRT असफल भयो, सर्भरले भन्यो: %s" -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "MD5Sum मेल भएन" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "डेटा सकेटको जडान समय सकियो" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "साइज मेल खाएन" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "जडान स्वीकार गर्न असक्षम भयो" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "अवैध सञ्चालन %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "समस्या द्रुतान्वेषण फाइल" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "फाइल तान्न असक्षम भयो, सर्भरले भन्यो '%s'" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "डेटा सकेट समय सकियो" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "निम्न कुञ्जी IDs को लागि कुनै सार्वजनिक कुञ्जी उपलब्ध छैन:\n" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "डेटा स्थान्तरण असफल भयो, सर्भरले भन्यो '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "क्वेरी" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "आह्वान गर्न असक्षम भयो" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:76 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "%s (%s) मा जडान गरिदैछ" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:87 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:94 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s (f=%u t=%u p=%u) को लागि सकेट सिर्जना गर्न सकिएन" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:100 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr " %s:%s (%s) मा जडान सुरुवात गर्न सकेन" + +#: methods/connect.cc:108 +#, c-format +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "%s:%s (%s) मा जडान गर्न सकिएन, जडान समय सकियो" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:126 #, 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 प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज " -"निश्चित गर्नुहोस् । (arch हराएरहेको कारणले) " +msgid "Could not connect to %s:%s (%s)." +msgstr " %s:%s (%s) मा जडान गर्न सकिएन ।" -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "%s मा जडान गरिदैछ" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "प्याकेज अनुक्रमणिका फाइलहरू दूषित भए । प्याकेज %s को लागि कुनै फाइलनाम: फाँट छैन ।" +msgid "Could not resolve '%s'" +msgstr "'%s' हल गर्न सकिएन" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "बिक्रता ब्ल्क %s ले कुनै औठाछाप समाविष्ट गर्दैन" +msgid "Temporary failure resolving '%s'" +msgstr "'%s' हल गर्दा अस्थायी असफल" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" +msgid "System error resolving '%s:%s'" +msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "आंशिक संग्रह डाइरेक्ट्री %s हराइरहेछ ।" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" +msgid "Unable to connect to %s:%s:" +msgstr "%s %s मा जडान गर्न असफल भयो:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ (%s बाँकी छ)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "आन्तरिक त्रुटि: असल हस्ताक्षर, तर कुञ्जी औठाछाप निर्धारण गर्न सकिएन?!" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "कम्तिमा एउटा अवैध हस्ताक्षर विरोध भयो ।" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"केही अनुक्रमणिका फाइलहरू डाउनलोड गर्न असफल भयो, तिनीहरू उपेक्षित भए, वा सट्टामा पुरानो " -"एउटा प्रयोग गरियो ।" - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "तपाईँको स्रोत सूचिमा केही 'source' URIs राख्नुहोस्" +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "हस्ताक्षर रूजू गर्न '%s' कार्यन्वयन गर्न सकिएन (के gpgv स्थापना भयो?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "प्राथमिकता फाइलमा अवैध रेकर्ड, कुनै प्याकेज हेडर छैन" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "पिन टाइप %s बुझ्न सकिएन " +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv कार्यन्वयन गर्दा अज्ञात त्रुटि" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "पिनको लागि कुनै प्राथमिकता (वा शून्य) निर्दिष्ट छैन" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "निम्न हस्ताक्षरहरू अवैध छन्:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 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:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "फाइल %s खोल्न सकिएन" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "निम्न हस्ताक्षरहरू रूजू हुन सक्दैन किन भने सार्वजनिक कुञ्जी उपलब्ध छैन:\n" -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"द्वन्द/पुन-आधारित लूपको कारणले गर्दा स्थापना चलाउनको लागि अस्थायी रुपमा प्याकेज %s " -"हटाउनु पर्नेछ । यो प्राय नराम्रो हो, तर यदि तपाईँ यो साँच्चै गर्न चाहनुहुन्छ भने, APT::" -"Force-LoopBreak विकल्प सक्रिय गर्नुहोस् ।" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "लाइन %u स्रोत सूचि %s मा अति लामो छ ।" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "फाइलमा त्रुटि लेखिदैछ" -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "सिडी रोम अनमाउन्ट गरिदैछ..." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "सर्भरबाट त्रुटि पढिदैछ । दूर गन्तब्य बन्द जडान" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "सिडी रोम माउन्ट विन्दु प्रयोग गरिदैछ %s\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "सर्भरबाट त्रुटि पढिदैछ" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "डिस्को लागि पर्खिदै...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "फाइलमा त्रुटि लेखिदैछ" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "सिडी रोम माउन्ट गरिदै...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "असफल चयन गर्नुहोस्" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "परिचय गराइदैछ..." +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "जडान समय सकियो" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "निर्गात फाइलमा त्रुटि लेखिदैछ" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "अनुक्रमणिका फाइलहरुको लागि डिस्क स्क्यान गरिदैछ...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "हेडरहरुको लागि पर्खिदैछ" -#: apt-pkg/cdrom.cc:734 -#, fuzzy, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr " %i प्याकेज अनुक्रमणिकाहरू, %i स्रोत अनुक्रमणिका र %i हस्ताक्षरहरू फेला परे\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "खराब हेडर लाइन" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP सर्भरले अवैध जवाफ हेडर पठायो" -#: apt-pkg/cdrom.cc:771 -#, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP सर्भरले अवैध सामग्री-लम्बाई हेडर पठायो" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "त्यो वैध नाम होइन, फेरी प्रयास गर्नुहोस् ।\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP सर्भरले अवैध सामग्री-दायरा हेडर पठायो" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"यो डिस्कको नाम:\n" -"'%s'\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP सर्भर संग भाँचिएको दायरा समर्थन छ" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "प्यकेज सूचिहरू प्रतिलिपी गरिदैछ..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "अज्ञात मिति ढाँचा" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "नयाँ स्रोत सूचि लेखिदैछ\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "खराब हेडर डेटा" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "जडान असफल भयो" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "प्याकेज %s पुन:स्थापना हुन चाहन्छ, तर यसको लागि मैले एउटा संग्रह फेला पार्न सकिन ।" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "आन्तरिक त्रुटि" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"त्रुटि, pkgProblemResolver:: समाधानले विच्छेदन सिर्जना गर्दछ, यो भइरहेको प्याकेजहरुको " -"कारणले गर्दा हो ।" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "स्तर वृद्धि गणना गरिदैछ..." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "समस्याहरू सुधार्न असक्षम भयो, तपाईँले प्याकेजहरु भाँच्नुभयो ।" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "काम भयो" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "निर्भरता ट्री निर्माण गरिदैछ" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "उमेद्वार संस्करणहरू" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "निर्भरता सिर्जना" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "उपलब्ध सूचना गाँभिदैछ" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "निर्भरताहरू सुधार गरिदैछ..." -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "%s खोल्न असफल" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr "असफल भयो ।" -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "फाइल %s लेख्न असफल भयो" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "निर्भरताहरू सुधार गर्न असक्षम भयो" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "स्तर वृद्धि सेटलाई न्यूनतम गर्न असक्षम भयो" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (२)" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr "काम भयो" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr " '%s' को लागि '%s' निष्काशन फेला पार्न सकिएन" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "यी सुधार गर्न तपाईँले 'apt-get -f install' चलाउन पर्छ ।" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr " '%s' को लागि '%s' संस्करण फेला पार्न सकिएन" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "नभेटिएका निर्भरताहरू । -f प्रयोग गरेर प्रयास गर्नुहोस् ।" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +msgid "[installed,upgradable to: %s]" +msgstr " [स्थापना भयो]" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [स्थापना भयो]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [स्थापना भयो]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [स्थापना भयो]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "तर %s स्थापना भयो" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "तर यो स्थापनायोग्य छैन" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "तर यो अवास्तविक प्याकेज होइन" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "तर यो स्थापना भएन" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "घुमाउरो फाइलमा अवैध लाइन:%s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "तर यो स्थापना हुन गइरहेको छैन" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr "वा" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI पद वर्णन)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "निम्न प्याकेजहरुले निर्भरताहरू भेटेनन्:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "निम्न प्याकेजहरू हटाइनेछन्:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "निम्न प्याकेजहरू पछाडि राखिनेछन्:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "निम्न प्याकेजहरू स्तर वृद्धि हुनेछन्:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "निम्न प्याकेजहरू स्तरकम गरिनेछन्:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "निम्न भइरहेको प्याकेजहरू परिवर्तन हुनेछैन:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)" +msgid "%s (due to %s) " +msgstr "%s (%s कारणले) " -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI पद वर्णन)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"चेतावनी: निम्न आवश्यक प्याकेजहरू हटाइनेछन् ।\n" +"तपाईँ के गरिरहेको यकिन नभएसम्म यो काम गरिने छैन!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (पूर्ण dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu स्तर वृद्धि गरियो, %lu नयाँ स्थापना भयो, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +msgid "%lu reinstalled, " +msgstr "%lu पुन: स्थापना गरियो, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "%s खोलिदैछ" +msgid "%lu downgraded, " +msgstr "%lu स्तर कम गरियो, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (प्रकार)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu हटाउन र %lu स्तर वृद्धि गरिएन ।\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu पूर्णरुपले स्थापना भएन र हटाइएन ।\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr " %s स्थापना भयो" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr " %s कनफिगर गरिदैछ" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr " %s हटाइदैछ" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr " %s पूर्ण रुपले हट्यो" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "अद्यावधिक आदेशले कुनै तर्कहरू लिदैन" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "फाइल %s खोल्न सकिएन" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "आन्तरिक त्रुटि, स्थापना प्याकेजहरुलाई भाँचिएको प्याकेज भनिन्थ्यो!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr " %s तयार गरिदैछ" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "प्याकेजहरू हट्न चाहदैछन् तर हटाई अक्षम भइरहेछ ।" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr " %s अनप्याक गरिदैछ" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "आन्तरिक त्रुटि, आदेश समाप्त भएको छैन" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr " %s कनफिगर गर्न तयार गरिदैछ" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "कस्तो नमिलेको.. साइजहरू मेल खाएन, apt@packages.debian.org इमेल गर्नुहोस्" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr " %s स्थापना भयो" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक ।\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr " %s हटाउन तयार गरिदैछ" +msgid "Need to get %sB of archives.\n" +msgstr "संग्रहहरुको %sB प्राप्त गर्न आवश्यक ।\n" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr " %s हट्यो" +#. 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 +#: apt-private/private-install.cc:167 +#, fuzzy, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "अनप्याक गरिसके पछि थप डिस्क खाली ठाउँको %sB प्रयोग हुनेछ ।\n" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr " %s पूर्ण रुपले हटाउन तयार गरिदैछ" +#. 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 +#: apt-private/private-install.cc:172 +#, fuzzy, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr " %s पूर्ण रुपले हट्यो" +msgid "You don't have enough free space in %s." +msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन ।" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "त्यहाँ समस्याहरू छन् र हुन्छलाई जोड नगरिकन -y को प्रयोग भयो" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr " %s मा लेख्न असक्षम" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "त्रिभियल मात्र निर्दिष्ट गरिएको छ तर यो त्रिभियल सञ्चालन होइन ।" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "हो,मैले भने जस्तै गर्नुहोस्!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"तपाईँले केही संभवत: हानिकारक काम गर्नुपर्छ ।\n" +"निरन्तरता दिन '%s' वाक्यांशमा टाइप गर्नुहोस् \n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "परित्याग गर्नुहोस् ।" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"केही संग्रहहरू तान्न असक्षम भयो,apt-get अद्यावधिक चलिरहेछ वा हराइरहेको --fix-संगै प्रयास " +"गर्नुहुन्छ ?" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "हराइरहेको --fix-र स्वाप भइरहेको मेडिया हाल समर्थित भइरहेको छैन" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।" + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "स्थापना परित्याग गरिदैछ ।" + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: " + +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " + +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" +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] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "तपाईँ यसलाई सुधार गर्न 'apt-get -f install' चलाउन चाहनुहुन्छ:" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा " +"समाधान निर्दिष्ट गर्नुहोस्) ।" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" +#: apt-private/private-install.cc:638 +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 "" +"केही प्याकेजहरू स्थापना हुन सक्दैन । यसको मतलब तपाईँले\n" +" एउटा असम्भव अवास्थाको अनुरोध गर्नु भएको छ वा यदि तपाईँले प्रयोग गर्नु भइरहेको केहि " +"प्याकेजहरुको आवश्यकता पर्ने अस्थिर\n" +" वितरण अहिले सम्म सिर्जना\n" +" भएको छैन वा आवगमन विनानै सर्यो ।" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "भाँचिएका प्याकेजहरू" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "चयन %s फेला पार्न सकिएन" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "सुझाव दिएका प्याकेजहरू:" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "ताल्चा मारिएको फाइल मात्र पढ्नको लागि ताल्चा मार्न प्रयोग गरिएको छैन %s" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "सिफारिस गरिएका प्याकेजहरू:" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:825 #, c-format -msgid "Could not open lock file %s" -msgstr "ताल्चा मारिएको फाइल खोल्न सकिएन %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "nfs माउन्ट गरिएको लक फाइलको लागि लक प्रयोग गरिएको छैन %s" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not get lock %s" -msgstr "ताल्चा प्राप्त गर्न सकिएन %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr " %s को पुन: स्थापना सम्भव छैन, यो डाउनलोड हुन सक्दैन ।\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:846 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "%s is already the newest version.\n" +msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" + +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" + +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "चेतावनी: निम्न प्याकलेजहरू प्रणाणीकरण हुन सक्दैन! " -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "प्रमाणिकरण चेतावनी अधिलेखन भयो ।\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "सहायक प्रक्रिया %s ले एउटा त्रुटि कोड फर्कायो (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "केही प्याकेजहरू प्रमाणीकरण हुन सक्दैन" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "सहायक प्रक्रिया %s अनपेक्षित बन्द भयो" +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "यी प्याकेजहरू रूजू बिना स्थापना गर्नुहुन्छ [y/N]? " -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "फाइल बन्द गर्दा समस्या" +msgid "Failed to parse %s. Edit again? " +msgstr " %s मा %s पुन:नामकरण असफल भयो" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "फाइल %s खोल्न सकिएन" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "%s को लागि पाइप खोल्न सकिएन" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "सहायक प्रक्रिया IPC सिर्जना गर्न असफल" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "सङ्कुचनकर्ता कार्यान्वयन गर्न असफल भयो" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "पड्नुहोस्, अहिले सम्म %lu पढ्न छ तर कुनै बाँकी छैन" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "लेख्नुहोस्, अहिले सम्म %lu लेख्न छ तर सकिदैन " +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "हान्नुहोस्" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "फाइल बन्द गर्दा समस्या" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "प्राप्त गर्नुहोस्:" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "फाइल गुप्तिकरण गर्दा समस्या" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "फाइल अनलिङ्क गर्दा समस्या" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "फाइल गुप्तिकरण गर्दा समस्या" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s (%sB/s) मा %sB मा तानियो\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... त्रुटि!" +msgid " [Working]" +msgstr " [काम गरिरहेको]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... गरियो" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"मेडिया परिवर्तन: कृपया डिस्क लेबुल ड्राइभ '%s' मा घुसाउनुहोस्\n" +" '%s'\n" +"र इन्टर थिच्नुहोस्\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... गरियो" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "एउटा खाली फाइल mmap बनाउन सकिएन" +msgid "Can not read mirror file '%s'" +msgstr "फाइल %s खोल्न सकिएन" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "%s को लागि पाइप खोल्न सकिएन" +msgid "No entry found in mirror file '%s'" +msgstr "फाइल %s खोल्न सकिएन" + +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "सहायक प्रक्रियामा IPC पाइप सिर्जना गर्न असफल" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "जडान असमायिक बन्द भयो" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "खराब पूर्वनिर्धारण सेटिङ्ग!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "निरन्तरता दिन इन्टर थिच्नुहोस् ।" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "" -#: apt-pkg/contrib/mmap.cc:146 +#: dselect/install:102 #, fuzzy -msgid "Unable to close mmap" -msgstr "%s खोल्न असफल" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "अनप्याक गर्दा केही त्रुटिहरू देखा पर्यो । म कनफिगर गर्न गइरहेको छु" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "आह्वान गर्न असक्षम भयो" - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" +msgid "will be configured. This may result in duplicate errors" +msgstr "स्थापना भएको प्याकेजहरू । यसले नक्कली त्रुटिहरुमा नतिजा गर्न सक्छ" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "फाइल %s लेख्न असफल भयो" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "वा त्रुटि हरटाइरहेको निर्भरताहरुले गरेको हो । यो ठीक छ, मात्र त्रुटिहरू" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"दिएको संदेशहरू महत्वपूर्ण छ । कृपया तिनीहरू निश्चित गर्नुहोस् र चलाउनुहोस् [I]फेरी स्थापना " +"गर्नुहोस्" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "उपलब्ध सूचना गाँभिदैछ" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "अहिलेसम्म लिङ्क गरिएको नोडमा बोलाइएको ड्रपनोड" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "माउन्ट बिन्दु %s स्थिर गर्न असक्षम" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "ह्यास तत्व तोक्न असफल भयो" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "सिडी रोम स्थिर गर्न असफल भयो" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "मोड बाँड्न असफल भयो" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "नचिनिएको टाइप संक्षिप्त रुप: '%c'" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "थपमोडमा आन्तरिक त्रुटि" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "कनफिगरेसन फाइल खोलिदैछ %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "मोड अधिलेखन गर्ने प्यास गरिदै, %s -> %s र %s/%s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "वाक्य संरचना त्रुटि %s:%u: बन्द कुनै नाम बिना सुरू हुन्छ ।" +msgid "Double add of diversion %s -> %s" +msgstr "मोडको डबल थप %s -> %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "वाक्य संरचना त्रुटि %s:%u: वैरुप गरिएको ट्याग" +msgid "Duplicate conf file %s/%s" +msgstr "नक्कली कनफिगगरेसन फाइल %s/%s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "वाक्य संरचना त्रुटि %s:%u: मान पछाडि अतिरिक्त जंक" +msgid "The path %s is too long" +msgstr "बाटो %s अति लामो छ " -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ" +msgid "Unpacking %s more than once" +msgstr "एक भन्दा बढी %s अनप्याक गरिदैछ" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "वाक्य संरचना त्रुटि %s:%u: अति धेरै नेस्टेड समावेश गर्दछ" +msgid "The directory %s is diverted" +msgstr "डाइरेक्ट्री %s फेरियो " -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "वाक्य संरचना त्रुटि %s:%u: यहाँ बाट समावेश गरेको" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "प्याकेज लक्षित मोडमा लेख्ने प्यास गर्दैछ %s/%s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "घुम्ती बाटो अति लामो छ" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "वाक्य संरचना त्रुटि %s:%u: समर्थन नभएको डाइरेक्टिभ '%s'" +msgid "Failed to stat %s" +msgstr " %s स्थिर गर्न असफल" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr " %s मा %s पुन:नामकरण असफल भयो" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "वाक्य संरचना त्रुटि %s:%u:फाइलको अन्त्यमा अतिरिक्त जंक" +msgid "The directory %s is being replaced by a non-directory" +msgstr "डाइरेक्ट्री %s डाइरेक्ट्री विहिन द्वारा बदलिदैछ" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "स्थापना परित्याग गरिदैछ ।" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "यसको ह्यास बाल्टीमा नोड स्थित गर्न असफल भयो" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "आदेश लाइन विकल्प '%c' [%s बाट] ज्ञात छैन ।" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "बाटो अति लामो छ" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "आदेश लाइन विकल्प %s बुझिएन" +msgid "Overwrite package match with no version for %s" +msgstr " %s को लागि संस्करन बिना अधिलेखन प्याकेज मेल खायो" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "आदेश लाइन विकल्प %s बूलियन छैन" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "फाइल %s/%s ले प्याकेज %s मा एउटा अधिलेखन गर्दछ" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "विकल्प %s लाई एउटा तर्कको आवश्यकता पर्दछ ।" +msgid "Unable to stat %s" +msgstr "%s स्थिर गर्न असक्षम भयो" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "विकल्प %s: कनफिगरेसन वस्तु विशिष्टिकरण संग एउटा =<val> हुनुपर्छ ।" +msgid "Failed to write file %s" +msgstr "फाइल %s लेख्न असफल भयो" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "विकल्प %s लाई एउटा इन्टिजर तर्कको आवश्यक पर्दछ, '%s' होइन" +msgid "Failed to close file %s" +msgstr "%s फाइल बन्द गर्न असफल भयो" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "विकल्प '%s' अति लामो छ" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "यो वैध DEB संग्रह होइन, '%s' सदस्य हराइरहेछ" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "अर्थ %s बुझिएन, सत्य वा झूठो प्रयास गर्नुहोस् ।" +msgid "Internal error, could not locate member %s" +msgstr "आन्तरीक त्रुटि, सदस्य तोक्न सक्दैन %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "पद वर्णन गर्न नसकिने नियन्त्रण फाइल" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "अवैध संग्रह हस्ताक्षर" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "संग्रह सदस्य हेडर पढ्दा त्रुटि " + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "अवैध संग्रह सदस्य हेडर" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "अवैध संग्रह सदस्य हेडर" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "संग्रह अति छोटो छ" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "संग्रह हेडरहरू पढ्न असफल" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "पाइपहरू सिर्जना गर्न असफल" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "gzip कार्यन्वयन गर्न असफल" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "संग्रह दूषित भयो" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "टार चेकसम असफल भयो, संग्रह दूषित भयो" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "अवैध सञ्चालन %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "अज्ञात टार हेडर प्रकार %u, सदस्य %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3481,7 +3485,7 @@ msgstr "MD5 गणना गर्दा पढ्न असफल भयो" msgid "Problem unlinking %s" msgstr "समस्या अनलिङ्क भइरहेछ %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3534,6 +3538,10 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" " -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "आन्तरिक त्रुटि,सबै स्तरवृद्धिले उत्तम गुण नष्ट गर्दछ" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s वैध DEB प्याकेज होइन" diff --git a/po/nl.po b/po/nl.po index 0cad8e6c8..a55a94995 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot <schot@a-eskwadraat.nl>\n" "Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n" @@ -21,3241 +21,3245 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indexbestand van type '%s' wordt niet ondersteund" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakket %s versie %s heeft een niet-voldane vereiste:\n" +msgid "Unable to read %s" +msgstr "Kan %s niet lezen" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Totaal aantal pakketnamen: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Kan %s niet veranderen" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Totaal aantal pakketstructuren: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Kan de status van %s niet opvragen." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normale pakketten: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Zuiver virtuele pakketten: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "dpkg wordt uitgevoerd" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Losstaande virtuele pakketten: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Gemengde virtuele pakketten: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Kan geen geschikt pakketsysteemtype bepalen" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Ontbrekend: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i records weggeschreven.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Totaal aantal verschillende versies: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i records weggeschreven met %i missende bestanden.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Totaal aantal verschillende beschrijvingen: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i records weggeschreven met %i niet overeenkomende bestanden\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Totaal aantal vereisten: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"%i records weggeschreven met %i missende bestanden en %i niet overeenkomende " +"bestanden\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Totaal aantal versie/bestand-relaties: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Kan geen authenticatierecord vinden voor: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Totaal aantal Beschrijving/bestand-relaties: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash-som komt niet overeen voor: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Totaal aantal 'Voorziet'-toewijzingen " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Het methodestuurprogramma %s kon niet gevonden worden." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Totaal aantal geglobde strings: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Totale hoeveelheid vereisten-versieruimte: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Methode %s startte niet op de juiste manier" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Totale onbenutte ruimte: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op " +"'enter' te drukken." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Totale hoeveelheid verantwoorde ruimte: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"De pakketlijsten of het statusbestand konden of niet ontleed, of niet " +"geopend worden." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakketbestand %s is niet meer gesynchroniseerd." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"U kunt misschien 'apt-get update' uitvoeren om deze problemen te verhelpen" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Geen pakketten gevonden" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "De lijst van bronnen kon niet gelezen worden." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "U dient precies één zoekpatroon op te geven" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Lege pakketcache" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Het pakketcachebestand is beschadigd" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Het pakketcachebestand heeft een niet-compatibele versie" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Het pakketcachebestand is beschadigd" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Kan pakket %s niet vinden" +msgid "This APT does not support the versioning system '%s'" +msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakketbestanden:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "De pakketcache was aangemaakt voor een andere architectuur" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Cache loopt niet synchroon, kan pakketbestand niet 'x-ref'-en" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Vereisten" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Vastgepinde pakketten:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Voor-Vereisten" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(niet gevonden)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suggesties" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Geïnstalleerd: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Aanbevelingen" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidaat: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Conflicteert met" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(geen)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Vervangt" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakketpin: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Verouderd" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versietabel:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Breekt" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s voor %s gecompileerd op %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Vult aan" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Gebruik: apt-cache [opties] opdracht\n" -" apt-cache [opties] add bestand1 [bestand2 ...]\n" -" apt-cache [opties] showpkg pakket1 [pakket2 ...]\n" -" apt-cache [opties] showsrc pakket1 [pakket2 ...]\n" -"\n" -"apt-cache is een basaal hulpmiddel waarmee u de binaire cachebestanden\n" -"van APT kunt manipuleren en informatie daaruit kunt opvragen.\n" -"\n" -"Opdrachten:\n" -" add - Voeg een pakketbestand toe aan de broncache.\n" -" gencaches - Bouw zowel de pakket- als de broncache.\n" -" showpkg - Toon algemene informatie over een enkel pakket.\n" -" showsrc - Toon bronrecords.\n" -" stats - Toon enkele basisstatistieken.\n" -" dump - Toon het gehele bestand in een compacte vorm.\n" -" dumpavail - Print een beschikbaarheidsbestand op de standaarduitvoer.\n" -" unmet - Toon niet-voldane vereisten.\n" -" search - Toon lijst met pakketten die met regexpatroon overeenkomen.\n" -" show - Toon een leesbaar overzicht voor het pakket.\n" -" showauto - Toon een lijst van automatisch geïnstalleerde pakketten.\n" -" depends - Toon de afhankelijkheden van een pakket.\n" -" rdepends - Toon de pakketten die afhankelijk zijn van een pakket.\n" -" pkgnames - Toon de namen van alle pakketten op het systeem.\n" -" dotty - Genereer pakketgrafen voor GraphViz.\n" -" xvcg - Genereer pakketgrafen voor xvcg.\n" -" policy - Toon beleidsinstellingen.\n" -"\n" -"Opties:\n" -" -h Deze hulptekst.\n" -" -p=? De pakketcache.\n" -" -s=? De broncache.\n" -" -q Voortgangsindicator uitschakelen.\n" -" -i Toon alleen belangrijke vereisten voor de 'unmet'-opdracht.\n" -" -c=? Lees dit configuratiebestand.\n" -" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp.\n" -"Zie de man-pagina's van apt-cache(8) en apt.conf(5) voor meer informatie.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "belangrijk" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Gelieve een naam voor deze schijf op te geven, bijvoorbeeld 'Debian 5.0.3 " -"Schijf 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "noodzakelijk" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Gelieve een schijf in het station te plaatsen en op 'enter' te drukken" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standaard" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Aankoppelen van '%s' op '%s' is mislukt" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "optioneel" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Dit proces dient herhaald te worden voor alle CD's in uw set." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Indexbestand van type '%s' wordt niet ondersteund" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenten niet in paren" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex-compilatiefout - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Gebruik: apt-config [opties] opdracht\n" -"\n" -"apt-config is een eenvoudig programma om het APT-configuratiebestand te " -"lezen\n" -"\n" -"Opdrachten:\n" -" shell - Shell modus\n" -" dump - Toon de configuratie\n" -"\n" -"Opties:\n" -" -h Deze hulptekst.\n" -" -c=? Lees dit configuratiebestand.\n" -" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Cache heeft een niet-compatibel versienummeringssysteem" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Fout tijdens verwerken van %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Wauw, u heeft meer pakketten dan deze APT aan kan." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Wauw, u heeft meer versies dan deze APT aan kan." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "'%s' wordt genomen als bronpakket in plaats van '%s'\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Wauw, u heeft het maximum aantal beschrijvingen dat deze APT aan kan " +"overschreden." -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Negeer niet beschikbare versie '%s' van pakket '%s'" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Wauw, u heeft meer afhankelijkheden dan deze APT aan kan." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Kon pakket %s niet vinden" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Pakket %s %s werd niet gevonden bij het verwerken van de " +"bestandsafhankelijkheden" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s is ingesteld voor handmatige installatie.\n" +msgid "Couldn't stat source package list %s" +msgstr "Kon de status van de bronpakketlijst %s niet opvragen" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s is ingesteld op automatische geïnstalleerd.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Pakketlijsten worden ingelezen" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Voorziene bestanden worden verzameld" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Kan niet naar %s schrijven" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Kon de ophaalmap niet vergrendelen" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " -"worden" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Kan geen bronpakket vinden voor %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -"MERK OP: Het verpakken van '%s' wordt bijgehouden in het versiebeheersysteem " -"'%s' op:\n" -"%s\n" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -"Gebruik:\n" -"bzr get %s\n" -"om de nieuwste (mogelijk nog niet uit uitgebrachte) versie van het pakket op " -"te halen.\n" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" +msgid "rename failed, %s (%s -> %s)." +msgstr "herbenoeming is mislukt, %s (%s -> %s)." -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "U heeft niet voldoende vrije schijfruimte op %s" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash-som komt niet overeen" -#. 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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Grootte komt niet overeen" -#. 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Moet %sB aan bronarchieven ophalen.\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Ongeldige operatie %s" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "Ophalen bron %s\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Ophalen van sommige archieven is mislukt." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Kon Release-bestand %s niet ontleden" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Er zijn geen publieke sleutels beschikbaar voor de volgende sleutel-IDs:\n" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, 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" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Uitpakopdracht '%s' is mislukt.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, 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" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Er is een fout opgetreden bij de handtekeningcontrole. De pakketbron is niet " +"bijgewerkt en de oude indexbestanden zullen worden gebruikt. GPG-fout: %s: " +"%s\n" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Bouwopdracht '%s' is mislukt.\n" +msgid "GPG error: %s: %s" +msgstr "GPG-fout: %s: %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Dochterproces is mislukt" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u " +"dit pakket handmatig moet repareren (wegens missende architectuur)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"U dient tenminste één pakket op te geven om de bouwvereisten van te " -"controleren" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor " +"pakket %s." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen" +msgid "Vendor block %s contains no fingerprint" +msgstr "Verkopersblok %s bevat geen vingerafdruk" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s heeft geen bouwvereisten.\n" +msgid "List directory %spartial is missing." +msgstr "Lijstmap %spartial is afwezig." -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Archiefmap %spartial is afwezig." + +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Kan de map %s niet vergrendelen" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Bestand %li van %li wordt opgehaald (nog %s te gaan)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Bestand %li van %li wordt opgehaald" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Ophalen van %s is mislukt %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " -"onvindbaar is" +"Ophalen van sommige indexbestanden is mislukt, deze zijn of genegeerd, of er " +"zijn oudere versies van gebruikt." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"Uw bronnenlijst (/etc/apt/sources.list) dient tenminste één bron-URI te " +"bevatten" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " -"onvindbaar is" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"Voldoen van Vereiste %s van pakket %s is mislukt: geïnstalleerde versie %s " -"is te nieuw" +"Ongeldige record in het voorkeurenbestand %s, 'Package' koptekst ontbreekt" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Pintype %s wordt niet begrepen" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" 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" +"Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie " +"'man 5 apt.conf', onder APT::Immediate-Configure. (%d)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Kon het bestand '%s' niet openen" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " -"onvindbaar is" +"Deze installatie-aanroep vereist het tijdelijk verwijderen van het " +"essentiële pakket %s, dit omwille van een Conflicts/Pre-Depends -lus. Dit is " +"vaak slecht, wilt u dit echt doen dan dient u de APT::Force-LoopBreak optie " +"te activeren." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s" +msgid "Line %u too long in source list %s." +msgstr "Regel %u van de bronlijst %s is te lang." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD wordt afgekoppeld...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Bouwvereisten voor %s konden niet voldaan worden." +msgid "Using CD-ROM mount point %s\n" +msgstr "Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Verwerken van de bouwvereisten is mislukt" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Er wordt gewacht op de schijf...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Er wordt verbinding gemaakt met %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD wordt aangekoppeld...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Ondersteunde modules:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificatie..." -#: cmdline/apt-get.cc:1632 -#, fuzzy -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 "" -"Gebruik: apt-get [opties] opdracht\n" -" apt-get [opties] install|remove pakket1 [pakket2 ...]\n" -" apt-get [opties] source pakket1 [pakket2 ...]\n" -"\n" -"apt-get is een eenvoudige commandoregel-interface voor het ophalen en\n" -"installeren van pakketten. De meest gebruikte opdrachten zijn 'update\n" -"en 'install'.\n" -"\n" -"Opdrachten:\n" -" update - Haal de huidige versie van pakketlijsten op\n" -" upgrade - Voer een opwaardering uit\n" -" install - Installeer nieuwe pakketten (pakket is b.v. libc6, niet libc6." -"deb)\n" -" remove - Verwijder pakketten\n" -" autoremove - Verwijder automatisch alle ongebruikte pakketten\n" -" purge - Verwijder pakketten en hun configuratiebestanden\n" -" source - Haal bronarchieven op\n" -" build-dep - Installeer de pakketten vereist voor het bouwen van " -"bronpakketten\n" -" dist-upgrade - Opwaardeer de distributie, zie apt-get(8)\n" -" dselect-upgrade - Opwaardeer volgens dselect-selecties\n" -" clean - Verwijder opgehaalde archiefbestanden\n" -" autoclean - Verwijder verouderde opgehaalde archiefbestanden\n" -" check - Controleer onvoldane vereisten\n" -"\n" -"Opties:\n" -" -h Deze hulptekst\n" -" -q Logbare uitvoer - geen voortgangsindicator\n" -" -qq Geen uitvoer anders dan foutmeldingen\n" -" -d Alleen ophalen - archieven NIET installeren of uitpakken\n" -" -s Doe-niets. Doe alleen sorteersimulatie\n" -" -y Antwoord \"ja\" op alle vragen zonder ze te stellen\n" -" -f Probeer door te gaan als de integriteitstest faalt\n" -" -m Probeer door te gaan als archieven niet gevonden kunnen worden\n" -" -u Toon ook een lijst van bijgewerkte pakketten\n" -" -b Bouw het bronpakket nadat het is opgehaald\n" -" -V Toon uitgebreide versie nummers\n" -" -c=? Lees dit configuratiebestand\n" -" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -"Zie de apt-get(8), sources.list(5) en apt.conf(5) handleidingen\n" -"voor meer informatie en opties.\n" -" Deze APT heeft Super Koe kracht.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " -"worden" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" - -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" - -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "maar het is niet geïnstalleerd" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s is ingesteld voor handmatige installatie.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s is ingesteld op automatische geïnstalleerd.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s is reeds de nieuwste versie.\n" - -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s is reeds de nieuwste versie.\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Er is gewacht op %s, maar die kwam niet" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s is ingesteld voor handmatige installatie.\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Openen van %s is mislukt" +msgid "Stored label: %s\n" +msgstr "Opgeslagen label: %s \n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Er wordt gescand voor indexbestanden...\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/cdrom.cc:734 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Er zijn %zu pakket-indexen, %zu bron-indexen, %zu vertalingsindexen, en %zu " +"handtekeningen gevonden\n" -#: cmdline/apt.cc:47 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Kan geen Package-bestanden vinden. Is dit mogelijk geen Debian schijf, of de " +"verkeerde architectuur?" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Kan de cd databank %s niet lezen" - -#: 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 "" -"Om deze APT deze CD te laten herkennen kunt u best apt-cdrom gebruiken. 'apt-" -"get update' is niet in staat om nieuwe CDs toe te voegen" +msgid "Found label '%s'\n" +msgstr "Label '%s' gevonden\n" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Verkeerde CD" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Dat is een ongeldige naam, gelieve opnieuw te proberen.\n" -#: methods/cdrom.cc:249 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Kan de CD in %s niet loskoppelen, mogelijk wordt die nog steeds gebruikt." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Schijf niet gevonden" - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Bestand niet gevonden" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "stat is mislukt" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Instellen van de aanpassingstijd is mislukt" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Bezig met aanmelden" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Kan de 'peer'-naam niet bepalen" +"De schijf heet:\n" +"'%s'\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Kan de lokale naam niet bepalen" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Pakketlijsten worden gekopieerd..." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Onze verbinding is door de server geweigerd met bericht: %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Nieuwe bronlijst wordt weggeschreven\n" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "USER mislukt; bericht van server: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Bronlijst-ingangen voor de schijf zijn:\n" -#: methods/ftp.cc:232 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS mislukt; bericht van server: %s" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::" -"ProxyLogin is leeg." - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s" - -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE mislukt; bericht van server: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Verbinding is verlopen" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Verbinding is verbroken door de server" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Leesfout" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Een reactie deed de buffer overlopen" - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocolcorruptie" - -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Schrijffout" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Kon geen socket aanmaken" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Kon de datasocket niet verbinden, de verbinding verliep" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Mislukt" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Kon de passieve socket niet verbinden." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo kon geen luistersocket verkrijgen" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Kon geen socket binden" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Kon niet op de socket niet luisteren" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Kon de socketnaam niet bepalen" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Kan PORT-commando niet verzenden" - -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Onbekende adresfamilie %u (AF_*)" - -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT is mislukt; bericht van server: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Datasocket verbinding is verlopen" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Kan de verbinding niet aanvaarden" +"Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " +"gevonden worden." -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Probleem bij het hashen van het bestand" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " +"veroorzaakt worden door vastgehouden pakketten." -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Kan bestand niet ophalen; bericht van server: %s" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datasocket verliep" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Boom van vereisten wordt opgebouwd" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Data transfer is mislukt, server zei: %s" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidaat-versies" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Zoekopdracht" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generatie vereisten" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Aanroepen mislukt van " +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "De status informatie wordt gelezen" -#: methods/connect.cc:76 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Er wordt verbinding gemaakt met %s (%s)" +msgid "Failed to open StateFile %s" +msgstr "Openen van StateFile %s is mislukt" -#: methods/connect.cc:87 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Failed to write temporary StateFile %s" +msgstr "Wegschrijven van tijdelijke StateFile %s is mislukt" -#: methods/connect.cc:94 +#: apt-pkg/tagfile.cc:140 #, 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" +msgid "Unable to parse package file %s (1)" +msgstr "Kon pakketbestand %s niet ontleden (1)" -#: methods/connect.cc:100 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kan de verbinding met %s:%s (%s) niet aangaan." +msgid "Unable to parse package file %s (2)" +msgstr "Kon pakketbestand %s niet ontleden (2)" -#: methods/connect.cc:108 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Kon niet verbinden met %s:%s (%s), de verbinding verliep" +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' voor '%s' is niet gevonden" -#: methods/connect.cc:126 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Kon niet verbinden met %s:%s (%s)." +msgid "Version '%s' for '%s' was not found" +msgstr "Versie '%s' voor '%s' is niet gevonden" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Connecting to %s" -msgstr "Er wordt verbinding gemaakt met %s" +msgid "Unable to locate package %s" +msgstr "Kan pakket %s niet vinden" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Could not resolve '%s'" -msgstr "Kon '%s' niet vinden" +msgid "Couldn't find task '%s'" +msgstr "Kon taak '%s' niet vinden" -#: methods/connect.cc:205 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Tijdelijke fout bij het opzoeken van '%s'" +msgid "Couldn't find any package by regex '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: methods/connect.cc:209 +#: apt-pkg/cacheset.cc:615 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" +msgid "Couldn't find any package by glob '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%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)" +#: apt-pkg/cacheset.cc:626 +#, fuzzy, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Kan geen versies selecteren voor pakket '%s' omdat deze zuiver virtueel is" -#: methods/connect.cc:258 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Kan geen verbinding maken met %s %s:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n" -"niet bepalen?!" +"Kan noch de geïnstalleerde, noch de kandidaat-versie van het pakket '%s' " +"selecteren omdat deze geen van beide heeft" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Er is tenminste één ongeldige ondertekening gevonden." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Kan de nieuwste versie van het pakket '%s' niet selecteren omdat deze zuiver " +"virtueel is" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Kon 'gpgv' niet uitvoeren om ondertekening te verifiëren (is gpgv " -"geïnstalleerd?)" +"Kan de kandidaat-versie van het pakket %s niet selecteren omdat deze geen " +"kandidaat heeft" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Can't select installed version from package %s as it is not installed" msgstr "" +"Kan de geïnstalleerde versie van het pakket %s niet selecteren omdat deze " +"niet geïnstalleerd is" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Onbekende fout bij het uitvoeren van gpgv" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Kon Release-bestand %s niet ontleden" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "De volgende ondertekeningen waren ongeldig:\n" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Geen secties in Release-bestand %s" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"De volgende ondertekeningen konden niet geverifieerd worden omdat de " -"publieke sleutel niet beschikbaar is:\n" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Geen Hash-vermelding in Release-bestand %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Geen 'Valid-Until'-vermelding in Release-bestand %s" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fout bij het schrijven naar het bestand" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Geen 'Date'-vermelding in Release-bestand %s" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "" -"Fout bij het lezen van de server, andere kant heeft de verbinding gesloten" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fout bij het lezen van de server" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Misvormde regel %lu in bronlijst %s ([optie] onbegrijpelijk)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fout bij het schrijven naar bestand" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Misvormde regel %lu in bronlijst %s ([optie] te kort)" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Selectie is mislukt" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Misvormde regel %lu in bronlijst %s ([%s] is geen toekenning)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Verbinding verliep" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Misvormde regel %lu in bronlijst %s ([%s] heeft geen sleutel)" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fout bij het schrijven naar het uitvoerbestand" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Misvormde regel %lu in bronlijst %s ([%s] sleutel %s heeft geen waarde)" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Wachtend op de kopteksten" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Misvormde regel %lu in bronlijst %s (URI)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Foute koptekstregel" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Misvormde regel %lu in bronlijst %s (dist)" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Er is door de HTTP server een ongeldige 'reply'-koptekst verstuurd" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "" -"Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Misvormde regel %lu in bronlijst %s (absolute dist)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "" -"Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Misvormde regel %lu in bronlijst %s (dist parse)" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s wordt geopend" + +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Misvormde regel %u in bronlijst %s (type)" + +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Onbekend datumformaat" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Foute koptekstdata" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "%s wordt geïnstalleerd" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Verbinding mislukt" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s wordt geconfigureerd" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Interne fout" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s wordt verwijderd" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Opwaardering wordt doorgerekend... " +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s wordt volledig verwijderd" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "De verdwijning van %s wordt opgemerkt" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Klaar" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Post-installatie-trigger %s wordt uitgevoerd" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Map '%s' ontbreekt" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Kon het bestand '%s' niet openen" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Preparing %s" +msgstr "%s wordt voorbereid" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Vereisten worden gecorrigeerd..." +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "%s wordt uitgepakt" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislukt." +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Configuratie van %s wordt voorbereid" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Kan vereisten niet corrigeren" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s is geïnstalleerd" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Verwijdering van %s wordt voorbereid" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Klaar" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s is verwijderd" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "U kunt 'apt-get -f install' uitvoeren om dit op te lossen." +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Volledige verwijdering van %s wordt voorbereid" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken." +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s is volledig verwijderd" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-private/private-output.cc:233 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Geïnstalleerd]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Geïnstalleerd]" +msgid "Can not write log (%s)" +msgstr "Kan niet naar %s schrijven" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Geïnstalleerd]" - -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Geïnstalleerd]" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-private/private-output.cc:248 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "[upgradable from: %s]" +msgid "Waited for %s but it wasn't there" +msgstr "Er is gewacht op %s, maar die kwam niet" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" +"Er is geen apport-verslag weggeschreven omdat het maximum aantal verslagen " +"(MaxReports) al is bereikt" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "De volgende pakketten hebben niet-voldane vereisten:" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemen met vereisten - wordt niet geconfigureerd" -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "maar %s is geïnstalleerd" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding volgt op een " +"eerdere mislukking." -#: apt-private/private-output.cc:444 -#, c-format -msgid "but %s is to be installed" -msgstr "maar %s zal geïnstalleerd worden" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " +"over een volle schijf." -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "maar het is niet installeerbaar" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " +"over onvoldoende-geheugen." -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "maar het is een virtueel pakket" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " +"over een volle schijf." -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "maar het is niet geïnstalleerd" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout over " +"dpkg-I/O is." -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "maar het zal niet geïnstalleerd worden" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Kan de beheersmap (%s) niet vergrendelen. Is deze in gebruik door een ander " +"proces?" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " of" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Kan de beheersmap (%s) niet vergrendelen. Heeft u beheerdersrechten?" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg werd onderbroken; voer handmatig '%s' uit om het probleem te verhelpen. " -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "De volgende pakketten zullen VERWIJDERD worden:" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Niet vergrendeld" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "De volgende pakketten zijn achtergehouden:" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %liu %limin %lis" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "De volgende pakketten zullen opgewaardeerd worden:" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%liu %limin %lis" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "De volgende pakketten zullen GEDEGRADEERD worden:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "%s (due to %s) " -msgstr "%s (vanwege %s) " +msgid "Selection %s not found" +msgstr "Selectie %s niet gevonden" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"WAARSCHUWING: De volgende essentiële pakketten zullen verwijderd worden.\n" -"Dit dient NIET gedaan te worden tenzij u precies weet wat u doet!" +"Er wordt geen vergrendeling gebruikt voor het alleen-lezen-" +"vergrendelingsbestand %s" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:195 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, " +msgid "Could not open lock file %s" +msgstr "Kon het vergrendelingsbestand '%s' niet openen" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu opnieuw geïnstalleerd, " +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%lu downgraded, " -msgstr "%lu gedegradeerd, " +msgid "Could not get lock %s" +msgstr "Kon vergrendeling %s niet verkrijgen" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n" +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n" +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[J/n]" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[j/N]" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "J" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Subproces %s ontving een segmentatiefout." -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Subproces %s ontving signaal %u." -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Regex compilation error - %s" -msgstr "Regex-compilatiefout - %s" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Subproces %s gaf de foutcode %u terug" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "De opdracht 'update' aanvaard geen argumenten" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Subproces %s sloot onverwacht af" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Schrijffout" + +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Problem closing the gzip file %s" +msgstr "Probleem bij het afsluiten van het gzip-bestand %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Could not open file %s" +msgstr "Kon het bestand %s niet openen" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Kon de bestandsindicator %d niet openen" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Aanmaken subproces-IPC is mislukt" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Uitvoeren van de compressor is mislukt " -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Interne fout, rangschikken is niet voltooid" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Leesfout" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Merkwaardig... De groottes kwamen niet overeen, gelieve apt@packages.debian." -"org te mailen" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "schrijf, de laatste %lu konden niet weggeschreven worden" + +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n" +msgid "Problem closing the file %s" +msgstr "Probleem bij het afsluiten van het bestand %s" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Er moeten %sB aan archieven opgehaald worden.\n" +msgid "Problem renaming the file %s to %s" +msgstr "Probleem bij het hernoemen van '%s' naar '%s'" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Door deze operatie zal er %sB extra schijfruimte gebruikt worden.\n" +msgid "Problem unlinking the file %s" +msgstr "Probleem bij het ontlinken van het bestand %s" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Probleem bij het synchroniseren van het bestand" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Fout!" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "You don't have enough free space in %s." -msgstr "U heeft onvoldoende vrije schijfruimte op %s." +msgid "%c%s... Done" +msgstr "%c%s... Klaar" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Er zijn problemen en -y was gebruikt zonder --force-yes" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking." +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Klaar" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Ja, doe wat ik zeg!" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan een leeg bestand niet mmappen" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"U staat op het punt om iets te doen wat mogelijk schadelijk is.\n" -"Als u wilt doorgaan, dient u de zin '%s' in te typen.\n" -" ?] " +msgid "Couldn't duplicate file descriptor %i" +msgstr "Kon de bestandsindicator %i niet dupliceren" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Afbreken." +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Kon van %lu bytes geen mmap maken" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Wilt u doorgaan?" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Kan mmap niet sluiten" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Ophalen van sommige bestanden is mislukt" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Kan mmap niet synchronizeren" + +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Kon van %lu bytes geen mmap maken" + +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Afkorten van bestand is mislukt" + +#: 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 "" +"Onvoldoende ruimte voor Dynamische MMap. Gelieve de grootte van APT::Cache-" +"Start te verhogen. Huidige waarde: %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:319 +#: apt-pkg/contrib/mmap.cc:446 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" -"fix-missing proberen?" +"Kan het formaat van de MMap niet vergroten omdat de grens van %lu bytes al " +"is bereikt" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Kan het formaat van de MMap niet vergroten omdat het automatisch vergroten " +"door de gebruiker is uitgeschakeld." -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Geen oplossing voor de missende pakketten gevonden." +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Kan de status van het aanhechtpunt %s niet opvragen" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Installatie wordt afgebroken." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "stat op de CD-ROM is mislukt" -#: apt-private/private-install.cc:365 -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] "" -"Het volgende pakket is van uw systeem verdwenen omdat\n" -"alle bestanden zijn overschreven door andere pakketten:" -msgstr[1] "" -"De volgende pakketten zijn van uw systeem verdwenen omdat\n" -"alle bestanden zijn overschreven door andere pakketten:" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Onbekende type-afkorting '%c'" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Let op: Dit wordt automatische en bewust door dpkg gedaan." +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Configuratiebestand %s wordt geopend" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "We mogen geen dingen verwijderen, kan AutoRemover niet starten" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaxfout %s:%u: Blok start zonder naam." -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, het lijkt erop dat de AutoRemover iets vernietigd heeft, dit zou\n" -"niet mogen kunnen. Gelieve een bug-rapport voor apt in te sturen." +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "De volgende informatie helpt u mogelijk verder:" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaxfout %s:%u: Extra rommel na waarde" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Syntaxfout %s:%u: Richtlijnen kunnen enkel op het hoogste niveau gegeven " +"worden" -#: apt-private/private-install.cc:512 -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] "" -"Het volgende pakket is automatisch geïnstalleerd en is niet langer nodig:" -msgstr[1] "" -"De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " -"nodig:" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, 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 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" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd" -#: apt-private/private-install.cc:518 -#, 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'." +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te " -"lossen:" +"Syntaxfout %s:%u: De richtlijn 'clear' vereist een optieboom als argument" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -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)." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaxfout %s:%u: Extra rommel aan het einde van het bestand" -#: apt-private/private-install.cc:628 -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 "" -"Sommige pakketten konden niet geïnstalleerd worden. Dit kan betekenen dat u\n" -"een onmogelijke situatie gevraagd hebt of dat u de 'unstable'-distributie \n" -"gebruikt en sommige benodigde pakketten nog vastzitten in 'incoming'." +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Geen sleutelring geïnstalleerd in %s." -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Niet-werkende pakketten:" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Commandoregel-optie '%c' [van %s] is onbekend." -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Commandoregel-optie %s wordt niet begrepen" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Voorgestelde pakketten:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Commandoregel-optie %s is niet booleaans" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Aanbevolen pakketten:" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Optie %s vereist een argument." -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -"%s wordt overgeslagen, het is al geïnstalleerd en opwaardering is niet " -"gevraagd.\n" +"Optie %s: De specificatie van het configuratie-item dient een =<waarde> te " +"bevatten." -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"%s wordt overgeslagen, het is niet geïnstalleerd en alleen opwaardering is " -"gevraagd.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Optie %s vereist een integer getal als argument, niet '%s'" -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"Herinstallatie van %s is niet mogelijk daar het niet opgehaald kan worden.\n" +msgid "Option '%s' is too long" +msgstr "Optie '%s' is te lang" -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s is reeds de nieuwste versie.\n" +msgid "Sense %s is not understood, try true or false." +msgstr "Waarde %s wordt niet begrepen, probeer 'true' of 'false'." -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n" +msgid "Invalid operation %s" +msgstr "Ongeldige operatie %s" -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakket %s versie %s heeft een niet-voldane vereiste:\n" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Totaal aantal pakketnamen: " -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Totaal aantal pakketstructuren: " -#: apt-private/private-main.cc:32 -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 "" -"OPMERKING: Dit is een simulatie!\n" -" Voor daadwerkelijke uitvoering heeft apt-get beheerdersrechten nodig.\n" -" Houd er ook rekening mee ook dat vergrendeling is uitgeschakeld en\n" -" vertrouw dus niet op de relevantie voor de werkelijke huidige situatie!" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normale pakketten: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "" -"WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Zuiver virtuele pakketten: " + +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Losstaande virtuele pakketten: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Authentificatiewaarschuwing is genegeerd.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Gemengde virtuele pakketten: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Sommige pakketten konden niet geauthentificeerd worden" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Ontbrekend: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Wilt u deze pakketten installeren zonder verificatie?" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Totaal aantal verschillende versies: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Ophalen van %s is mislukt %s\n" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Totaal aantal verschillende beschrijvingen: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Hernoemen van %s naar %s is mislukt" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Totaal aantal vereisten: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Totaal aantal versie/bestand-relaties: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Totaal aantal Beschrijving/bestand-relaties: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Geraakt " +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Totaal aantal 'Voorziet'-toewijzingen " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Ophalen:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Totaal aantal geglobde strings: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Genegeerd " +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Totale hoeveelheid vereisten-versieruimte: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fout " +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Totale onbenutte ruimte: " -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%sB opgehaald in %s (%sB/s)\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Totale hoeveelheid verantwoorde ruimte: " -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid " [Working]" -msgstr " [Bezig]" +msgid "Package file %s is out of sync." +msgstr "Pakketbestand %s is niet meer gesynchroniseerd." -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Geen pakketten gevonden" + +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "U dient precies één zoekpatroon op te geven" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Medium wisselen: Gelieve de schijf met label\n" -" '%s'\n" -"in het station '%s' te plaatsen en op 'enter' te drukken\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Kan %s niet lezen" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakketbestanden:" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Kan %s niet veranderen" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Cache loopt niet synchroon, kan pakketbestand niet 'x-ref'-en" -#. 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 "Geen spiegelbestand '%s' gevonden " +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Vastgepinde pakketten:" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Geen spiegelbestand '%s' gevonden " +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(niet gevonden)" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Geen spiegelbestand '%s' gevonden " +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Geïnstalleerd: " -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Spiegelserver: %s]" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidaat: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Aanmaken van IPC-pijp naar subproces is mislukt" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(geen)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Verbinding werd voortijdig afgebroken" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pakketpin: " -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Foute standaardinstelling!" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versietabel:" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Druk 'enter' om door te gaan." +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s voor %s gecompileerd op %s %s\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Wilt u alle eerder opgehaalde '.deb'-bestanden verwijderen?" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Gebruik: apt-cache [opties] opdracht\n" +" apt-cache [opties] add bestand1 [bestand2 ...]\n" +" apt-cache [opties] showpkg pakket1 [pakket2 ...]\n" +" apt-cache [opties] showsrc pakket1 [pakket2 ...]\n" +"\n" +"apt-cache is een basaal hulpmiddel waarmee u de binaire cachebestanden\n" +"van APT kunt manipuleren en informatie daaruit kunt opvragen.\n" +"\n" +"Opdrachten:\n" +" add - Voeg een pakketbestand toe aan de broncache.\n" +" gencaches - Bouw zowel de pakket- als de broncache.\n" +" showpkg - Toon algemene informatie over een enkel pakket.\n" +" showsrc - Toon bronrecords.\n" +" stats - Toon enkele basisstatistieken.\n" +" dump - Toon het gehele bestand in een compacte vorm.\n" +" dumpavail - Print een beschikbaarheidsbestand op de standaarduitvoer.\n" +" unmet - Toon niet-voldane vereisten.\n" +" search - Toon lijst met pakketten die met regexpatroon overeenkomen.\n" +" show - Toon een leesbaar overzicht voor het pakket.\n" +" showauto - Toon een lijst van automatisch geïnstalleerde pakketten.\n" +" depends - Toon de afhankelijkheden van een pakket.\n" +" rdepends - Toon de pakketten die afhankelijk zijn van een pakket.\n" +" pkgnames - Toon de namen van alle pakketten op het systeem.\n" +" dotty - Genereer pakketgrafen voor GraphViz.\n" +" xvcg - Genereer pakketgrafen voor xvcg.\n" +" policy - Toon beleidsinstellingen.\n" +"\n" +"Opties:\n" +" -h Deze hulptekst.\n" +" -p=? De pakketcache.\n" +" -s=? De broncache.\n" +" -q Voortgangsindicator uitschakelen.\n" +" -i Toon alleen belangrijke vereisten voor de 'unmet'-opdracht.\n" +" -c=? Lees dit configuratiebestand.\n" +" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp.\n" +"Zie de man-pagina's van apt-cache(8) en apt.conf(5) voor meer informatie.\n" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -"Er zijn fouten opgetreden tijdens het uitpakken. Geïnstalleerde pakketten" +"Gelieve een naam voor deze schijf op te geven, bijvoorbeeld 'Debian 5.0.3 " +"Schijf 1'" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "worden geconfigureerd. Hierbij kunnen fouten meerdere malen optreden" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Gelieve een schijf in het station te plaatsen en op 'enter' te drukken" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"of veroorzaakt worden door niet-voldane vereisten. Dit is Ok, enkel de fouten" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Aankoppelen van '%s' op '%s' is mislukt" -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"boven dit bericht zijn belangrijk. U dient ze op te lossen en de installatie " -"opnieuw uit te voeren" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "De beschikbare informatie wordt samengevoegd" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode werd aangeroepen op een nog gelinkte knoop" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Lokaliseren van het hash-element is mislukt!" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Toewijzen van de omleiding is mislukt" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Dit proces dient herhaald te worden voor alle CD's in uw set." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Interne fout in AddDiversion" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenten niet in paren" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Er wordt gepoogd om de omleiding %s->%s en %s/%s te overschrijven" +#: cmdline/apt-config.cc:89 +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 "" +"Gebruik: apt-config [opties] opdracht\n" +"\n" +"apt-config is een eenvoudig programma om het APT-configuratiebestand te " +"lezen\n" +"\n" +"Opdrachten:\n" +" shell - Shell modus\n" +" dump - Toon de configuratie\n" +"\n" +"Opties:\n" +" -h Deze hulptekst.\n" +" -c=? Lees dit configuratiebestand.\n" +" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dubbele toevoeging van de omleiding %s->%s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dubbel configuratiebestand %s/%s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Het pad %s is te lang" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s wordt meer dan eens uitgepakt" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "'%s' wordt genomen als bronpakket in plaats van '%s'\n" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "De map %s is al omgeleid" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Negeer niet beschikbare versie '%s' van pakket '%s'" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:454 #, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Het omleidingspad is te lang" +msgid "Couldn't find package %s" +msgstr "Kon pakket %s niet vinden" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Failed to stat %s" -msgstr "stat op %s is mislukt" +msgid "%s set to manually installed.\n" +msgstr "%s is ingesteld voor handmatige installatie.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Hernoemen van %s naar %s is mislukt" +msgid "%s set to automatically installed.\n" +msgstr "%s is ingesteld op automatische geïnstalleerd.\n" -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "De map %s wordt vervangen door een niet-map" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Vinden van de knoop in de hash-emmer is mislukt" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Het pad is te lang" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Kon de ophaalmap niet vergrendelen" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Pakket-overeenkomst wordt overschreven met 'no version' voor %s" +#: cmdline/apt-get.cc:726 +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" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Het bestand %s/%s overschrijft het bestand van pakket %s" +msgid "Unable to find a source package for %s" +msgstr "Kan geen bronpakket vinden voor %s" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Unable to stat %s" -msgstr "Kan de status van %s niet opvragen" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"MERK OP: Het verpakken van '%s' wordt bijgehouden in het versiebeheersysteem " +"'%s' op:\n" +"%s\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "Wegschrijven van bestand %s is mislukt" +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Gebruik:\n" +"bzr get %s\n" +"om de nieuwste (mogelijk nog niet uit uitgebrachte) versie van het pakket op " +"te halen.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Failed to close file %s" -msgstr "Sluiten van bestand %s is mislukt" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dit is geen geldig DEB-archief, het onderdeel '%s' mankeert" +msgid "Couldn't determine free space in %s" +msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Interne fout, kon onderdeel %s niet vinden" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Niet-ontleedbaar 'control'-bestand" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ongeldige archiefondertekening" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fout bij het lezen van de koptekst van het archiefonderdeel" +msgid "You don't have enough free space in %s" +msgstr "U heeft niet voldoende vrije schijfruimte op %s" -#: apt-inst/contrib/arfile.cc:96 +#. 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:891 #, c-format -msgid "Invalid archive member header %s" -msgstr "Ongeldige koptekst voor archiefonderdeel: %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ongeldige koptekst in archiefonderdeel" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archief is te kort" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Moet %sB aan bronarchieven ophalen.\n" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Lezen van de archiefkopteksten is mislukt" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Ophalen bron %s\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Aanmaken pijp is mislukt" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Ophalen van sommige archieven is mislukt." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Uitvoeren van gzip is mislukt " +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Beschadigd archief" +#: cmdline/apt-get.cc:950 +#, 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" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar controlesom klopt niet, het pakket is beschadigd" +#: cmdline/apt-get.cc:962 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Uitpakopdracht '%s' is mislukt.\n" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Unable to stat %s." -msgstr "Kan de status van %s niet opvragen." +msgid "Build command '%s' failed.\n" +msgstr "Bouwopdracht '%s' is mislukt.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Dochterproces is mislukt" + +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "Progress: [%3i%%]" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "dpkg wordt uitgevoerd" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund" +msgid "%s has no build depends.\n" +msgstr "%s heeft geen bouwvereisten.\n" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Kan geen geschikt pakketsysteemtype bepalen" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " +"onvindbaar is" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records.\n" -msgstr "%i records weggeschreven.\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " +"onvindbaar is" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i records weggeschreven met %i missende bestanden.\n" +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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i records weggeschreven met %i niet overeenkomende bestanden\n" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"%i records weggeschreven met %i missende bestanden en %i niet overeenkomende " -"bestanden\n" +"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " +"onvindbaar is" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Kan geen authenticatierecord vinden voor: %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash-som komt niet overeen voor: %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Bouwvereisten voor %s konden niet voldaan worden." -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Het methodestuurprogramma %s kon niet gevonden worden." +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Verwerken van de bouwvereisten is mislukt" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" +msgid "Changelog for %s (%s)" +msgstr "Er wordt verbinding gemaakt met %s (%s)" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Methode %s startte niet op de juiste manier" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Ondersteunde modules:" + +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Gebruik: apt-get [opties] opdracht\n" +" apt-get [opties] install|remove pakket1 [pakket2 ...]\n" +" apt-get [opties] source pakket1 [pakket2 ...]\n" +"\n" +"apt-get is een eenvoudige commandoregel-interface voor het ophalen en\n" +"installeren van pakketten. De meest gebruikte opdrachten zijn 'update\n" +"en 'install'.\n" +"\n" +"Opdrachten:\n" +" update - Haal de huidige versie van pakketlijsten op\n" +" upgrade - Voer een opwaardering uit\n" +" install - Installeer nieuwe pakketten (pakket is b.v. libc6, niet libc6." +"deb)\n" +" remove - Verwijder pakketten\n" +" autoremove - Verwijder automatisch alle ongebruikte pakketten\n" +" purge - Verwijder pakketten en hun configuratiebestanden\n" +" source - Haal bronarchieven op\n" +" build-dep - Installeer de pakketten vereist voor het bouwen van " +"bronpakketten\n" +" dist-upgrade - Opwaardeer de distributie, zie apt-get(8)\n" +" dselect-upgrade - Opwaardeer volgens dselect-selecties\n" +" clean - Verwijder opgehaalde archiefbestanden\n" +" autoclean - Verwijder verouderde opgehaalde archiefbestanden\n" +" check - Controleer onvoldane vereisten\n" +"\n" +"Opties:\n" +" -h Deze hulptekst\n" +" -q Logbare uitvoer - geen voortgangsindicator\n" +" -qq Geen uitvoer anders dan foutmeldingen\n" +" -d Alleen ophalen - archieven NIET installeren of uitpakken\n" +" -s Doe-niets. Doe alleen sorteersimulatie\n" +" -y Antwoord \"ja\" op alle vragen zonder ze te stellen\n" +" -f Probeer door te gaan als de integriteitstest faalt\n" +" -m Probeer door te gaan als archieven niet gevonden kunnen worden\n" +" -u Toon ook een lijst van bijgewerkte pakketten\n" +" -b Bouw het bronpakket nadat het is opgehaald\n" +" -V Toon uitgebreide versie nummers\n" +" -c=? Lees dit configuratiebestand\n" +" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" +"Zie de apt-get(8), sources.list(5) en apt.conf(5) handleidingen\n" +"voor meer informatie en opties.\n" +" Deze APT heeft Super Koe kracht.\n" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" msgstr "" -"Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op " -"'enter' te drukken." +"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " +"worden" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"De pakketlijsten of het statusbestand konden of niet ontleed, of niet " -"geopend worden." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"U kunt misschien 'apt-get update' uitvoeren om deze problemen te verhelpen" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "De lijst van bronnen kon niet gelezen worden." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Lege pakketcache" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Het pakketcachebestand is beschadigd" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Het pakketcachebestand heeft een niet-compatibele versie" - -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Het pakketcachebestand is beschadigd" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "maar het is niet geïnstalleerd" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "De pakketcache was aangemaakt voor een andere architectuur" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s is ingesteld voor handmatige installatie.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Vereisten" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s is ingesteld op automatische geïnstalleerd.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Voor-Vereisten" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s is reeds de nieuwste versie.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suggesties" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s is reeds de nieuwste versie.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Aanbevelingen" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s is ingesteld voor handmatige installatie.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Conflicteert met" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Openen van %s is mislukt" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Vervangt" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Verouderd" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Breekt" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Vult aan" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Kan de cd databank %s niet lezen" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "belangrijk" +#: 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 "" +"Om deze APT deze CD te laten herkennen kunt u best apt-cdrom gebruiken. 'apt-" +"get update' is niet in staat om nieuwe CDs toe te voegen" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "noodzakelijk" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Verkeerde CD" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standaard" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Kan de CD in %s niet loskoppelen, mogelijk wordt die nog steeds gebruikt." -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optioneel" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Schijf niet gevonden" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Bestand niet gevonden" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexbestand van type '%s' wordt niet ondersteund" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "stat is mislukt" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cache heeft een niet-compatibel versienummeringssysteem" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Instellen van de aanpassingstijd is mislukt" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Fout tijdens verwerken van %s (FindPkg)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Wauw, u heeft meer pakketten dan deze APT aan kan." +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Bezig met aanmelden" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Wauw, u heeft meer versies dan deze APT aan kan." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Kan de 'peer'-naam niet bepalen" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Wauw, u heeft het maximum aantal beschrijvingen dat deze APT aan kan " -"overschreden." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Kan de lokale naam niet bepalen" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Wauw, u heeft meer afhankelijkheden dan deze APT aan kan." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Onze verbinding is door de server geweigerd met bericht: %s" -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:225 #, 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" +msgid "USER failed, server said: %s" +msgstr "USER mislukt; bericht van server: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:232 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kon de status van de bronpakketlijst %s niet opvragen" +msgid "PASS failed, server said: %s" +msgstr "PASS mislukt; bericht van server: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Pakketlijsten worden ingelezen" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::" +"ProxyLogin is leeg." -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Voorziene bestanden worden verzameld" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:306 #, c-format -msgid "Unable to write to %s" -msgstr "Kan niet naar %s schrijven" +msgid "TYPE failed, server said: %s" +msgstr "TYPE mislukt; bericht van server: %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Verbinding is verlopen" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Verbinding is verbroken door de server" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Een reactie deed de buffer overlopen" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocolcorruptie" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Kon geen socket aanmaken" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Kon de datasocket niet verbinden, de verbinding verliep" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "herbenoeming is mislukt, %s (%s -> %s)." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislukt" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash-som komt niet overeen" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Kon de passieve socket niet verbinden." -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Grootte komt niet overeen" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo kon geen luistersocket verkrijgen" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ongeldige operatie %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Kon geen socket binden" -#: apt-pkg/acquire-item.cc:1581 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Kon niet op de socket niet luisteren" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Kon Release-bestand %s niet ontleden" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Kon de socketnaam niet bepalen" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Er zijn geen publieke sleutels beschikbaar voor de volgende sleutel-IDs:\n" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Kan PORT-commando niet verzenden" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Unknown address family %u (AF_*)" +msgstr "Onbekende adresfamilie %u (AF_*)" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:811 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)" +msgid "EPRT failed, server said: %s" +msgstr "EPRT is mislukt; bericht van server: %s" + +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Datasocket verbinding is verlopen" + +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Kan de verbinding niet aanvaarden" + +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Probleem bij het hashen van het bestand" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Er is een fout opgetreden bij de handtekeningcontrole. De pakketbron is niet " -"bijgewerkt en de oude indexbestanden zullen worden gebruikt. GPG-fout: %s: " -"%s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Kan bestand niet ophalen; bericht van server: %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datasocket verliep" + +#: methods/ftp.cc:935 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-fout: %s: %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Data transfer is mislukt, server zei: %s" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Zoekopdracht" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Aanroepen mislukt van " -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:76 #, 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 "" -"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u " -"dit pakket handmatig moet repareren (wegens missende architectuur)" +msgid "Connecting to %s (%s)" +msgstr "Er wordt verbinding gemaakt met %s (%s)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:87 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:94 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor " -"pakket %s." +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" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:100 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Verkopersblok %s bevat geen vingerafdruk" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kan de verbinding met %s:%s (%s) niet aangaan." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:108 #, c-format -msgid "List directory %spartial is missing." -msgstr "Lijstmap %spartial is afwezig." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Kon niet verbinden met %s:%s (%s), de verbinding verliep" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:126 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archiefmap %spartial is afwezig." +msgid "Could not connect to %s:%s (%s)." +msgstr "Kon niet verbinden met %s:%s (%s)." -#: apt-pkg/acquire.cc:99 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Unable to lock directory %s" -msgstr "Kan de map %s niet vergrendelen" +msgid "Connecting to %s" +msgstr "Er wordt verbinding gemaakt met %s" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Bestand %li van %li wordt opgehaald (nog %s te gaan)" +msgid "Could not resolve '%s'" +msgstr "Kon '%s' niet vinden" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:205 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Bestand %li van %li wordt opgehaald" +msgid "Temporary failure resolving '%s'" +msgstr "Tijdelijke fout bij het opzoeken van '%s'" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Ophalen van sommige indexbestanden is mislukt, deze zijn of genegeerd, of er " -"zijn oudere versies van gebruikt." +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "" -"Uw bronnenlijst (/etc/apt/sources.list) dient tenminste één bron-URI te " -"bevatten" +#: 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)" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:258 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" +msgid "Unable to connect to %s:%s:" +msgstr "Kan geen verbinding maken met %s %s:" -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Ongeldige record in het voorkeurenbestand %s, 'Package' koptekst ontbreekt" +"Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n" +"niet bepalen?!" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Pintype %s wordt niet begrepen" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Er is tenminste één ongeldige ondertekening gevonden." -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Kon 'gpgv' niet uitvoeren om ondertekening te verifiëren (is gpgv " +"geïnstalleerd?)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie " -"'man 5 apt.conf', onder APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Kon het bestand '%s' niet openen" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Onbekende fout bij het uitvoeren van gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "De volgende ondertekeningen waren ongeldig:\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Deze installatie-aanroep vereist het tijdelijk verwijderen van het " -"essentiële pakket %s, dit omwille van een Conflicts/Pre-Depends -lus. Dit is " -"vaak slecht, wilt u dit echt doen dan dient u de APT::Force-LoopBreak optie " -"te activeren." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Regel %u van de bronlijst %s is te lang." +"De volgende ondertekeningen konden niet geverifieerd worden omdat de " +"publieke sleutel niet beschikbaar is:\n" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD wordt afgekoppeld...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fout bij het schrijven naar het bestand" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Er wordt gewacht op de schijf...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" +"Fout bij het lezen van de server, andere kant heeft de verbinding gesloten" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD wordt aangekoppeld...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fout bij het lezen van de server" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificatie..." +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fout bij het schrijven naar bestand" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Opgeslagen label: %s \n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Selectie is mislukt" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Er wordt gescand voor indexbestanden...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Verbinding verliep" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Er zijn %zu pakket-indexen, %zu bron-indexen, %zu vertalingsindexen, en %zu " -"handtekeningen gevonden\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fout bij het schrijven naar het uitvoerbestand" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Kan geen Package-bestanden vinden. Is dit mogelijk geen Debian schijf, of de " -"verkeerde architectuur?" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Wachtend op de kopteksten" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Label '%s' gevonden\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Foute koptekstregel" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Dat is een ongeldige naam, gelieve opnieuw te proberen.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Er is door de HTTP server een ongeldige 'reply'-koptekst verstuurd" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -"De schijf heet:\n" -"'%s'\n" +"Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Pakketlijsten worden gekopieerd..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "" +"Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Nieuwe bronlijst wordt weggeschreven\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Bronlijst-ingangen voor de schijf zijn:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Onbekend datumformaat" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " -"gevonden worden." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Foute koptekstdata" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " -"veroorzaakt worden door vastgehouden pakketten." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Verbinding mislukt" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Interne fout" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Boom van vereisten wordt opgebouwd" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Opwaardering wordt doorgerekend... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidaat-versies" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Klaar" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generatie vereisten" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "De status informatie wordt gelezen" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Openen van StateFile %s is mislukt" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Wegschrijven van tijdelijke StateFile %s is mislukt" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Vereisten worden gecorrigeerd..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Kon pakketbestand %s niet ontleden (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " mislukt." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Kon pakketbestand %s niet ontleden (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Kan vereisten niet corrigeren" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release '%s' voor '%s' is niet gevonden" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versie '%s' voor '%s' is niet gevonden" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Klaar" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Kon taak '%s' niet vinden" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "U kunt 'apt-get -f install' uitvoeren om dit op te lossen." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken." -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Kan geen versies selecteren voor pakket '%s' omdat deze zuiver virtueel is" +msgid "[installed,upgradable to: %s]" +msgstr " [Geïnstalleerd]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Kan noch de geïnstalleerde, noch de kandidaat-versie van het pakket '%s' " -"selecteren omdat deze geen van beide heeft" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Geïnstalleerd]" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Kan de nieuwste versie van het pakket '%s' niet selecteren omdat deze zuiver " -"virtueel is" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Geïnstalleerd]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Geïnstalleerd]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Kan de kandidaat-versie van het pakket %s niet selecteren omdat deze geen " -"kandidaat heeft" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Kan de geïnstalleerde versie van het pakket %s niet selecteren omdat deze " -"niet geïnstalleerd is" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Kon Release-bestand %s niet ontleden" +msgid "but %s is installed" +msgstr "maar %s is geïnstalleerd" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Geen secties in Release-bestand %s" +msgid "but %s is to be installed" +msgstr "maar %s zal geïnstalleerd worden" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Geen Hash-vermelding in Release-bestand %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "maar het is niet installeerbaar" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Geen 'Valid-Until'-vermelding in Release-bestand %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "maar het is een virtueel pakket" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Geen 'Date'-vermelding in Release-bestand %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "maar het is niet geïnstalleerd" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "maar het zal niet geïnstalleerd worden" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Misvormde regel %lu in bronlijst %s ([optie] onbegrijpelijk)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " of" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Misvormde regel %lu in bronlijst %s ([optie] te kort)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "De volgende pakketten hebben niet-voldane vereisten:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Misvormde regel %lu in bronlijst %s ([%s] is geen toekenning)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Misvormde regel %lu in bronlijst %s ([%s] heeft geen sleutel)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "De volgende pakketten zullen VERWIJDERD worden:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Misvormde regel %lu in bronlijst %s ([%s] sleutel %s heeft geen waarde)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "De volgende pakketten zijn achtergehouden:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Misvormde regel %lu in bronlijst %s (URI)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "De volgende pakketten zullen opgewaardeerd worden:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Misvormde regel %lu in bronlijst %s (dist)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "De volgende pakketten zullen GEDEGRADEERD worden:" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Misvormde regel %lu in bronlijst %s (absolute dist)" +msgid "%s (due to %s) " +msgstr "%s (vanwege %s) " -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Misvormde regel %lu in bronlijst %s (dist parse)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"WAARSCHUWING: De volgende essentiële pakketten zullen verwijderd worden.\n" +"Dit dient NIET gedaan te worden tenzij u precies weet wat u doet!" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:707 #, c-format -msgid "Opening %s" -msgstr "%s wordt geopend" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Misvormde regel %u in bronlijst %s (type)" +msgid "%lu reinstalled, " +msgstr "%lu opnieuw geïnstalleerd, " -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:713 #, 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" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" +msgid "%lu downgraded, " +msgstr "%lu gedegradeerd, " -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-output.cc:715 #, c-format -msgid "Installing %s" -msgstr "%s wordt geïnstalleerd" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-output.cc:719 #, c-format -msgid "Configuring %s" -msgstr "%s wordt geconfigureerd" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s wordt verwijderd" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s wordt volledig verwijderd" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "De verdwijning van %s wordt opgemerkt" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Post-installatie-trigger %s wordt uitgevoerd" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "De opdracht 'update' aanvaard geen argumenten" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Directory '%s' missing" -msgstr "Map '%s' ontbreekt" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Kon het bestand '%s' niet openen" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:989 +#: apt-private/private-show.cc:156 #, c-format -msgid "Preparing %s" -msgstr "%s wordt voorbereid" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s wordt uitgepakt" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Configuratie van %s wordt voorbereid" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." + +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Interne fout, rangschikken is niet voltooid" + +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Merkwaardig... De groottes kwamen niet overeen, gelieve apt@packages.debian." +"org te mailen" + +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s is geïnstalleerd" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Verwijdering van %s wordt voorbereid" +msgid "Need to get %sB of archives.\n" +msgstr "Er moeten %sB aan archieven opgehaald worden.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s is verwijderd" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Door deze operatie zal er %sB extra schijfruimte gebruikt worden.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Volledige verwijdering van %s wordt voorbereid" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s is volledig verwijderd" +msgid "You don't have enough free space in %s." +msgstr "U heeft onvoldoende vrije schijfruimte op %s." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Er zijn problemen en -y was gebruikt zonder --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Kan niet naar %s schrijven" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, doe wat ik zeg!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"U staat op het punt om iets te doen wat mogelijk schadelijk is.\n" +"Als u wilt doorgaan, dient u de zin '%s' in te typen.\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Afbreken." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat het maximum aantal verslagen " -"(MaxReports) al is bereikt" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Wilt u doorgaan?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemen met vereisten - wordt niet geconfigureerd" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Ophalen van sommige bestanden is mislukt" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding volgt op een " -"eerdere mislukking." +"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" +"fix-missing proberen?" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " -"over een volle schijf." +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " -"over onvoldoende-geheugen." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Geen oplossing voor de missende pakketten gevonden." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " -"over een volle schijf." +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Installatie wordt afgebroken." -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout over " -"dpkg-I/O is." +"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] "" +"Het volgende pakket is van uw systeem verdwenen omdat\n" +"alle bestanden zijn overschreven door andere pakketten:" +msgstr[1] "" +"De volgende pakketten zijn van uw systeem verdwenen omdat\n" +"alle bestanden zijn overschreven door andere pakketten:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Kan de beheersmap (%s) niet vergrendelen. Is deze in gebruik door een ander " -"proces?" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Let op: Dit wordt automatische en bewust door dpkg gedaan." -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Kan de beheersmap (%s) niet vergrendelen. Heeft u beheerdersrechten?" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "We mogen geen dingen verwijderen, kan AutoRemover niet starten" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:499 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"dpkg werd onderbroken; voer handmatig '%s' uit om het probleem te verhelpen. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Niet vergrendeld" +"Hmm, het lijkt erop dat de AutoRemover iets vernietigd heeft, dit zou\n" +"niet mogen kunnen. Gelieve een bug-rapport voor apt in te sturen." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %liu %limin %lis" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "De volgende informatie helpt u mogelijk verder:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%liu %limin %lis" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:513 +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] "" +"Het volgende pakket is automatisch geïnstalleerd en is niet langer nodig:" +msgstr[1] "" +"De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " +"nodig:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:517 #, c-format -msgid "%lis" -msgstr "%lis" +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 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" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "Selectie %s niet gevonden" +#: apt-private/private-install.cc:519 +#, 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'." -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Er wordt geen vergrendeling gebruikt voor het alleen-lezen-" -"vergrendelingsbestand %s" +"U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te " +"lossen:" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Kon het vergrendelingsbestand '%s' niet openen" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +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)." -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" +#: apt-private/private-install.cc:638 +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 "" -"Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld" +"Sommige pakketten konden niet geïnstalleerd worden. Dit kan betekenen dat u\n" +"een onmogelijke situatie gevraagd hebt of dat u de 'unstable'-distributie \n" +"gebruikt en sommige benodigde pakketten nog vastzitten in 'incoming'." -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Kon vergrendeling %s niet verkrijgen" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Niet-werkende pakketten:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Voorgestelde pakketten:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Aanbevolen pakketten:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" +"%s wordt overgeslagen, het is al geïnstalleerd en opwaardering is niet " +"gevraagd.\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:829 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" +"%s wordt overgeslagen, het is niet geïnstalleerd en alleen opwaardering is " +"gevraagd.\n" -#: apt-pkg/contrib/fileutl.cc:421 +#: apt-private/private-install.cc:841 #, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" +"Herinstallatie van %s is niet mogelijk daar het niet opgehaald kan worden.\n" -#: apt-pkg/contrib/fileutl.cc:824 +#: apt-private/private-install.cc:846 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Subproces %s ontving een segmentatiefout." +msgid "%s is already the newest version.\n" +msgstr "%s is reeds de nieuwste versie.\n" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-install.cc:894 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "Subproces %s ontving signaal %u." +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Subproces %s gaf de foutcode %u terug" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Subproces %s sloot onverwacht af" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Probleem bij het afsluiten van het gzip-bestand %s" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Kon het bestand %s niet openen" +#: apt-private/private-main.cc:32 +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 "" +"OPMERKING: Dit is een simulatie!\n" +" Voor daadwerkelijke uitvoering heeft apt-get beheerdersrechten nodig.\n" +" Houd er ook rekening mee ook dat vergrendeling is uitgeschakeld en\n" +" vertrouw dus niet op de relevantie voor de werkelijke huidige situatie!" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Kon de bestandsindicator %d niet openen" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "" +"WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Aanmaken subproces-IPC is mislukt" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Authentificatiewaarschuwing is genegeerd.\n" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Uitvoeren van de compressor is mislukt " +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Sommige pakketten konden niet geauthentificeerd worden" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Wilt u deze pakketten installeren zonder verificatie?" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "schrijf, de laatste %lu konden niet weggeschreven worden" +msgid "Failed to parse %s. Edit again? " +msgstr "Hernoemen van %s naar %s is mislukt" -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Problem closing the file %s" -msgstr "Probleem bij het afsluiten van het bestand %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Probleem bij het hernoemen van '%s' naar '%s'" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Probleem bij het ontlinken van het bestand %s" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Geraakt " -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Probleem bij het synchroniseren van het bestand" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Ophalen:" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Genegeerd " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Fout " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fout!" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%sB opgehaald in %s (%sB/s)\n" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Klaar" +msgid " [Working]" +msgstr " [Bezig]" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: apt-private/acqprogress.cc:297 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" +"Medium wisselen: Gelieve de schijf met label\n" +" '%s'\n" +"in het station '%s' te plaatsen en op 'enter' te drukken\n" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. 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 "Geen spiegelbestand '%s' gevonden " + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Klaar" +msgid "Can not read mirror file '%s'" +msgstr "Geen spiegelbestand '%s' gevonden " -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan een leeg bestand niet mmappen" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Geen spiegelbestand '%s' gevonden " -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Kon de bestandsindicator %i niet dupliceren" +msgid "[Mirror: %s]" +msgstr "[Spiegelserver: %s]" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Kon van %lu bytes geen mmap maken" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Aanmaken van IPC-pijp naar subproces is mislukt" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Kan mmap niet sluiten" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Verbinding werd voortijdig afgebroken" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Foute standaardinstelling!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Druk 'enter' om door te gaan." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Kan mmap niet synchronizeren" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Wilt u alle eerder opgehaalde '.deb'-bestanden verwijderen?" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Kon van %lu bytes geen mmap maken" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Er zijn fouten opgetreden tijdens het uitpakken. Geïnstalleerde pakketten" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Afkorten van bestand is mislukt" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "worden geconfigureerd. Hierbij kunnen fouten meerdere malen optreden" -#: 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)" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Onvoldoende ruimte voor Dynamische MMap. Gelieve de grootte van APT::Cache-" -"Start te verhogen. Huidige waarde: %lu. (man 5 apt.conf)" +"of veroorzaakt worden door niet-voldane vereisten. Dit is Ok, enkel de fouten" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: dselect/install:105 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Kan het formaat van de MMap niet vergroten omdat de grens van %lu bytes al " -"is bereikt" +"boven dit bericht zijn belangrijk. U dient ze op te lossen en de installatie " +"opnieuw uit te voeren" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Kan het formaat van de MMap niet vergroten omdat het automatisch vergroten " -"door de gebruiker is uitgeschakeld." +#: dselect/update:30 +msgid "Merging available information" +msgstr "De beschikbare informatie wordt samengevoegd" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Kan de status van het aanhechtpunt %s niet opvragen" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode werd aangeroepen op een nog gelinkte knoop" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "stat op de CD-ROM is mislukt" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Lokaliseren van het hash-element is mislukt!" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Onbekende type-afkorting '%c'" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Toewijzen van de omleiding is mislukt" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Configuratiebestand %s wordt geopend" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Interne fout in AddDiversion" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaxfout %s:%u: Blok start zonder naam." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Er wordt gepoogd om de omleiding %s->%s en %s/%s te overschrijven" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering" +msgid "Double add of diversion %s -> %s" +msgstr "Dubbele toevoeging van de omleiding %s->%s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaxfout %s:%u: Extra rommel na waarde" +msgid "Duplicate conf file %s/%s" +msgstr "Dubbel configuratiebestand %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Syntaxfout %s:%u: Richtlijnen kunnen enkel op het hoogste niveau gegeven " -"worden" +msgid "The path %s is too long" +msgstr "Het pad %s is te lang" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen" +msgid "Unpacking %s more than once" +msgstr "%s wordt meer dan eens uitgepakt" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd" +msgid "The directory %s is diverted" +msgstr "De map %s is al omgeleid" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Het omleidingspad is te lang" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Syntaxfout %s:%u: De richtlijn 'clear' vereist een optieboom als argument" +msgid "Failed to stat %s" +msgstr "stat op %s is mislukt" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaxfout %s:%u: Extra rommel aan het einde van het bestand" +msgid "Failed to rename %s to %s" +msgstr "Hernoemen van %s naar %s is mislukt" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "Geen sleutelring geïnstalleerd in %s." +msgid "The directory %s is being replaced by a non-directory" +msgstr "De map %s wordt vervangen door een niet-map" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Vinden van de knoop in de hash-emmer is mislukt" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Het pad is te lang" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Commandoregel-optie '%c' [van %s] is onbekend." +msgid "Overwrite package match with no version for %s" +msgstr "Pakket-overeenkomst wordt overschreven met 'no version' voor %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Commandoregel-optie %s wordt niet begrepen" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Het bestand %s/%s overschrijft het bestand van pakket %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Commandoregel-optie %s is niet booleaans" +msgid "Unable to stat %s" +msgstr "Kan de status van %s niet opvragen" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Optie %s vereist een argument." +msgid "Failed to write file %s" +msgstr "Wegschrijven van bestand %s is mislukt" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Optie %s: De specificatie van het configuratie-item dient een =<waarde> te " -"bevatten." +msgid "Failed to close file %s" +msgstr "Sluiten van bestand %s is mislukt" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Optie %s vereist een integer getal als argument, niet '%s'" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dit is geen geldig DEB-archief, het onderdeel '%s' mankeert" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Optie '%s' is te lang" +msgid "Internal error, could not locate member %s" +msgstr "Interne fout, kon onderdeel %s niet vinden" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Niet-ontleedbaar 'control'-bestand" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ongeldige archiefondertekening" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fout bij het lezen van de koptekst van het archiefonderdeel" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Waarde %s wordt niet begrepen, probeer 'true' of 'false'." +msgid "Invalid archive member header %s" +msgstr "Ongeldige koptekst voor archiefonderdeel: %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ongeldige koptekst in archiefonderdeel" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archief is te kort" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Lezen van de archiefkopteksten is mislukt" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Aanmaken pijp is mislukt" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Uitvoeren van gzip is mislukt " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Beschadigd archief" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar controlesom klopt niet, het pakket is beschadigd" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Ongeldige operatie %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3605,7 +3609,7 @@ msgstr "Lezen tijdens het berekenen van de MD5 is mislukt" msgid "Problem unlinking %s" msgstr "Probleem bij het ontlinken van %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3659,6 +3663,10 @@ msgstr "" " -c=? Lees dit configuratiebestand\n" " -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s is geen geldig DEB-pakket." diff --git a/po/nn.po b/po/nn.po index ba63e8836..95579da0d 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,3152 +9,3157 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll <korsvoll@skulelinux.no>\n" "Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n" -"Language: \n" +"Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: KBabel 1.9.1\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indeksfiltypen «%s» er ikkje støtta" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\n" +msgid "Unable to read %s" +msgstr "Klarte ikkje lesa %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Tal på pakkenamn: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Klarte ikkje byta til %s" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Tal på pakkenamn: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Klarte ikkje få status på %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Vanlege pakkar: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Reine virtuelle pakkar: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Enkle virtuelle pakkar: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Pakkesystemet «%s» er ikkje støtta" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Samansette virtuelle pakkar: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Manglar: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Skreiv %i postar.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Tal på einskildversjonar: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Skreiv %i postar med %i manglande filer.\n" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Tal på einskildversjonar: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Skreiv %i postar med %i filer som ikkje passa\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Tal på krav: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Tal på ver./fil-forhold: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "Tal på ver./fil-forhold: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Feil MD5-sum" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Tal på tilbyr-forhold: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Finn ikkje metodedrivaren %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Tal på strengar med jokerteikn: " +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Storleik på kravs- og versjonsrom: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Metoden %s starta ikkje rett" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Slingringsmon: " +#: apt-pkg/acquire-worker.cc:455 +#, fuzzy, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Skifte av medum: Set inn plata merkt\n" +" «%s»\n" +"i stasjonen «%s» og trykk Enter.\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Brukt plass i alt: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Klarte ikkje tolka eller opna pakkelista eller tilstandsfila." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakkefila %s er ute av takt." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Du vil kanskje prøva å retta på desse problema ved å køyra «apt-get update»." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Fann ingen pakkar" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Kjeldelista kan ikkje lesast." -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Du må oppgi nøyaktig eitt mnster" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Tomt pakkelager" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Pakkelagerfila er øydelagd" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Versjonen til pakkelagerfila er ikkje kompatibel" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakkelagerfila er øydelagd" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Finn ikkje pakken %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "APT støttar ikkje versjonssystemet «%s»" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakkefiler:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Pakkelageret er bygd for ein annan arkitektur" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Mellomlageret er ute av takt, kan ikkje x-referera ei pakkefil" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Krav" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Spikra pakkar:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Forkrav" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ikkje funne)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Forslag" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installert: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Tilrådingar" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Konflikt" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Byter ut" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakke spikra til: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Foreldar" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versjonstabell:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s %s kompilert på %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Bruk: apt-cache [val] kommando\n" -" apt-cache [val] add fil1 [fil2 ...]\n" -" apt-cache [val] showpkg pakke1 [pakke2 ...]\n" -" apt-cache [val] showsrc pakke1 [pakke2 ...]\n" -"\n" -"apt-cache er eit lågnivåverktøy som vert brukt til å handtera\n" -"binærmellomlageret til APT, og til å henta informasjon frå det.\n" -"\n" -"Kommandoar:\n" -" add - Legg ei fil til i kjeldelageret.\n" -" gencaches - Bygg opp lagera for både pakkane og kjeldekoden.\n" -" showpkg - Vis overordna informasjon om ein enkelt pakke.\n" -" showsrc - Vis data om kjeldekoden.\n" -" stats - Vis ein enkel statistikk.\n" -" dump - Vis fila med lista over tilgjengelege pakkar i tett form.\n" -" dumpavail - Send heile lista over tilgjengelege pakkar til stdout.\n" -" unmet - Vis krav som ikkje er oppfylte.\n" -" search - Søk gjennom pakkelista etter eit regulært uttrykk.\n" -" show - Vis ei oversikt over pakken.\n" -" depends - Vis rå informasjon om krava til ein pakke.\n" -" rdepends - Vis baklengs kravinformasjon for ein pakke\n" -" pkgnames - Vis ei liste over alle pakkenamn.\n" -" dotty - Lag pakkegrafar for GraphViz.\n" -" xvcg - Lag pakkegrafar for xvcg\n" -" policy - Vis regelinnstillingar.\n" -"\n" -"Val:\n" -" -h Vis denne hjelpeteksten.\n" -" -p=? Pakkelageret.\n" -" -s=? Kjeldekodelageret.\n" -" -q Ikkje vis framdriftsmålaren.\n" -" -i Vis berre viktige krav for unmet-kommandoen.\n" -" -c=? Les denne oppsettsfila.\n" -" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" -"Du finn meir informasjon på manualsidene apt-cache(8) og apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "viktig" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "påkravd" -#: cmdline/apt-cdrom.cc:91 -#, fuzzy -msgid "Please insert a Disc in the drive and press enter" -msgstr "" -"Skifte av medum: Set inn plata merkt\n" -" «%s»\n" -"i stasjonen «%s» og trykk Enter.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "vanleg" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Klarte ikkje endra namnet på %s til %s" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "valfri" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "tillegg" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Indeksfiltypen «%s» er ikkje støtta" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Ikkje parvise argument" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex-kompileringsfeil - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Bruk: apt-config [val] kommando\n" -"\n" -"apt-config er eit enkelt verktøy for å lesa oppsettsfila til APT.\n" -"\n" -"Kommandoar:\n" -" shell - Skalmodus\n" -" dump - Vis oppsettet\n" -"\n" -"Val:\n" -" -h Vis denne hjelpeteksten.\n" -" -c=? Les denne oppsettsfila.\n" -" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Fann ikkje pakken %s" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Feil ved behandling av %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Fann ikkje pakken %s" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Jøss, du har overgått talet på pakkenamn som APT kan handtera." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Fann ikkje pakken %s" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera." -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Klarte ikkje få status på kjeldepakkelista %s" +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera." -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Jøss, du har overgått talet på krav som APT kan handtera." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Fann ikkje pakken %s" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Fann ikkje pakken %s %s ved behandling av filkrav" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "men %s skal installerast" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Klarte ikkje få status på kjeldepakkelista %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "men %s skal installerast" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Les pakkelister" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Samlar inn filtilbod" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -#, fuzzy -msgid "Internal error, problem resolver broke stuff" -msgstr "Intern feil. AllUpgrade øydelagde noko" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Klarte ikkje skriva til %s" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Klarte ikkje låsa nedlastingskatalogen" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IU-feil ved lagring av kjeldelager" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Du må velja minst éin pakke som kjeldekoden skal hentast for" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Finn ingen kjeldepakke for %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:843 -#, fuzzy, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, fuzzy, c-format -msgid "Couldn't determine free space in %s" -msgstr "Du har ikkje nok ledig plass i %s" - -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har ikkje nok ledig plass i %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "endring av namn mislukkast, %s (%s -> %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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n" +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "Feil MD5-sum" -#. 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Må henta %sB med kjeldekodearkiv.\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Feil storleik" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Ugyldig operasjon %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "Hent kjeldekode %s\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Klarte ikkje henta nokre av arkiva." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Nedlastinga er ferdig i nedlastingsmodus" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Utpakkingskommandoen «%s» mislukkast.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Byggjekommandoen «%s» mislukkast.\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barneprosessen mislukkast" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv " +"(fordi arkitekturen manglar)." -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Du må velja minst ein pakke som byggjekrava skal sjekkast for" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Pakkeindeksfilene er øydelagde. Feltet «Filename:» manglar for pakken %s." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Klarte ikkje henta byggjekrav for %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Listekatalogen %spartial manglar." + +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Arkivkatalogen %spartial manglar." + +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Klarte ikkje låsa listekatalogen" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s har ingen byggjekrav.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire.cc:904 #, 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" +msgid "Retrieving file %li of %li" +msgstr "Les filliste" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Klarte ikkje henta %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy 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" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle " +"filer er brukte i staden." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Du må leggja nokre kjelde-URI-ar i fila sources.list." + +#: apt-pkg/policy.cc:83 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Klarte ikkje oppfylla kravet %s for %s: Den installerte pakken %s er for ny" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud" + +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Skjønar ikkje spikringstypen %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ingen prioritet (eller null) oppgitt for spiker" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" 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:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Klarte ikkje opna fila %s" + +#: apt-pkg/packagemanager.cc:583 +#, 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" +"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 "" +"Denne installasjonen vil verta nøydd til å mellombels fjerna den nødvendige " +"pakken %s på grunn av ei konflikt/forkrav-løkkje. Dette er ofte uheldig, men " +"om du verkeleg vil gjera det, kan du bruka innstillinga «APT::Force-" +"LoopBreak»." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Linja %u i kjeldelista %s er for lang." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterer CD-ROM ...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." +msgid "Using CD-ROM mount point %s\n" +msgstr "Brukar monteringspunktet %s for CD-ROM\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Klarte ikkje behandla byggjekrava" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Ventar på disk ...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Koplar til %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterer CD-ROM ...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Støtta modular:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifiserer ... " -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Lagra etikett: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Leitar etter indeksfiler på disken ...\n" + +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format 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 "" -"Bruk: apt-get [val] kommando\n" -" apt-get [val] install|remove pakke1 [pakke2 ...]\n" -" apt-get [val] source pakke1 [pakke2 ...]\n" -"\n" -"apt-get er eit enkelt grensesnitt til bruk frå kommandolinja for å lasta\n" -"ned og installera pakkar. Dei vanlegaste kommandoane er «update» og\n" -"«install».\n" -"\n" -"Kommandoar:\n" -" update - Hent nye pakkelister.\n" -" upgrade - Utfør ei oppgradering.\n" -" install - Installer nye pakkar (bruk pakkenamn, ikkje filnamn (foo." -"deb)).\n" -" remove - Fjern pakkar.\n" -" source - Last ned kjeldekode frå arkiva.\n" -" build-dep - Oppfyll byggjekrava for kjeldepakkar.\n" -" dist-upgrade - Oppgrader distribusjonen, les apt-get(8).\n" -" dselect-upgrade - Følg råda frå «dselect».\n" -" clean - Slett nedlasta arkivfiler.\n" -" autoclean - Slett gamle, nedlasta arkivfiler.\n" -" check - Stadfest at det ikkje finst krav som ikkje er oppfylte.\n" -"\n" -"Val:\n" -" -h Vis denne hjelpeteksten.\n" -" -q Ikkje vis framdriftsmåtar, for bruk i loggar.\n" -" -qq Inga tilbakemelding - bortsett frå feilmeldingar.\n" -" -d Berre nedlasting - IKKJE installer eller pakk ut arkivfilene.\n" -" -s Skuggespel, berre simulering av handlingane.\n" -" -y Svar ja på alle spørsmål utan å stoppa.\n" -" -f Prøv å halda fram sjølv om integritetskontrollen mislukkast.\n" -" -m Prøv å halda fram sjølv om nokre pakkar ikkje vert funne.\n" -" -u Ta med oppgraderte pakkar i lista som vert vist.\n" -" -b Bygg pakken etter at kjeldekoden er henta.\n" -" -V Vis fullstendige versjonsnummer.\n" -" -c=? Les denne innstillingsfila.\n" -" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" -"Du finn meir informasjon og fleire kommandolinjeval på manualsidene\n" -"til apt-get(8), sources.list(5) og apt.conf(5).\n" -" APT har superku-krefter.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Du må velja minst éin pakke som kjeldekoden skal hentast for" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "men er ikkje installert" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "men %s skal installerast" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "men %s skal installerast" - -#: cmdline/apt-mark.cc:241 +#: apt-pkg/cdrom.cc:771 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "Den nyaste versjonen av %s er installert frå før.\n" +msgid "Found label '%s'\n" +msgstr "Lagra etikett: %s \n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "Den nyaste versjonen av %s er installert frå før.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Det er ikkje eit gyldig namn, prøv igjen.\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Venta på %s, men den fanst ikkje" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Disken vert kalla: \n" +"«%s»\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "men %s skal installerast" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierer pakkelister ..." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Klarte ikkje opna %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriv ny kjeldeliste\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Kjeldelisteoppføringar for denne disken er:\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" +"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." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar " +"som er haldne tilbake." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Klarte ikkje lesa CD-ROM-databasen %s" - -#: 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" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -"Bruk «apt-cdrom» for å gjera denne CD-plata tilgjengeleg for APT. Du kan " -"ikkje bruka «apt-get update» til å leggja til nye CD-plater." - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Feil CD-plate" +"Klarte ikkje retta opp problema. Nokre øydelagde pakkar er haldne tilbake." -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Klarte ikkje montera CD-plata i %s. Det kan henda plata framleis er i bruk." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Byggjer kravtre" -#: methods/cdrom.cc:254 -#, fuzzy -msgid "Disk not found." -msgstr "Fann ikkje fila" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidatversjonar" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fann ikkje fila" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Genererer kravforhold" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Klarte ikkje få status" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "Flettar informasjon om tilgjengelege pakkar" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Klarte ikkje setja endringstidspunkt" +#: apt-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "Klarte ikkje opna %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Klarte ikkje skriva fila %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Loggar inn" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Klarte ikkje avgjera namnet på motparten" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Klarte ikkje tolka pakkefila %s (2)" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Klarte ikkje avgjera det lokale namnet" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Fann ikkje utgåva «%s» av «%s»" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Tenaren nekta oss å kopla til, og sa: %s" +msgid "Version '%s' for '%s' was not found" +msgstr "Fann ikkje versjonen «%s» av «%s»" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER mislukkast, tenaren sa: %s" +msgid "Unable to locate package %s" +msgstr "Finn ikkje pakken %s" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Fann ikkje pakken %s" + +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Fann ikkje pakken %s" + +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Fann ikkje pakken %s" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS mislukkast, tenaren sa: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:252 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet " -"«Acquire::ftp::ProxyLogin» er tomt." -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandoen «%s» i innlogginsskriptet mislukkast, tenaren sa: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE mislukkast, tenaren sa: %s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Tidsavbrot på samband" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Tenaren lukka sambandet" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Lesefeil" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Merk, vel %s i staden for %s\n" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Eit svar flaumde over bufferen." +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokolløydeleggjing" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ugyldig linje i avleiingsfila: %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Skrivefeil" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Klarte ikkje oppretta sokkel" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Mislukkast" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Misforma linje %lu i kjeldelista %s (dist)" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Klarte ikkje kopla til passiv sokkel." +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Klarte ikkje binda til sokkel" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Klarte ikkje lytta til sokkel" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Misforma linje %lu i kjeldelista %s (URI)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Klarte ikkje avgjera sokkelnamnet" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Misforma linje %lu i kjeldelista %s (dist)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Klarte ikkje senda PORT-kommandoen" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ukjend adressefamilie %u (AF_*)" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT mislukkast, tenaren sa: %s" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Tidsavbrot på tilkopling til datasokkel" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Opnar %s" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Klarte ikkje godta tilkoplinga" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Misforma linje %u i kjeldelista %s (type)" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem ved oppretting av nøkkel for fil" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Klarte ikkje henta fila, tenaren sa «%s»" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typen «%s» er ukjend i linja %u i kjeldelista %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Tidsavbrot på datasokkelen" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " Installert: " -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataoverføringa mislukkast, tenaren sa «%s»" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, fuzzy, c-format +msgid "Configuring %s" +msgstr "Koplar til %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Spørjing" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, fuzzy, c-format +msgid "Removing %s" +msgstr "Opnar %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Klarte ikkje starta " +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Klarte ikkje fjerna %s" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Koplar til %s (%s)" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Running post-installation trigger %s" +msgstr "" -#: 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)" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "Listekatalogen %spartial manglar." -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)." +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Klarte ikkje opna fila %s" -#: 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" +#: apt-pkg/deb/dpkgpm.cc:989 +#, fuzzy, c-format +msgid "Preparing %s" +msgstr "Opnar %s" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Klarte ikkje kopla til %s:%s (%s)." +#: apt-pkg/deb/dpkgpm.cc:990 +#, fuzzy, c-format +msgid "Unpacking %s" +msgstr "Opnar %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Koplar til %s" +#: apt-pkg/deb/dpkgpm.cc:995 +#, fuzzy, c-format +msgid "Preparing to configure %s" +msgstr "Opnar oppsettsfila %s" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Klarte ikkje slå opp «%s»" +#: apt-pkg/deb/dpkgpm.cc:997 +#, fuzzy, c-format +msgid "Installed %s" +msgstr " Installert: " -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Mellombels feil ved oppslag av «%s»" +msgid "Preparing for removal of %s" +msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1004 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)" +msgid "Removed %s" +msgstr "Tilrådingar" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1009 #, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)" +msgid "Preparing to completely remove %s" +msgstr "Opnar oppsettsfila %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1010 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Klarte ikkje kopla til %s %s:" +msgid "Completely removed %s" +msgstr "Klarte ikkje fjerna %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Klarte ikkje skriva til %s" + +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Waited for %s but it wasn't there" +msgstr "Venta på %s, men den fanst ikkje" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -#, fuzzy -msgid "The following signatures were invalid:\n" -msgstr "Dei følgjande tilleggspakkane vil verta installerte:" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Feil ved skriving til fila" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Feil ved lesing frå tenaren" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Feil ved skriving til fil" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Utvalet mislukkast" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Tidsavbrot på sambandet" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Feil ved skriving til utfil" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Ventar på hovud" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Øydelagd hovudlinje" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Klarte ikkje låsa listekatalogen" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP-tenaren sende eit ugyldig svarhovud" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP-tenaren sende eit ugyldig «Content-Length»-hovud" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP-tenaren sende eit ugyldig «Content-Range»-hovud" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Denne HTTP-tenaren har øydelagd støtte for område" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ukjend datoformat" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Øydelagde hovuddata" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Sambandet mislukkast" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Fann ikkje utvalet %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Intern feil" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Brukar ikkje låsing for den skrivebeskytta låsefila %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Reknar ut oppgradering ... " +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Klarte ikkje opna låsefila %s" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Intern feil. AllUpgrade øydelagde noko" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Ferdig" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Klarte ikkje låsa %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Rettar på krav ..." +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislukkast." +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Klarte ikkje retta på krav" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Klarte ikkje minimera oppgraderingsmengda" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Underprosessen %s returnerte ein feilkode (%u)" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Ferdig" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprosessen %s avslutta uventa" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "" -"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»." +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Skrivefeil" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»." +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem ved låsing av fila" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Klarte ikkje opna fila %s" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installert]" +msgid "Could not open file descriptor %d" +msgstr "Klarte ikkje opna røyr for %s" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Klarte ikkje oppretta underprosessen IPC" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Klarte ikkje køyra komprimeringa " -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Lesefeil" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "lese, har framleis %lu att å lesa, men ingen att" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problem ved låsing av fila" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Følgjande pakkar har krav som ikkje er oppfylte:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem ved synkronisering av fila" -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "men %s er installert" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem ved oppheving av lenkje til fila" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem ved synkronisering av fila" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is to be installed" -msgstr "men %s skal installerast" +msgid "%c%s... Error!" +msgstr "%c%s ... Feil" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "men lèt seg ikkje installera" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s ... Ferdig" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "men er ein virtuell pakke" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "men er ikkje installert" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Ferdig" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "men skal ikkje installerast" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan ikkje utføra mmap på ei tom fil" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " eller" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Klarte ikkje opna røyr for %s" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Dei følgjande NYE pakkane vil verta installerte:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Klarte ikkje laga mmap av %lu byte" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Dei følgjande pakkane vil verta FJERNA:" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Klarte ikkje opna %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Dei følgjande pakkane er haldne tilbake:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Klarte ikkje starta " -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Dei følgjande pakkane vil verta oppgraderte:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Klarte ikkje laga mmap av %lu byte" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Klarte ikkje skriva fila %s" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:" +#: 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 "" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (fordi %s) " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/private-output.cc:663 -#, fuzzy +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"ÅTVARING: Dei følgjande nødvendige pakkane vil verta fjerna.\n" -"Dette bør IKKJE gjerast utan at du er fullstendig klar over kva du gjer!" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu oppgraderte, %lu nyleg installerte, " +msgid "Unable to stat the mount point %s" +msgstr "Klarte ikkje få status til monteringspunktet %s" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu installerte på nytt, " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Klarte ikkje få status til CD-ROM" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu downgraded, " -msgstr "%lu nedgraderte, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ukjend typeforkorting: «%c»" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n" +msgid "Opening configuration file %s" +msgstr "Opnar oppsettsfila %s" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ikkje fullstendig installerte eller fjerna.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[J/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[j/N]" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "J" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksfeil %s:%u: Blokka startar utan namn." -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Regex compilation error - %s" -msgstr "Regex-kompileringsfeil - %s" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksfeil %s:%u: Misforma tagg" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Oppdateringskommandoen tek ingen argument" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksfeil %s:%u: For mange nøsta inkluderte filer" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksfeil %s:%u: Inkludert herifrå" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikkje støtta" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Nokre pakkar må fjernast, men fjerning er slått av." +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået" -#: apt-private/private-install.cc:109 -#, fuzzy -msgid "Internal error, Ordering didn't finish" -msgstr "Intern feil ved tilleggjing av avleiing" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Avbryt installasjon." -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Må henta %sB/%sB med arkiv.\n" +msgid "Command line option '%c' [from %s] is not known." +msgstr "Kjenner ikkje kommandolinjevalet «%c» (frå %s)." -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Må henta %sB med arkiv.\n" +msgid "Command line option %s is not understood" +msgstr "Skjønar ikkje kommandolinjevalet %s" -#. 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 -#: apt-private/private-install.cc:166 -#, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Kommandolinjevalet %s er ikkje boolsk" -#. 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 -#: apt-private/private-install.cc:171 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Valet %s krev eit argument." -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Du har ikkje nok ledig plass i %s." +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =<verdi>." -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Det oppstod problem, og «-y» vart brukt utan «--force-yes»" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Valet %s må ha eit heiltalsargument, ikkje «%s»" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Valet «%s» er for langt" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Ja, gjer som eg seier!" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Skjønar ikkje %s. Prøv «true» eller «false»." -#: apt-private/private-install.cc:221 -#, fuzzy, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Du er i ferd med å utføra ei handling som kan vera skadeleg.\n" -"For å halda fram, må du skriva nøyaktig «%s».\n" -" ?] " +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Ugyldig operasjon %s" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Avbryt." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\n" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Vil du halda fram?" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Tal på pakkenamn: " -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Klarte ikkje henta nokre av filene" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Tal på pakkenamn: " -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Klarte ikkje henta nokre av arkiva. Du kan prøva med «apt-get update» eller " -"«--fix-missing»." +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Vanlege pakkar: " -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "«--fix-missing» og byte av medium er ikkje støtta for tida" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Reine virtuelle pakkar: " -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Klarte ikkje retta opp manglande pakkar." +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Enkle virtuelle pakkar: " -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Avbryt installasjon." +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Samansette virtuelle pakkar: " -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Manglar: " -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Tal på einskildversjonar: " -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Tal på einskildversjonar: " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Tal på krav: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Følgjande informasjon kan hjelpa med å løysa situasjonen:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Tal på ver./fil-forhold: " -#: apt-private/private-install.cc:505 +#: cmdline/apt-cache.cc:334 #, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern feil. AllUpgrade øydelagde noko" +msgid "Total Desc/File relations: " +msgstr "Tal på ver./fil-forhold: " -#: apt-private/private-install.cc:512 -#, fuzzy -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] "Dei følgjande NYE pakkane vil verta installerte:" -msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Tal på tilbyr-forhold: " -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "Dei følgjande NYE pakkane vil verta installerte:" -msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Tal på strengar med jokerteikn: " -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Storleik på kravs- og versjonsrom: " -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Slingringsmon: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja " -"ei løysing)." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Brukt plass i alt: " -#: apt-private/private-install.cc:628 -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 "" -"Nokre av pakkane kunne ikkje installerast. Dette kan koma av at du har\n" -"valt ein umogleg situasjon. Dersom du brukar den ustabile utgåva av\n" -"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-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Pakkefila %s er ute av takt." -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Øydelagde pakkar" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Fann ingen pakkar" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Dei følgjande tilleggspakkane vil verta installerte:" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Du må oppgi nøyaktig eitt mnster" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Føreslåtte pakkar:" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Tilrådde pakkar" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakkefiler:" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Hoppar over %s, for den er installert frå før og ikkje sett til " -"oppgradering.\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Mellomlageret er ute av takt, kan ikkje x-referera ei pakkefil" -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Hoppar over %s, for den er installert frå før og ikkje sett til " -"oppgradering.\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Spikra pakkar:" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s kan ikkje installerast på nytt, for pakken kan ikkje lastast ned.\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ikkje funne)" -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "Den nyaste versjonen av %s er installert frå før.\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installert: " -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Vald versjon %s (%s) for %s\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Vald versjon %s (%s) for %s\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ingen)" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pakke spikra til: " + +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versjonstabell:" -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s for %s %s kompilert på %s %s\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 +#, fuzzy 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!" +"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 "" +"Bruk: apt-cache [val] kommando\n" +" apt-cache [val] add fil1 [fil2 ...]\n" +" apt-cache [val] showpkg pakke1 [pakke2 ...]\n" +" apt-cache [val] showsrc pakke1 [pakke2 ...]\n" +"\n" +"apt-cache er eit lågnivåverktøy som vert brukt til å handtera\n" +"binærmellomlageret til APT, og til å henta informasjon frå det.\n" +"\n" +"Kommandoar:\n" +" add - Legg ei fil til i kjeldelageret.\n" +" gencaches - Bygg opp lagera for både pakkane og kjeldekoden.\n" +" showpkg - Vis overordna informasjon om ein enkelt pakke.\n" +" showsrc - Vis data om kjeldekoden.\n" +" stats - Vis ein enkel statistikk.\n" +" dump - Vis fila med lista over tilgjengelege pakkar i tett form.\n" +" dumpavail - Send heile lista over tilgjengelege pakkar til stdout.\n" +" unmet - Vis krav som ikkje er oppfylte.\n" +" search - Søk gjennom pakkelista etter eit regulært uttrykk.\n" +" show - Vis ei oversikt over pakken.\n" +" depends - Vis rå informasjon om krava til ein pakke.\n" +" rdepends - Vis baklengs kravinformasjon for ein pakke\n" +" pkgnames - Vis ei liste over alle pakkenamn.\n" +" dotty - Lag pakkegrafar for GraphViz.\n" +" xvcg - Lag pakkegrafar for xvcg\n" +" policy - Vis regelinnstillingar.\n" +"\n" +"Val:\n" +" -h Vis denne hjelpeteksten.\n" +" -p=? Pakkelageret.\n" +" -s=? Kjeldekodelageret.\n" +" -q Ikkje vis framdriftsmålaren.\n" +" -i Vis berre viktige krav for unmet-kommandoen.\n" +" -c=? Les denne oppsettsfila.\n" +" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" +"Du finn meir informasjon på manualsidene apt-cache(8) og apt.conf(5).\n" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane." - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nokre pakkar kunne ikkje bli autentisert" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installer desse pakkane utan verifikasjon?" - -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Klarte ikkje henta %s %s\n" +#: cmdline/apt-cdrom.cc:91 +#, fuzzy +msgid "Please insert a Disc in the drive and press enter" +msgstr "" +"Skifte av medum: Set inn plata merkt\n" +" «%s»\n" +"i stasjonen «%s» og trykk Enter.\n" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " +msgid "Failed to mount '%s' to '%s'" msgstr "Klarte ikkje endra namnet på %s til %s" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Treff " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Hent:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Feil " - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Henta %sB på %s (%sB/s)\n" - -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Arbeider]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Ikkje parvise argument" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Skifte av medum: Set inn plata merkt\n" -" «%s»\n" -"i stasjonen «%s» og trykk Enter.\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Klarte ikkje lesa %s" +"Bruk: apt-config [val] kommando\n" +"\n" +"apt-config er eit enkelt verktøy for å lesa oppsettsfila til APT.\n" +"\n" +"Kommandoar:\n" +" shell - Skalmodus\n" +" dump - Vis oppsettet\n" +"\n" +"Val:\n" +" -h Vis denne hjelpeteksten.\n" +" -c=? Les denne oppsettsfila.\n" +" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Klarte ikkje byta til %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Fann ikkje pakken %s" -#. 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 "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Fann ikkje pakken %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Klarte ikkje opna fila %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Fann ikkje pakken %s" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Klarte ikkje opna fila %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Klarte ikkje få status på kjeldepakkelista %s" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:423 #, c-format -msgid "[Mirror: %s]" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Klarte ikkje oppretta IPC-røyr til underprosessen" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Sambandet vart uventa stengd" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Fann ikkje pakken %s" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Dårleg standardinnstilling" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "men %s skal installerast" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Trykk Enter for å halda fram." +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "men %s skal installerast" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no" - -#: dselect/install:103 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 #, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "sette opp. Dette kan føra til følgjefeil eller feil på grunn av" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "krav som ikkje er oppfylte. Det gjer ikkje noko, berre feila ovanfor" - -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "er viktige. Rett opp dei feila og [i]nstaller på nytt." - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Flettar informasjon om tilgjengelege pakkar" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode vart kalla på ein node som framleis er lenkja" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Fann ikkje nøkkelelementet." +msgid "Internal error, problem resolver broke stuff" +msgstr "Intern feil. AllUpgrade øydelagde noko" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Klarte ikkje tildela avleiing" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Klarte ikkje låsa nedlastingskatalogen" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Intern feil i AddDiversion" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Du må velja minst éin pakke som kjeldekoden skal hentast for" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Prøver å skriva over ei avleiing, %s -> %s og %s/%s" +msgid "Unable to find a source package for %s" +msgstr "Finn ingen kjeldepakke for %s" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobbel tilleggjing av avleiing %s -> %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dobbel oppsettsfil %s/%s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Stigen %s er for lang" +#: cmdline/apt-get.cc:843 +#, fuzzy, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Pakkar ut %s meir enn éin gong" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, fuzzy, c-format +msgid "Couldn't determine free space in %s" +msgstr "Du har ikkje nok ledig plass i %s" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The directory %s is diverted" -msgstr "Katalogen %s er avleidd" +msgid "You don't have enough free space in %s" +msgstr "Du har ikkje nok ledig plass i %s" -#: apt-inst/extract.cc:152 +#. 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:891 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Pakken prøver å skriva til avleiingsmålet %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Avleiingsstigen er for lang" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#. 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:896 #, c-format -msgid "Failed to stat %s" -msgstr "Klarte ikkje få status til %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Må henta %sB med kjeldekodearkiv.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Klarte ikkje endra namnet på %s til %s" +msgid "Fetch source %s\n" +msgstr "Hent kjeldekode %s\n" -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Katalogen %s vert bytt ut med ein ikkje-katalog" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Klarte ikkje henta nokre av arkiva." -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Fann ikkje noden i nøkkelbøtta" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Nedlastinga er ferdig i nedlastingsmodus" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Stigen er for lang" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Skriv over pakketreff utan versjon for %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Utpakkingskommandoen «%s» mislukkast.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:963 #, 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" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Unable to stat %s" -msgstr "Klarte ikkje få status til %s" +msgid "Build command '%s' failed.\n" +msgstr "Byggjekommandoen «%s» mislukkast.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, fuzzy, c-format -msgid "Failed to write file %s" -msgstr "Klarte ikkje skriva fila %s" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Barneprosessen mislukkast" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "Failed to close file %s" -msgstr "Klarte ikkje lukka fila %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dette er ikkje eit gyldig DEB-arkiv, manglar «%s»-medlemmen" +msgid "Unable to get build-dependency information for %s" +msgstr "Klarte ikkje henta byggjekrav for %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Intern feil, fann ikkje medlemmen %s" +msgid "%s has no build depends.\n" +msgstr "%s har ingen byggjekrav.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Kontrollfila kan ikkje tolkast" +#: cmdline/apt-get.cc:1271 +#, 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" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ugyldig arkivsignatur" +#: cmdline/apt-get.cc:1289 +#, 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" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Feil ved lesing av arkivmedlemshovud" +#: cmdline/apt-get.cc:1312 +#, 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" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1351 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldig arkivmedlemshovud" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ugyldig arkivmedlemshovud" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon " +"tilgjengelege versjonar av pakken %s som oppfyller versjonskrava" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkivet er for kort" +#: cmdline/apt-get.cc:1357 +#, 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" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Klarte ikkje lesa arkivhovuda" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Klarte ikkje oppretta røyr" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Klarte ikkje køyra gzip " +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Klarte ikkje behandla byggjekrava" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Øydelagt arkiv" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Koplar til %s (%s)" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-sjekksummen mislukkast, arkivet er øydelagt" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Støtta modular:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Ukjend TAR-hovud type %u, medlem %s" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Bruk: apt-get [val] kommando\n" +" apt-get [val] install|remove pakke1 [pakke2 ...]\n" +" apt-get [val] source pakke1 [pakke2 ...]\n" +"\n" +"apt-get er eit enkelt grensesnitt til bruk frå kommandolinja for å lasta\n" +"ned og installera pakkar. Dei vanlegaste kommandoane er «update» og\n" +"«install».\n" +"\n" +"Kommandoar:\n" +" update - Hent nye pakkelister.\n" +" upgrade - Utfør ei oppgradering.\n" +" install - Installer nye pakkar (bruk pakkenamn, ikkje filnamn (foo." +"deb)).\n" +" remove - Fjern pakkar.\n" +" source - Last ned kjeldekode frå arkiva.\n" +" build-dep - Oppfyll byggjekrava for kjeldepakkar.\n" +" dist-upgrade - Oppgrader distribusjonen, les apt-get(8).\n" +" dselect-upgrade - Følg råda frå «dselect».\n" +" clean - Slett nedlasta arkivfiler.\n" +" autoclean - Slett gamle, nedlasta arkivfiler.\n" +" check - Stadfest at det ikkje finst krav som ikkje er oppfylte.\n" +"\n" +"Val:\n" +" -h Vis denne hjelpeteksten.\n" +" -q Ikkje vis framdriftsmåtar, for bruk i loggar.\n" +" -qq Inga tilbakemelding - bortsett frå feilmeldingar.\n" +" -d Berre nedlasting - IKKJE installer eller pakk ut arkivfilene.\n" +" -s Skuggespel, berre simulering av handlingane.\n" +" -y Svar ja på alle spørsmål utan å stoppa.\n" +" -f Prøv å halda fram sjølv om integritetskontrollen mislukkast.\n" +" -m Prøv å halda fram sjølv om nokre pakkar ikkje vert funne.\n" +" -u Ta med oppgraderte pakkar i lista som vert vist.\n" +" -b Bygg pakken etter at kjeldekoden er henta.\n" +" -V Vis fullstendige versjonsnummer.\n" +" -c=? Les denne innstillingsfila.\n" +" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" +"Du finn meir informasjon og fleire kommandolinjeval på manualsidene\n" +"til apt-get(8), sources.list(5) og apt.conf(5).\n" +" APT har superku-krefter.\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Klarte ikkje få status på %s." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du må velja minst éin pakke som kjeldekoden skal hentast for" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakkesystemet «%s» er ikkje støtta" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Skreiv %i postar.\n" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "men er ikkje installert" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Skreiv %i postar med %i manglande filer.\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "men %s skal installerast" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Skreiv %i postar med %i filer som ikkje passa\n" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "men %s skal installerast" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, 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" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "Den nyaste versjonen av %s er installert frå før.\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "Den nyaste versjonen av %s er installert frå før.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Feil MD5-sum" +msgid "%s set on hold.\n" +msgstr "men %s skal installerast" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Finn ikkje metodedrivaren %s." +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Klarte ikkje opna %s" -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoden %s starta ikkje rett" - -#: apt-pkg/acquire-worker.cc:455 -#, fuzzy, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"Skifte av medum: Set inn plata merkt\n" -" «%s»\n" -"i stasjonen «%s» og trykk Enter.\n" - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Klarte ikkje tolka eller opna pakkelista eller tilstandsfila." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Du vil kanskje prøva å retta på desse problema ved å køyra «apt-get update»." - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Kjeldelista kan ikkje lesast." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Tomt pakkelager" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Pakkelagerfila er øydelagd" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Versjonen til pakkelagerfila er ikkje kompatibel" - -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Pakkelagerfila er øydelagd" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT støttar ikkje versjonssystemet «%s»" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Pakkelageret er bygd for ein annan arkitektur" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Krav" +msgid "Unable to read the cdrom database %s" +msgstr "Klarte ikkje lesa CD-ROM-databasen %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Forkrav" +#: 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 "" +"Bruk «apt-cdrom» for å gjera denne CD-plata tilgjengeleg for APT. Du kan " +"ikkje bruka «apt-get update» til å leggja til nye CD-plater." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Forslag" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Feil CD-plate" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Tilrådingar" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Klarte ikkje montera CD-plata i %s. Det kan henda plata framleis er i bruk." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Konflikt" +#: methods/cdrom.cc:254 +#, fuzzy +msgid "Disk not found." +msgstr "Fann ikkje fila" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Byter ut" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fann ikkje fila" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Foreldar" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Klarte ikkje få status" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Klarte ikkje setja endringstidspunkt" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "viktig" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Loggar inn" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "påkravd" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Klarte ikkje avgjera namnet på motparten" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "vanleg" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Klarte ikkje avgjera det lokale namnet" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valfri" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Tenaren nekta oss å kopla til, og sa: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "tillegg" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER mislukkast, tenaren sa: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indeksfiltypen «%s» er ikkje støtta" +msgid "PASS failed, server said: %s" +msgstr "PASS mislukkast, tenaren sa: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet " +"«Acquire::ftp::ProxyLogin» er tomt." -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Feil ved behandling av %s (FindPkg)" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Kommandoen «%s» i innlogginsskriptet mislukkast, tenaren sa: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Jøss, du har overgått talet på pakkenamn som APT kan handtera." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE mislukkast, tenaren sa: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Tidsavbrot på samband" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera." +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Tenaren lukka sambandet" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Jøss, du har overgått talet på krav som APT kan handtera." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Eit svar flaumde over bufferen." -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Fann ikkje pakken %s %s ved behandling av filkrav" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokolløydeleggjing" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Klarte ikkje få status på kjeldepakkelista %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Klarte ikkje oppretta sokkel" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Les pakkelister" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samlar inn filtilbod" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislukkast" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Klarte ikkje skriva til %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Klarte ikkje kopla til passiv sokkel." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IU-feil ved lagring av kjeldelager" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Klarte ikkje binda til sokkel" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Klarte ikkje lytta til sokkel" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Klarte ikkje avgjera sokkelnamnet" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Klarte ikkje senda PORT-kommandoen" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Ukjend adressefamilie %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "endring av namn mislukkast, %s (%s -> %s)." +msgid "EPRT failed, server said: %s" +msgstr "EPRT mislukkast, tenaren sa: %s" -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "Feil MD5-sum" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Tidsavbrot på tilkopling til datasokkel" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Feil storleik" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Klarte ikkje godta tilkoplinga" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ugyldig operasjon %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem ved oppretting av nøkkel for fil" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "Klarte ikkje henta fila, tenaren sa «%s»" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Klarte ikkje tolka pakkefila %s (1)" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Tidsavbrot på datasokkelen" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Dataoverføringa mislukkast, tenaren sa «%s»" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Spørjing" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Klarte ikkje starta " -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:76 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Koplar til %s (%s)" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:87 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:94 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +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)" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:100 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:108 #, 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 "" -"Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv " -"(fordi arkitekturen manglar)." +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:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Klarte ikkje kopla til %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "Koplar til %s" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Pakkeindeksfilene er øydelagde. Feltet «Filename:» manglar for pakken %s." +msgid "Could not resolve '%s'" +msgstr "Klarte ikkje slå opp «%s»" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk" +msgid "Temporary failure resolving '%s'" +msgstr "Mellombels feil ved oppslag av «%s»" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Listekatalogen %spartial manglar." +msgid "System error resolving '%s:%s'" +msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkivkatalogen %spartial manglar." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Klarte ikkje låsa listekatalogen" +msgid "Unable to connect to %s:%s:" +msgstr "Klarte ikkje kopla til %s %s:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/acquire.cc:901 -#, fuzzy, c-format -msgid "Retrieving file %li of %li" -msgstr "Les filliste" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -"Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle " -"filer er brukte i staden." -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Du må leggja nokre kjelde-URI-ar i fila sources.list." +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Skjønar ikkje spikringstypen %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Ingen prioritet (eller null) oppgitt for spiker" - -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Klarte ikkje opna fila %s" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Dei følgjande tilleggspakkane vil verta installerte:" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Denne installasjonen vil verta nøydd til å mellombels fjerna den nødvendige " -"pakken %s på grunn av ei konflikt/forkrav-løkkje. Dette er ofte uheldig, men " -"om du verkeleg vil gjera det, kan du bruka innstillinga «APT::Force-" -"LoopBreak»." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Linja %u i kjeldelista %s er for lang." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterer CD-ROM ...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Feil ved skriving til fila" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Brukar monteringspunktet %s for CD-ROM\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Ventar på disk ...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Feil ved lesing frå tenaren" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterer CD-ROM ...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Feil ved skriving til fil" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifiserer ... " +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Utvalet mislukkast" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Lagra etikett: %s \n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Tidsavbrot på sambandet" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Leitar etter indeksfiler på disken ...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Feil ved skriving til utfil" -#: apt-pkg/cdrom.cc:734 -#, fuzzy, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Ventar på hovud" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Øydelagd hovudlinje" -#: apt-pkg/cdrom.cc:771 -#, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "Lagra etikett: %s \n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP-tenaren sende eit ugyldig svarhovud" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Det er ikkje eit gyldig namn, prøv igjen.\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP-tenaren sende eit ugyldig «Content-Length»-hovud" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Disken vert kalla: \n" -"«%s»\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP-tenaren sende eit ugyldig «Content-Range»-hovud" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopierer pakkelister ..." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Denne HTTP-tenaren har øydelagd støtte for område" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriv ny kjeldeliste\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ukjend datoformat" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Kjeldelisteoppføringar for denne disken er:\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Øydelagde hovuddata" -#: apt-pkg/algorithms.cc:265 -#, c-format -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." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Sambandet mislukkast" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar " -"som er haldne tilbake." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Intern feil" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" -"Klarte ikkje retta opp problema. Nokre øydelagde pakkar er haldne tilbake." +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Reknar ut oppgradering ... " -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Byggjer kravtre" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Ferdig" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidatversjonar" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Genererer kravforhold" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "Flettar informasjon om tilgjengelege pakkar" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Klarte ikkje opna %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Rettar på krav ..." -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Klarte ikkje skriva fila %s" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " mislukkast." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Klarte ikkje tolka pakkefila %s (1)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Klarte ikkje retta på krav" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Klarte ikkje tolka pakkefila %s (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Klarte ikkje minimera oppgraderingsmengda" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Fann ikkje utgåva «%s» av «%s»" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Ferdig" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Fann ikkje versjonen «%s» av «%s»" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»." -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Fann ikkje pakken %s" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»." -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Fann ikkje pakken %s" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Fann ikkje pakken %s" +msgid "[installed,upgradable to: %s]" +msgstr " [Installert]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installert]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installert]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installert]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "men %s er installert" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "men %s skal installerast" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Klarte ikkje tolka pakkefila %s (1)" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "men lèt seg ikkje installera" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Merk, vel %s i staden for %s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "men er ein virtuell pakke" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "men er ikkje installert" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ugyldig linje i avleiingsfila: %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "men skal ikkje installerast" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Klarte ikkje tolka pakkefila %s (1)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " eller" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Følgjande pakkar har krav som ikkje er oppfylte:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Dei følgjande NYE pakkane vil verta installerte:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Misforma linje %lu i kjeldelista %s (dist)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Dei følgjande pakkane vil verta FJERNA:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Dei følgjande pakkane er haldne tilbake:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Dei følgjande pakkane vil verta oppgraderte:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Misforma linje %lu i kjeldelista %s (URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Misforma linje %lu i kjeldelista %s (dist)" +msgid "%s (due to %s) " +msgstr "%s (fordi %s) " -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)" +#: apt-private/private-output.cc:676 +#, fuzzy +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"ÅTVARING: Dei følgjande nødvendige pakkane vil verta fjerna.\n" +"Dette bør IKKJE gjerast utan at du er fullstendig klar over kva du gjer!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu oppgraderte, %lu nyleg installerte, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +msgid "%lu reinstalled, " +msgstr "%lu installerte på nytt, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Opnar %s" +msgid "%lu downgraded, " +msgstr "%lu nedgraderte, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Misforma linje %u i kjeldelista %s (type)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n" -#: apt-pkg/sourcelist.cc:375 -#, 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" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ikkje fullstendig installerte eller fjerna.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typen «%s» er ukjend i linja %u i kjeldelista %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr " Installert: " +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, fuzzy, c-format -msgid "Configuring %s" -msgstr "Koplar til %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, fuzzy, c-format -msgid "Removing %s" -msgstr "Opnar %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Klarte ikkje fjerna %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Oppdateringskommandoen tek ingen argument" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" -msgstr "" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "Listekatalogen %spartial manglar." +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Klarte ikkje opna fila %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:989 -#, fuzzy, c-format -msgid "Preparing %s" -msgstr "Opnar %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:990 -#, fuzzy, c-format -msgid "Unpacking %s" -msgstr "Opnar %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Nokre pakkar må fjernast, men fjerning er slått av." -#: apt-pkg/deb/dpkgpm.cc:995 -#, fuzzy, c-format -msgid "Preparing to configure %s" -msgstr "Opnar oppsettsfila %s" +#: apt-private/private-install.cc:110 +#, fuzzy +msgid "Internal error, Ordering didn't finish" +msgstr "Intern feil ved tilleggjing av avleiing" -#: apt-pkg/deb/dpkgpm.cc:997 -#, fuzzy, c-format -msgid "Installed %s" -msgstr " Installert: " +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Preparing for removal of %s" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Må henta %sB/%sB med arkiv.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, fuzzy, c-format -msgid "Removed %s" -msgstr "Tilrådingar" +#. 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 +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Må henta %sB med arkiv.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:167 #, fuzzy, c-format -msgid "Preparing to completely remove %s" -msgstr "Opnar oppsettsfila %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#. 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 +#: apt-private/private-install.cc:172 #, fuzzy, c-format -msgid "Completely removed %s" -msgstr "Klarte ikkje fjerna %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:200 +#, c-format +msgid "You don't have enough free space in %s." +msgstr "Du har ikkje nok ledig plass i %s." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Klarte ikkje skriva til %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Det oppstod problem, og «-y» vart brukt utan «--force-yes»" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" +"«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, gjer som eg seier!" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:222 +#, fuzzy, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Du er i ferd med å utføra ei handling som kan vera skadeleg.\n" +"For å halda fram, må du skriva nøyaktig «%s».\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Avbryt." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vil du halda fram?" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Klarte ikkje henta nokre av filene" + +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Klarte ikkje henta nokre av arkiva. Du kan prøva med «apt-get update» eller " +"«--fix-missing»." -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "«--fix-missing» og byte av medium er ikkje støtta for tida" + +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Klarte ikkje retta opp manglande pakkar." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Avbryt installasjon." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Følgjande informasjon kan hjelpa med å løysa situasjonen:" + +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Intern feil. AllUpgrade øydelagde noko" + +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"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] "Dei følgjande NYE pakkane vil verta installerte:" +msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:" + +#: apt-private/private-install.cc:517 +#, fuzzy, 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] "Dei følgjande NYE pakkane vil verta installerte:" +msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:" + +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" +"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja " +"ei løysing)." -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Klarte ikkje låsa listekatalogen" - -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" +"Nokre av pakkane kunne ikkje installerast. Dette kan koma av at du har\n" +"valt ein umogleg situasjon. Dersom du brukar den ustabile utgåva av\n" +"distribusjonen, kan det òg henda at nokre av pakkane som trengst ikkje\n" +"er laga enno eller at dei framleis ligg i «Incoming»." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Øydelagde pakkar" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Dei følgjande tilleggspakkane vil verta installerte:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Føreslåtte pakkar:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Tilrådde pakkar" + +#: apt-private/private-install.cc:825 #, c-format -msgid "%limin %lis" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" +"Hoppar over %s, for den er installert frå før og ikkje sett til " +"oppgradering.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" +"Hoppar over %s, for den er installert frå før og ikkje sett til " +"oppgradering.\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:841 #, c-format -msgid "Selection %s not found" -msgstr "Fann ikkje utvalet %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s kan ikkje installerast på nytt, for pakken kan ikkje lastast ned.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Brukar ikkje låsing for den skrivebeskytta låsefila %s" +msgid "%s is already the newest version.\n" +msgstr "Den nyaste versjonen av %s er installert frå før.\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Klarte ikkje opna låsefila %s" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Vald versjon %s (%s) for %s\n" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Vald versjon %s (%s) for %s\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Klarte ikkje låsa %s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: apt-private/private-main.cc:32 +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 "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane." -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Underprosessen %s mottok ein segmenteringsfeil." +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nokre pakkar kunne ikkje bli autentisert" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installer desse pakkane utan verifikasjon?" + +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Underprosessen %s mottok ein segmenteringsfeil." +msgid "Failed to parse %s. Edit again? " +msgstr "Klarte ikkje endra namnet på %s til %s" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Underprosessen %s returnerte ein feilkode (%u)" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Underprosessen %s avslutta uventa" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem ved låsing av fila" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Treff " -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Klarte ikkje opna fila %s" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Hent:" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Klarte ikkje opna røyr for %s" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Klarte ikkje oppretta underprosessen IPC" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Feil " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Klarte ikkje køyra komprimeringa " +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Henta %sB på %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lese, har framleis %lu att å lesa, men ingen att" +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Arbeider]" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje" +#: apt-private/acqprogress.cc:297 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Skifte av medum: Set inn plata merkt\n" +" «%s»\n" +"i stasjonen «%s» og trykk Enter.\n" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Problem ved låsing av fila" +#. 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 "" -#: apt-pkg/contrib/fileutl.cc:1927 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem ved synkronisering av fila" +msgid "Can not read mirror file '%s'" +msgstr "Klarte ikkje opna fila %s" -#: apt-pkg/contrib/fileutl.cc:1938 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem ved oppheving av lenkje til fila" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem ved synkronisering av fila" - -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s ... Feil" +msgid "No entry found in mirror file '%s'" +msgstr "Klarte ikkje opna fila %s" -#: apt-pkg/contrib/progress.cc:150 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... Done" -msgstr "%c%s ... Ferdig" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +msgid "[Mirror: %s]" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s ... Ferdig" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Klarte ikkje oppretta IPC-røyr til underprosessen" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan ikkje utføra mmap på ei tom fil" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Sambandet vart uventa stengd" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Klarte ikkje opna røyr for %s" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Dårleg standardinnstilling" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Trykk Enter for å halda fram." -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Klarte ikkje laga mmap av %lu byte" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "" -#: apt-pkg/contrib/mmap.cc:146 +#: dselect/install:102 #, fuzzy -msgid "Unable to close mmap" -msgstr "Klarte ikkje opna %s" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Klarte ikkje starta " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Klarte ikkje laga mmap av %lu byte" +msgid "will be configured. This may result in duplicate errors" +msgstr "sette opp. Dette kan føra til følgjefeil eller feil på grunn av" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Klarte ikkje skriva fila %s" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "krav som ikkje er oppfylte. Det gjer ikkje noko, berre feila ovanfor" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "er viktige. Rett opp dei feila og [i]nstaller på nytt." -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Flettar informasjon om tilgjengelege pakkar" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode vart kalla på ein node som framleis er lenkja" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Klarte ikkje få status til monteringspunktet %s" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Fann ikkje nøkkelelementet." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Klarte ikkje få status til CD-ROM" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Klarte ikkje tildela avleiing" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ukjend typeforkorting: «%c»" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Intern feil i AddDiversion" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "Opnar oppsettsfila %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Prøver å skriva over ei avleiing, %s -> %s og %s/%s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaksfeil %s:%u: Blokka startar utan namn." +msgid "Double add of diversion %s -> %s" +msgstr "Dobbel tilleggjing av avleiing %s -> %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksfeil %s:%u: Misforma tagg" +msgid "Duplicate conf file %s/%s" +msgstr "Dobbel oppsettsfil %s/%s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien" +msgid "The path %s is too long" +msgstr "Stigen %s er for lang" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået" +msgid "Unpacking %s more than once" +msgstr "Pakkar ut %s meir enn éin gong" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksfeil %s:%u: For mange nøsta inkluderte filer" +msgid "The directory %s is diverted" +msgstr "Katalogen %s er avleidd" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaksfeil %s:%u: Inkludert herifrå" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Pakken prøver å skriva til avleiingsmålet %s/%s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Avleiingsstigen er for lang" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikkje støtta" +msgid "Failed to stat %s" +msgstr "Klarte ikkje få status til %s" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Klarte ikkje endra namnet på %s til %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila" +msgid "The directory %s is being replaced by a non-directory" +msgstr "Katalogen %s vert bytt ut med ein ikkje-katalog" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Avbryt installasjon." +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Fann ikkje noden i nøkkelbøtta" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Kjenner ikkje kommandolinjevalet «%c» (frå %s)." +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Stigen er for lang" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "Skjønar ikkje kommandolinjevalet %s" +msgid "Overwrite package match with no version for %s" +msgstr "Skriv over pakketreff utan versjon for %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Kommandolinjevalet %s er ikkje boolsk" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Fila %s/%s skriv over den tilsvarande fila i pakken %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "Valet %s krev eit argument." +msgid "Unable to stat %s" +msgstr "Klarte ikkje få status til %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =<verdi>." +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, fuzzy, c-format +msgid "Failed to write file %s" +msgstr "Klarte ikkje skriva fila %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Valet %s må ha eit heiltalsargument, ikkje «%s»" +msgid "Failed to close file %s" +msgstr "Klarte ikkje lukka fila %s" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "Valet «%s» er for langt" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dette er ikkje eit gyldig DEB-arkiv, manglar «%s»-medlemmen" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Skjønar ikkje %s. Prøv «true» eller «false»." +msgid "Internal error, could not locate member %s" +msgstr "Intern feil, fann ikkje medlemmen %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Kontrollfila kan ikkje tolkast" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ugyldig arkivsignatur" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Feil ved lesing av arkivmedlemshovud" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Ugyldig arkivmedlemshovud" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ugyldig arkivmedlemshovud" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkivet er for kort" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Klarte ikkje lesa arkivhovuda" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Klarte ikkje oppretta røyr" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Klarte ikkje køyra gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Øydelagt arkiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-sjekksummen mislukkast, arkivet er øydelagt" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Ugyldig operasjon %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Ukjend TAR-hovud type %u, medlem %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3497,7 +3502,7 @@ msgstr "Klarte ikkje lesa under utrekning av MD5" msgid "Problem unlinking %s" msgstr "Problem ved oppheving av lenkje til %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3550,6 +3555,10 @@ msgstr "" " -c=? Les denne oppsettsfila.\n" " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Intern feil. AllUpgrade øydelagde noko" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s er ingen gyldig DEB-pakke." diff --git a/po/pl.po b/po/pl.po index adec14493..916949180 100644 --- a/po/pl.po +++ b/po/pl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n" "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n" @@ -23,3276 +23,3280 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakiet %s w wersji %s ma niespełnione zależności:\n" +msgid "Unable to read %s" +msgstr "Nie można czytać %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Liczba nazw pakietów: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Nie udało się przejść do %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Liczba wszystkich typów pakietów: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Nie udało się wykonać operacji stat na pliku %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Zwykłych pakietów: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Czysto wirtualnych pakietów: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Uruchamianie dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pojedynczych pakietów wirtualnych: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "System pakietów \"%s\" nie jest obsługiwany" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Mieszanych pakietów wirtualnych: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nie udało się określić odpowiedniego typu systemu pakietów" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Brakujących: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Zapisano %i rekordów.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "W sumie różnych wersji: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Zapisano %i rekordów z %i brakującymi plikami.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "W sumie różnych opisów: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Zapisano %i rekordów z %i niepasującymi plikami\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "W sumie zależności: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "W sumie zależności wersja/plik: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Nie udało się znaleźć wpisu uwierzytelnienia dla: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "W sumie zależności opis/plik: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Błędna suma kontrolna dla: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "W sumie mapowań zapewnień: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Nie udało się odnaleźć sterownika metody %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "W sumie dopasowanych napisów: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Sumaryczny rozmiar obszaru zależności od wersji: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Metoda %s nie uruchomiła się poprawnie" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Proszę włożyć do napędu \"%s\" dysk o nazwie: \"%s\" i nacisnąć enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Całkowity rozmiar: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Nie udało się otworzyć lub zanalizować zawartości list pakietów." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Plik pakietu %s jest przestarzały." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Należy uruchomić apt-get update aby naprawić te problemy." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nie znaleziono żadnych pakietów" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nie udało się odczytać list źródeł." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Należy podać przynajmniej jeden wzorzec" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Pusty magazyn podręczny pakietów" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "To polecenie jest przestarzałe. Prosimy używać \"apt-mark showauto\"." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Magazyn podręczny pakietów jest uszkodzony" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Magazyn podręczny pakietów jest w niezgodnej wersji" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Magazyn podręczny pakietów jest uszkodzony - jest zbyt mały" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Nie udało się odnaleźć pakietu %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Ta wersja APT nie obsługuje systemu wersji \"%s\"" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Plików pakietów:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Ten magazyn podręczny pakietów został zbudowany dla innej architektury" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Magazyn podręczny jest przestarzały, nie można odwołać się (x-ref) do pliku " -"pakietu." +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Wymaga" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Przypięte pakiety:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Wymaga wstępnie" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nie znaleziono)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugeruje" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Zainstalowana: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Poleca" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandydująca: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "W konflikcie z" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(brak)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Zastępuje" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Sposób przypięcia: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Dezaktualizuje" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela wersji:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Narusza zależności" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s dla %s skompilowany %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Rozszerza" -#: cmdline/apt-cache.cc:1749 -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 "" -"Użycie: apt-cache [opcje] polecenie\n" -" apt-cache [opcje] showpkg pakiet1 [pakiet2 ...]\n" -" apt-cache [opcje] showsrc pakiet1 [pakiet2 ...]\n" -"\n" -"apt-cache to niskopoziomowe narzędzie służące pobierania informacji\n" -"z podręcznego magazynu plików binarnych APT-a.\n" -"\n" -"Polecenia:\n" -" gencaches - Buduje magazyn podręczny pakietów i źródeł\n" -" showpkg - Pokazuje ogólne informacje na temat pojedynczego pakietu\n" -" showsrc - Pokazuje informacje dla źródeł\n" -" stats - Pokazuje podstawowe statystyki\n" -" dump - Pokazuje cały plik w skrótowej formie\n" -" dumpavail - Wypisuje plik dostępnych pakietów na standardowe wyjście\n" -" unmet - Pokazuje niespełnione zależności\n" -" search - Przeszukuje listę pakietów według wyrażenia regularnego\n" -" show - Pokazuje informacje dla danego pakietu\n" -" depends - Pokazuje surowe informacje o zależnościach danego pakietu\n" -" rdepends - Pokazuje informacje o zależnościach OD danego pakietu\n" -" pkgnames - Pokazuje listę nazw wszystkich pakietów w systemie\n" -" dotty - Generuje grafy pakietów dla programu GraphViz\n" -" xvcg - Generuje grafy pakietów dla programu xvcg\n" -" policy - Pokazuje ustawienia polityki\n" -"\n" -"Opcje:\n" -" -h Ten tekst pomocy.\n" -" -p=? Podręczny magazyn pakietów.\n" -" -s=? Podręczny magazyn źródeł.\n" -" -q Wyłącza wskaźnik postępu.\n" -" -i Pokazuje tylko ważne zależności przy poleceniu unmet.\n" -" -c=? Czyta wskazany plik konfiguracyjny.\n" -" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -"Więcej informacji można znaleźć na stronach podręcznika apt-cache(8)\n" -"oraz apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "ważny" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Proszę wprowadzić nazwę dla tej płyty, np. \"Debian 5.0.3 Disk 1\"" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "wymagany" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Proszę włożyć dysk do napędu i nacisnąć enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standardowy" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcjonalny" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "dodatkowy" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Nie udało się zamontować \"%s\" w \"%s\"" +msgid "Index file type '%s' is not supported" +msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Błąd kompilacji wyrażenia regularnego - %s" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Należy powtórzyć ten proces dla reszty płyt." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Magazyn podręczny ma niezgodny system wersji" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenty nie są w parach" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Wystąpił błąd podczas przetwarzania %s (%s%d)" -#: cmdline/apt-config.cc:89 -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 "" -"Użycie: apt-config [opcje] polecenie\n" -"\n" -"apt-config to proste narzędzie do czytania pliku konfiguracyjnego APT\n" -"\n" -"Polecenia:\n" -" shell - Tryb powłoki\n" -" dump - Pokazuje konfigurację\n" -"\n" -"Opcje:\n" -" -h Ten tekst pomocy.\n" -" -c=? Czyta wskazany plik konfiguracyjny.\n" -" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Przekroczono liczbę pakietów, którą ten APT jest w stanie obsłużyć." -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Przekroczono liczbę wersji, którą ten APT jest w stanie obsłużyć." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Przekroczono liczbę opisów, którą ten APT jest w stanie obsłużyć." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" +#: apt-pkg/pkgcachegen.cc:266 +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:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" +"Pakiet %s %s nie został odnaleziony podczas przetwarzania zależności plików" -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Zmieniono wybrany pakiet źródłowy na \"%s\" z \"%s\"\n" +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" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorowanie niedostępnej wersji \"%s\" pakietu \"%s\"" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Czytanie list pakietów" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Nie udało się odnaleźć pakietu %s" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Zbieranie zapewnień plików" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s zaznaczony jako zainstalowany ręcznie.\n" +msgid "Unable to write to %s" +msgstr "Nie udało się pisać do %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s zaznaczony jako zainstalowany automatycznie.\n" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Błąd wejścia/wyjścia przy zapisywaniu podręcznego magazynu źródeł" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"To polecenie jest przestarzałe. Prosimy używać \"apt-mark auto\" i \"apt-" -"mark manual\"." +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Wysyłanie scenariusza do mechanizmu rozwiązywania zależności" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Błąd wewnętrzny, spowodowany przez moduł rozwiązywania problemów" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Wysyłanie żądania do mechanizmu rozwiązywania zależności" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nie udało się zablokować katalogu pobierania" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Przygotowywanie na otrzymanie rozwiązania" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -"Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " -"źródła" +"Zewnętrzny mechanizm rozwiązywania zależności zawiódł, bez podania " +"prawidłowego komunikatu o błędzie" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Wykonywanie zewnętrznego mechanizmu rozwiązywania zależności" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nie udało się odnaleźć źródła dla pakietu %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "nie udało się zmienić nazwy, %s (%s -> %s)" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Błędna suma kontrolna" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Błędny rozmiar" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Nieprawidłowa operacja %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"UWAGA: pakietowanie \"%s\" jest zarządzane w systemie kontroli wersji \"%s\" " -"pod adresem:\n" -"%s\n" +"Nie udało się znaleźć oczekiwanego wpisu \"%s\" w pliku Release " +"(nieprawidłowy wpis sources.list lub nieprawidłowy plik)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nie udało się znaleźć sumy kontrolnej \"%s\" w pliku Release" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Dla następujących identyfikatorów kluczy brakuje klucza publicznego:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Proszę użyć:\n" -"bzr branch %s\n" -"by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego " -"pakietu.\n" +"Plik Release dla %s wygasnął (nieprawidłowy od %s). Aktualizacje z tego " +"repozytorium nie będą wykonywane." -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Pomijanie już pobranego pliku \"%s\"\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nie udało się ustalić ilości wolnego miejsca w %s" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Podczas weryfikacji podpisu wystąpił błąd. Nie zaktualizowano repozytorium i " +"w dalszym ciągu będą używane poprzednie pliki indeksu. Błąd GPG %s: %s\n" -#: cmdline/apt-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "You don't have enough free space in %s" -msgstr "W %s nie ma wystarczającej ilości wolnego miejsca" +msgid "GPG error: %s: %s" +msgstr "Błąd GPG: %s: %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:891 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Konieczne pobranie %sB/%sB archiwów źródeł.\n" +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 "" +"Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba " +"będzie ręcznie naprawić ten pakiet (z powodu brakującej architektury)." -#. 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:896 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Konieczne pobranie %sB archiwów źródeł.\n" +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:902 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Fetch source %s\n" -msgstr "Pobieranie źródeł %s\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Pliki indeksu pakietów są uszkodzone. Brak pola Filename: dla pakietu %s." -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nie udało się pobrać niektórych archiwów." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Blok producenta %s nie zawiera odcisku" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Ukończono pobieranie w trybie samego pobierania" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Brakuje katalogu list %spartial." -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Pomijanie rozpakowania już rozpakowanego źródła w %s\n" +msgid "Archives directory %spartial is missing." +msgstr "Brakuje katalogu archiwów %spartial." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n" +msgid "Unable to lock directory %s" +msgstr "Nie udało się zablokować katalogu %s" -#: cmdline/apt-get.cc:963 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Pobieranie pliku %li z %li (pozostało %s)" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Polecenie budowania \"%s\" zawiodło.\n" +msgid "Retrieving file %li of %li" +msgstr "Pobieranie pliku %li z %li" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Proces potomny zawiódł" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Nie udało się pobrać %s %s\n" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Należy podać przynajmniej jeden pakiet, dla którego mają zostać sprawdzone " -"zależności dla budowania" +"Nie udało się pobrać niektórych plików indeksu, zostały one zignorowane lub " +"użyto ich starszej wersji." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Należy dopisać jakieś URI pakietów źródłowych do pliku sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Nie znaleziono informacji o architekturze dla %s. Proszę zapoznać się z apt." -"conf(5) APT::Architectures" +"Wartość %s jest nieprawidłowa dla APT::Default-Release, ponieważ takie " +"wydanie nie jest dostępne w źródłach" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/policy.cc:422 #, 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" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Nieprawidłowe informacje w pliku ustawień %s, brak nagłówka Package" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nie ma zależności dla budowania.\n" +msgid "Did not understand pin type %s" +msgstr "Nierozpoznany typ przypinania %s" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ %s nie jest dozwolone " -"w pakietach \"%s\"" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Brak (lub zerowy) priorytet przypięcia" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono " -"pakietu %s" +"Nie udało się wykonać natychmiastowej konfiguracji %s. Proszę wykonać \"man " +"5 apt.conf\" i zapoznać się z wpisem APT::Immediate-Configure aby dowiedzieć " +"się więcej. (%d)" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, 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" +msgid "Could not configure '%s'. " +msgstr "Nie udało się skonfigurować \"%s\". " -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"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 "" -"Zależność %s od %s nie może zostać spełniona, ponieważ kandydująca wersja " -"pakietu %s nie spełnia wymagań wersji" +"To uruchomienie programu będzie wymagało tymczasowego usunięcia istotnego " +"pakietu %s z powodu pętli konfliktów/wymagań wstępnych. Często jest to złe " +"rozwiązanie, ale jeśli jest się pewnym swoich działań, należy włączyć opcję " +"APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ pakiet %s nie ma " -"wersji kandydującej" +msgid "Line %u too long in source list %s." +msgstr "Linia %u w liście źródeł %s jest zbyt długa." -#: cmdline/apt-get.cc:1380 -#, 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" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Odmontowanie CD-ROM-u...\n" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Nie udało się spełnić zależności dla budowania %s." +msgid "Using CD-ROM mount point %s\n" +msgstr "Użycie %s jako punktu montowania CD-ROM-u\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Nie udało się przetworzyć zależności dla budowania" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Oczekiwanie na płytę...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montowanie CD-ROM-u...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identyfikacja... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Dziennik zmian %s (%s)" +msgid "Stored label: %s\n" +msgstr "Etykieta: %s \n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Obsługiwane moduły:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Skanowanie płyty w poszukiwaniu plików indeksu...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:734 +#, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Użycie: apt-get [opcje] polecenie\n" -" apt-get [opcje] install|remove pakiet1 [pakiet2 ...]\n" -" apt-get [opcje] source pakiet1 [pakiet2 ...]\n" -"\n" -"apt-get to prosty interfejs wiersza poleceń do pobierania i instalacji\n" -"pakietów. Najczęściej używane polecenia to update i install.\n" -"\n" -"Polecenia:\n" -" update - Pobiera nowe listy pakietów\n" -" upgrade - Wykonuje aktualizację\n" -" install - Instaluje nowe pakiety (pakiet to np. libc6, nie libc6.deb)\n" -" remove - Usuwa pakiety\n" -" autoremove - Usuwa automatycznie wszystkie nieużywane pakiety\n" -" purge - Usuwa pakiety łącznie z plikami konfiguracyjnymi\n" -" source - Pobiera archiwa źródłowe\n" -" build-dep - Konfiguruje zależności dla budowania pakietów źródłowych\n" -" dist-upgrade - Aktualizacja dystrybucji, patrz apt-get(8)\n" -" dselect-upgrade - Instaluje według wyborów dselect\n" -" clean - Usuwa pobrane pliki archiwów\n" -" autoclean - Usuwa stare pobrane pliki archiwów\n" -" check - Sprawdza, czy wszystkie zależności są spełnione\n" -" changelog - Pobiera i wyświetla dziennika zmian wybranych pakietów\n" -" download - Pobiera pakiet binarny do bieżącego katalogu\n" -"\n" -"Opcje:\n" -" -h Ten tekst pomocy\n" -" -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu " -"działania)\n" -" -qq Nie wypisuje nic oprócz komunikatów błędów\n" -" -d Tylko pobiera - NIE instaluje ani nie rozpakowuje archiwów\n" -" -s Bez działania. Wykonuje tylko symulację ustalenia kolejności\n" -" -y Zakłada odpowiedź \"tak\" na wszystkie pytania, nie pyta\n" -" -f Próbuje naprawić system, w którym występują niespełnione zależności\n" -" -m Próbuje działać nawet jeśli nie można znaleźć niektórych archiwów\n" -" -u Pokazuje też listę aktualizowanych pakietów\n" -" -b Buduje pakiet po pobraniu archiwum źródłowego\n" -" -V Pokazuje pełną informację na temat wersji\n" -" -c=? Czyta wskazany plik konfiguracyjny.\n" -" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -"Więcej informacji i opcji można znaleźć na stronach podręcznika\n" -"apt-get(8), sources.list(5) i apt.conf(5).\n" -" Ten APT ma moce Super Krowy.\n" +"Znaleziono %zu indeksów pakietów, %zu indeksów źródłowych, %zu indeksów " +"tłumaczeń i %zu podpisów\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " -"źródła" +"Nie można odnaleźć żadnych plików pakietów, być może nie jest to dysk " +"Debiana lub jest to inna architektura?" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Znaleziono etykietę \"%s\"\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "To nie jest prawidłowa nazwa, proszę spróbować ponownie.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Płyta nosi nazwę: \n" +"\"%s\"\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopiowanie list pakietów..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Zapisywanie nowej listy źródeł\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Źródła dla tej płyty to:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego " +"archiwum." -#: cmdline/apt-mark.cc:68 +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Błąd, pkgProblemResolver::Resolve zwrócił błąd, może to być spowodowane " +"zatrzymanymi pakietami." + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Nie udało się naprawić problemów, zatrzymano uszkodzone pakiety." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Budowanie drzewa zależności" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandydujące wersje" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generowanie zależności" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Odczyt informacji o stanie" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s nie może zostać oznaczony, ponieważ nie jest zainstalowany.\n" +msgid "Failed to open StateFile %s" +msgstr "Nie udało się otworzyć pliku stanu %s" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s został już ustawiony jako zainstalowany ręcznie.\n" +msgid "Failed to write temporary StateFile %s" +msgstr "Nie udało się zapisać tymczasowego pliku stanu %s" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s został już ustawiony jako zainstalowany automatycznie.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Nie udało się zanalizować pliku pakietu %s (1)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s został już zatrzymany.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Nie udało się zanalizować pliku pakietu %s (2)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s został już odznaczony jako zatrzymany.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Wydanie \"%s\" dla \"%s\" nie zostało znalezione" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Oczekiwano na proces %s, ale nie było go" +msgid "Version '%s' for '%s' was not found" +msgstr "Wersja \"%s\" dla \"%s\" nie została znaleziona" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "%s set on hold.\n" -msgstr "%s został zatrzymany.\n" +msgid "Unable to locate package %s" +msgstr "Nie udało się odnaleźć pakietu %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Odznaczono zatrzymanie %s\n" +msgid "Couldn't find task '%s'" +msgstr "Nie udało się odnaleźć zadania \"%s\"" -# Musi pasować do su i sudo. -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" msgstr "" -"Uruchomienie dpkg nie powiodło się. Czy użyto uprawnień administratora?" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: cmdline/apt-mark.cc:392 -#, fuzzy +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" + +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Nie udało się wybrać wersji z pakietu \"%s\", ponieważ jest on czysto " +"wirtualny" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Użycie: apt-mark [opcje] {auto|manual} pakiet1 [pakiet2 ...]\n" -"\n" -"apt-mark jest prostym poleceniem wiersza poleceń do oznaczania pakietów\n" -"jako zainstalowane automatycznie lub ręcznie. Może także służyć\n" -"do wyświetlania stanu oznaczeń.\n" -"\n" -"Polecenia:\n" -" auto - Oznacza dany pakiet jako zainstalowany automatycznie\n" -" manual - Oznacza dany pakiet jako zainstalowany ręcznie\n" -"\n" -"Opcje:\n" -" -h Ten tekst pomocy\n" -" -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu " -"działania)\n" -" -qq Nie wypisuje nic oprócz komunikatów błędów\n" -" -s Symulacja - wyświetla jedynie co powinno zostać zrobione\n" -" -f zapis/odczyt oznaczenia jako automatyczny/ręczny danego pliku\n" -" -c=? Czyta wskazany plik konfiguracyjny.\n" -" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -"Proszę zapoznać się ze stronami podręcznika systemowego apt-mark(8)\n" -"i apt.conf(5), aby uzyskać więcej informacji." +"Nie udało się wybrać zainstalowanej ani kandydującej wersji pakietu \"%s\", " +"ponieważ nie ma żadnej z nich" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" +"Nie udało się wybrać najnowszej wersji pakietu \"%s\", ponieważ jest on " +"czysto wirtualny" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nie można odczytać bazy danych CD-ROM-ów %s" - -#: 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" +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Proszę użyć programu apt-cdrom, aby APT mógł rozpoznać tę płytę CD. Nowych " -"płyt nie można dodawać przy pomocy polecenia apt-get update" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Niewłaściwa płyta CD" +"Nie udało się wybrać wersji kandydującej pakietu %s, ponieważ nie ma " +"kandydata" -#: methods/cdrom.cc:249 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nie udało się odmontować CD-ROM-u w %s, być może wciąż jest używany." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Nie odnaleziono dysku." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Nie odnaleziono pliku" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Nie udało się wybrać zainstalowanej wersji z pakietu %s, ponieważ nie jest " +"zainstalowany" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Nie udało się wykonać operacji stat" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Nie udało się przeanalizować pliku Release %s" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Nie udało się ustawić czasu modyfikacji" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Brak sekcji w pliku Release %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Nieprawidłowe URI, lokalne URI nie mogą zaczynać się od //" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Brak wpisu Hash w pliku Release %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Logowanie się" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Nieprawidłowy wpis Valid-Until w pliku Release %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nie można określić nazwy zdalnego systemu" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Nieprawidłowy wpis Date w pliku Release %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nie udało się określić nazwy lokalnego systemu" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Serwer odrzucił połączenie, otrzymana odpowiedź: %s" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Nieprawidłowa linia %lu w liście źródeł %s ([opcja] nie dająca się sparsować)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "USER failed, server said: %s" -msgstr "Polecenie USER nie powiodło się, odpowiedź serwera: %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([opcja] zbyt krótka)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Polecenie PASS nie powiodło się, odpowiedź serwera: %s" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie jest przypisane)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Określono serwer pośredniczący, ale nie określono skryptu rejestrowania, " -"Acquire::ftp::ProxyLogin jest puste." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie ma klucza)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Polecenie skryptu rejestrowania \"%s\" nie powiodło się, odpowiedź serwera: " -"%s" +"Nieprawidłowa linia %lu w liście źródeł %s ([%s] klucz %s nie ma wartości)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Polecenie TYPE nie powiodło się, odpowiedź serwera: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (URI)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Przekroczenie czasu połączenia" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (dystrybucja)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Serwer zamknął połączenie" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Błąd odczytu" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (bezwzględna dystrybucja)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odpowiedź przepełniła bufor." +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza dystrybucji)" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Naruszenie zasad protokołu" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Otwieranie %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Błąd zapisu" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nie udało się utworzyć gniazda" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Nie udało się połączyć gniazda danych, przekroczenie czasu połączenia" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Nie udało się" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Instalowanie %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nie udało się połączyć pasywnego gniazda." +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Konfigurowanie %s" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nie było w stanie uzyskać nasłuchującego gniazda" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Usuwanie %s" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nie udało się przyłączyć gniazda" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Całkowite usuwanie %s" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nie udało się nasłuchiwać na gnieździe" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Proszę odnotować zniknięcie %s" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nie udało się określić nazwy gniazda" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nie można wysłać polecenia PORT" - -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Nieznana rodzina adresów %u (AF_*)" - -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Polecenie EPRT nie powiodło się, odpowiedź serwera: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Przekroczony czas połączenia gniazda danych" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nie udało się przyjąć połączenia" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Nie udało się obliczyć skrótu pliku" +msgid "Running post-installation trigger %s" +msgstr "Uruchamianie wyzwalacza post-installation %s" -#: methods/ftp.cc:890 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nie można pobrać pliku, odpowiedź serwera: %s" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Przekroczony czas oczekiwania na dane" +msgid "Directory '%s' missing" +msgstr "Brakuje katalogu \"%s\"" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Nie udało się przesłać danych, odpowiedź serwera: %s" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Info" - -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nie można wywołać " +msgid "Could not open file '%s'" +msgstr "Nie udało się otworzyć pliku \"%s\"" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Łączenie z %s (%s)" +msgid "Preparing %s" +msgstr "Przygotowywanie %s" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Unpacking %s" +msgstr "Rozpakowywanie %s" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:995 #, 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)" +msgid "Preparing to configure %s" +msgstr "Przygotowywanie do konfiguracji %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nie udało się zainicjalizować połączenia z %s:%s (%s)." +msgid "Installed %s" +msgstr "Pakiet %s został zainstalowany" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:1002 #, 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" +msgid "Preparing for removal of %s" +msgstr "Przygotowywanie do usunięcia %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nie udało się połączyć z %s:%s (%s)." +msgid "Removed %s" +msgstr "Pakiet %s został usunięty" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Connecting to %s" -msgstr "Łączenie z %s" +msgid "Preparing to completely remove %s" +msgstr "Przygotowywanie do całkowitego usunięcia %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nie udało się przetłumaczyć nazwy \"%s\"" +msgid "Completely removed %s" +msgstr "Pakiet %s został całkowicie usunięty" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Tymczasowy błąd przy tłumaczeniu \"%s\"" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" +msgid "Can not write log (%s)" +msgstr "Nie udało się pisać do %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)" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nie udało się połączyć z %s:%s:" +msgid "Waited for %s but it wasn't there" +msgstr "Oczekiwano na proces %s, ale nie było go" -#: methods/gpgv.cc:168 +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Operacja została przerwana, zanim mogła zostać zakończona" + +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Brak raportu programu apport, ponieważ osiągnięto limit MaxReports" + +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemy z zależnościami - pozostawianie nieskonfigurowanego" + +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Błąd wewnętrzny: Prawidłowy podpis, ale nie udało się ustalić odcisku klucza!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Napotkano przynajmniej jeden nieprawidłowy podpis." +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje, że " +"przyczyna niepowodzenia leży w poprzednim błędzie." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -"Nie udało się uruchomić gpgv by zweryfikować podpis (czy gpgv jest " -"zainstalowane?)" +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " +"przepełnienie dysku" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#: apt-pkg/deb/dpkgpm.cc:1651 msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " +"braku wolnej pamięci" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Nieznany błąd podczas uruchamiania gpgv" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " +"przepełnienie dysku" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Następujące podpisy były błędne:\n" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " +"wejścia/wyjścia dpkg" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/debsystem.cc:91 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Unable to lock the administration directory (%s), is another process using " +"it?" msgstr "" -"Następujące podpisy nie mogły zostać zweryfikowane z powodu braku klucza " -"publicznego:\n" +"Nie udało się zablokować katalogu administracyjnego (%s), czy inny proces go " +"używa?" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Puste pliki nie mogą być prawidłowymi archiwami" +# Musi pasować do su i sudo. +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Nie udało się zablokować katalogu administracyjnego (%s), czy użyto " +"uprawnień administratora?" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Błąd przy pisaniu do pliku" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg został przerwany, należy wykonać ręcznie \"%s\", aby naprawić problem." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Niezablokowany" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Błąd czytania z serwera" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lidni %lig %limin %lis" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Błąd przy pisaniu do pliku" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lig %limin %lis" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Operacja select nie powiodła się" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Przekroczenie czasu połączenia" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Błąd przy pisaniu do pliku wyjściowego" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Oczekiwanie na nagłówki" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Nieprawidłowa linia nagłówka" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek odpowiedzi" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Length" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Range" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Nieznany format daty" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Nie odnaleziono wyboru %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Błędne dane nagłówka" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Dla pliku blokady %s tylko do odczytu nie zostanie użyta blokada" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Połączenie nie powiodło się" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nie udało się otworzyć pliku blokady %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Błąd wewnętrzny" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie użyta blokada" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Obliczanie aktualizacji..." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Nie udało się uzyskać blokady %s" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Błąd wewnętrzny spowodowany przez AllUpgrade" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" +"Lista plików nie może zostać stworzona, ponieważ \"%s\" nie jest katalogiem" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Gotowe" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignorowanie \"%s\" w katalogu \"%s\", ponieważ nie jest to zwykły plik" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" +"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ nie ma on rozszerzenia " +"pliku" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" +"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ ma on nieprawidłowe " +"rozszerzenie pliku" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Sub-process %s received a segmentation fault." +msgstr "Podproces %s spowodował naruszenie ochrony pamięci." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Naprawianie zależności..." +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Podproces %s otrzymał sygnał %u." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " nie udało się." +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Podproces %s zwrócił kod błędu (%u)" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nie udało się naprawić zależności" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Podproces %s zakończył się niespodziewanie" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nie udało się zminimalizować zbioru aktualizacji" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Błąd zapisu" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Gotowe" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem przy zamykaniu pliku gzip %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Należy uruchomić \"apt-get -f install\", aby je naprawić." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nie udało się otworzyć pliku %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Niespełnione zależności. Proszę spróbować użyć -f." +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nie udało się otworzyć deskryptora pliku %d" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nie udało się utworzyć IPC z podprocesem" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Zainstalowany]" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nie udało się uruchomić kompresora " -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Zainstalowany]" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Błąd odczytu" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "należało przeczytać jeszcze %llu, ale nic nie zostało" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Zainstalowany]" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "należało zapisać jeszcze %llu, ale nie udało się to" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Zainstalowany]" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem przy zamykaniu pliku %s" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Problem renaming the file %s to %s" +msgstr "Problem przy zapisywaniu pliku %s w %s" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem przy odlinkowywaniu pliku %s" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Następujące pakiety mają niespełnione zależności:" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem przy zapisywaniu pliku na dysk" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is installed" -msgstr "ale %s jest zainstalowany" +msgid "%c%s... Error!" +msgstr "%c%s... Błąd!" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "but %s is to be installed" -msgstr "ale %s ma zostać zainstalowany" +msgid "%c%s... Done" +msgstr "%c%s... Gotowe" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ale nie da się go zainstalować" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ale jest pakietem wirtualnym" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Gotowe" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ale nie jest zainstalowany" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nie można wykonać mmap na pustym pliku" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "ale nie zostanie zainstalowany" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nie udało się zduplikować deskryptora pliku %i" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " lub" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nie udało się wykonać mmap %llu bajtów" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Zostaną zainstalowane następujące NOWE pakiety:" - -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Następujące pakiety zostaną USUNIĘTE:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nie udało się zamknąć mmap" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Następujące pakiety zostały zatrzymane:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nie udało się zsynchronizować mmap" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Następujące pakiety zostaną zaktualizowane:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nie udało się wykonać mmap %lu bajtów" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Zostaną zainstalowane STARE wersje następujących pakietów:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Nie udało się uciąć zawartości pliku %s" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Zostaną zmienione następujące zatrzymane pakiety:" +#: 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 "" +"Brak miejsca dla dynamicznego MMap. Proszę zwiększyć rozmiar APT::Cache-" +"Start. Bieżąca wartość: %lu. (man 5 apt.conf)" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (z powodu %s) " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Nie udało się zwiększyć rozmiaru MMap, ponieważ limit %lu bajtów został już " +"osiągnięty." -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"UWAGA: Zostaną usunięte następujące istotne pakiety.\n" -"NIE należy kontynuować, jeśli nie jest się pewnym tego co się robi!" +"Nie udało się zwiększyć rozmiaru MMap, ponieważ automatycznie powiększanie " +"zostało wyłączone przez użytkownika." -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualizowanych, %lu nowo instalowanych, " +msgid "Unable to stat the mount point %s" +msgstr "Nie udało się wykonać operacji stat na punkcie montowania %s" + +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nie udało się wykonać operacji stat na CDROM-ie" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu ponownie instalowanych, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nierozpoznany skrót typu: \"%c\"" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu downgraded, " -msgstr "%lu cofniętych wersji, " +msgid "Opening configuration file %s" +msgstr "Otwieranie pliku konfiguracyjnego %s" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu usuwanych i %lu nieaktualizowanych.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Błąd składniowy %s:%u: Blok nie zaczyna się nazwą." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nie w pełni zainstalowanych lub usuniętych.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Błąd składniowy %s:%u: Błędny znacznik" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[T/n]" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Błąd składniowy %s:%u: Po wartości występują śmieci" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[t/N]" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Błąd składniowy %s:%u: Dyrektywy mogą występować tylko na najwyższym poziomie" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "T" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Błąd składniowy %s:%u: Zbyt wiele zagnieżdżonych operacji include" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Błąd składniowy %s:%u: Włączony tutaj" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "Regex compilation error - %s" -msgstr "Błąd kompilacji wyrażenia regularnego - %s" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Błąd składniowy %s:%u: Nieobsługiwana dyrektywa \"%s\"" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Polecenie update nie wymaga żadnych argumentów" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Błąd składniowy %s:%u: czysta dyrektywa wymaga drzewa opcji jako argumentu" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Błąd składniowy %s:%u: Śmieci na końcu pliku" -#: apt-private/private-show.cc:156 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "No keyring installed in %s." +msgstr "Brak zainstalowanej bazy kluczy w %s." -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opcja linii poleceń \"%c\" [z %s] jest nieznana." -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Błąd wewnętrzny, użyto InstallPackages z uszkodzonymi pakietami!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Niezrozumiała opcja linii poleceń %s" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakiety powinny zostać usunięte, ale Remove jest wyłączone." +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opcja linii poleceń %s nie jest typu logicznego" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Błąd wewnętrzny, sortowanie niezakończone" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Opcja %s wymaga argumentu." -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Wystąpił dziwny błąd - rozmiary się nie zgadzają. Proszę to zgłosić pod " -"apt@packages.debian.org" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawierać =<wartość>." -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Konieczne pobranie %sB/%sB archiwów.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opcja %s wymaga argumentu typu całkowitego, nie \"%s\"" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Konieczne pobranie %sB archiwów.\n" +msgid "Option '%s' is too long" +msgstr "Opcja \"%s\" jest zbyt długa" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n" +msgid "Sense %s is not understood, try true or false." +msgstr "Znaczenie %s jest nieznane, proszę spróbować true lub false." -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n" +msgid "Invalid operation %s" +msgstr "Nieprawidłowa operacja %s" -#: apt-private/private-install.cc:199 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Niestety w %s nie ma wystarczającej ilości wolnego miejsca." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakiet %s w wersji %s ma niespełnione zależności:\n" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Wystąpiły problemy, a użyto -y bez --force-yes" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Liczba nazw pakietów: " -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Nakazano wykonywać tylko trywialne operacje, a ta do nich nie należy." +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Liczba wszystkich typów pakietów: " -# Bezpieczniej jest nie używać tu polskich znaków. -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Tak, jestem pewien!" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Zwykłych pakietów: " -#: apt-private/private-install.cc:221 -#, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Zaraz stanie się coś potencjalnie szkodliwego.\n" -"Aby kontynuować proszę napisać zdanie \"%s\"\n" -" ?] " +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Czysto wirtualnych pakietów: " -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Przerwane." +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pojedynczych pakietów wirtualnych: " -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Kontynuować?" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Mieszanych pakietów wirtualnych: " -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Nie udało się pobrać niektórych plików" - -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Nie udało się pobrać niektórych archiwów, proszę spróbować uruchomić apt-get " -"update lub użyć opcji --fix-missing." - -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing i zamiana nośników nie są obecnie obsługiwane" - -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Nie udało się poprawić brakujących pakietów." - -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Przerywanie instalacji" - -#: apt-private/private-install.cc:365 -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] "" -"Następujący pakiet zniknął z tego systemu, ponieważ wszystkie jego pliki " -"zostały nadpisane przez inne pakiety:" -msgstr[1] "" -"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " -"zostały nadpisane przez inne pakiety:" -msgstr[2] "" -"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " -"zostały nadpisane przez inne pakiety:" - -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Uwaga: dpkg wykonał to automatycznie i celowo." - -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nic nie powinno być usuwane, AutoRemover nie zostanie uruchomiony" - -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Wygląda na to, że AutoRemover coś uszkodził, a to naprawdę nie\n" -"powinno się zdarzyć. Prosimy o zgłoszenie błędu w pakiecie apt." - -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Następujące informacje mogą pomóc rozwiązać sytuację:" - -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Błąd wewnętrzny spowodowany przez AutoRemover" - -#: apt-private/private-install.cc:512 -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] "" -"Następujący pakiet został zainstalowany automatycznie i nie jest już więcej " -"wymagany:" -msgstr[1] "" -"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " -"wymagane:" -msgstr[2] "" -"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " -"wymagane:" - -#: apt-private/private-install.cc:516 -#, 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 pakiet został zainstalowany automatycznie i nie jest już więcej " -"wymagany.\n" -msgstr[1] "" -"%lu pakiety zostały zainstalowane automatycznie i nie są już więcej " -"wymagane.\n" -msgstr[2] "" -"%lu pakietów zostało zainstalowanych automatycznie i nie są już więcej " -"wymagane.\n" - -#: apt-private/private-install.cc:518 -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-cache.cc:323 +msgid " Missing: " +msgstr " Brakujących: " -#: apt-private/private-install.cc:612 -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-cache.cc:325 +msgid "Total distinct versions: " +msgstr "W sumie różnych wersji: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Niespełnione zależności. Proszę spróbować wykonać \"apt-get -f install\" bez " -"pakietów (lub podać rozwiązanie)." +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "W sumie różnych opisów: " -#: apt-private/private-install.cc:628 -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 "" -"Nie udało się zainstalować niektórych pakietów. Może to oznaczać,\n" -"że zażądano niemożliwej sytuacji lub użyto dystrybucji niestabilnej,\n" -"w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n" -"z katalogu Incoming (\"Przychodzące\")." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "W sumie zależności: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Pakiety są uszkodzone" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "W sumie zależności wersja/plik: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "W sumie zależności opis/plik: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Sugerowane pakiety:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "W sumie mapowań zapewnień: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Polecane pakiety:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "W sumie dopasowanych napisów: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Pomijanie %s, jest już zainstalowane, a nie została wybrana aktualizacja.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Sumaryczny rozmiar obszaru zależności od wersji: " -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Pomijanie %s, nie jest zainstalowane, a wybrano wyłącznie aktualizacje.\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"Ponowna instalacja pakietu %s nie jest możliwa, nie może on zostać pobrany.\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Całkowity rozmiar: " -#: apt-private/private-install.cc:836 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s jest już w najnowszej wersji.\n" +msgid "Package file %s is out of sync." +msgstr "Plik pakietu %s jest przestarzały." -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\"\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nie znaleziono żadnych pakietów" -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\", z powodu \"%s\"\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Należy podać przynajmniej jeden wzorzec" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Pakiet %s nie jest zainstalowany, więc nie zostanie usunięty. Czy chodziło o " -"\"%s\"?\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "To polecenie jest przestarzałe. Prosimy używać \"apt-mark showauto\"." -#: apt-private/private-install.cc:937 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakiet \"%s\" nie jest zainstalowany, więc nie zostanie usunięty\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Plików pakietów:" -#: apt-private/private-main.cc:32 -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!" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"UWAGA: To jest tylko symulacja!\n" -" apt-get wymaga do normalnego działania uprawnień administratora.\n" -" Aktualnie blokowanie jest wyłączone, więc nie należy polegać\n" -" na związku z rzeczywistą sytuacją!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "UWAGA: Następujące pakiety nie mogą zostać zweryfikowane!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Zignorowano ostrzeżenie uwierzytelniania.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Niektóre pakiety nie mogły zostać zweryfikowane" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Zainstalować te pakiety bez weryfikacji?" - -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Nie udało się pobrać %s %s\n" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nie udało się zmienić nazwy %s na %s" +"Magazyn podręczny jest przestarzały, nie można odwołać się (x-ref) do pliku " +"pakietu." -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Przypięte pakiety:" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nie znaleziono)" -# Ujednolicono z aptitude -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Stary " +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Zainstalowana: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Pobieranie:" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandydująca: " -# Wyrównane do Hit i Err. -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign. " +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(brak)" -# Wyrównane do Hit i Ign. -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Błąd " +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Sposób przypięcia: " -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Pobrano %sB w %s (%sB/s)\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabela wersji:" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid " [Working]" -msgstr " [Pracuje]" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s dla %s skompilowany %s %s\n" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-cache.cc:1749 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Zmiana nośnika: Proszę włożyć dysk oznaczony\n" -" \"%s\"\n" -"do napędu \"%s\" i nacisnąć enter\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Nie można czytać %s" - -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Nie udało się przejść do %s" - -#. 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 "Nie znaleziono pliku serwera lustrzanego \"%s\"" - -#. 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 "Nie udało się otworzyć pliku serwera lustrzanego \"%s\"" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nie udało się otworzyć pliku serwera lustrzanego \"%s\"" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Serwer lustrzany: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Nie udało się utworzyć potoku IPC do podprocesu" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Połączenie zostało przedwcześnie zamknięte" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Nieprawidłowe ustawienie domyślne!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Proszę nacisnąć enter, aby kontynuować." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Czy usunąć wszystkie pobrane wcześniej pliki .deb?" - -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Wystąpiły problemy przy rozpakowywaniu. Zainstalowane pakiety zostaną" +"Użycie: apt-cache [opcje] polecenie\n" +" apt-cache [opcje] showpkg pakiet1 [pakiet2 ...]\n" +" apt-cache [opcje] showsrc pakiet1 [pakiet2 ...]\n" +"\n" +"apt-cache to niskopoziomowe narzędzie służące pobierania informacji\n" +"z podręcznego magazynu plików binarnych APT-a.\n" +"\n" +"Polecenia:\n" +" gencaches - Buduje magazyn podręczny pakietów i źródeł\n" +" showpkg - Pokazuje ogólne informacje na temat pojedynczego pakietu\n" +" showsrc - Pokazuje informacje dla źródeł\n" +" stats - Pokazuje podstawowe statystyki\n" +" dump - Pokazuje cały plik w skrótowej formie\n" +" dumpavail - Wypisuje plik dostępnych pakietów na standardowe wyjście\n" +" unmet - Pokazuje niespełnione zależności\n" +" search - Przeszukuje listę pakietów według wyrażenia regularnego\n" +" show - Pokazuje informacje dla danego pakietu\n" +" depends - Pokazuje surowe informacje o zależnościach danego pakietu\n" +" rdepends - Pokazuje informacje o zależnościach OD danego pakietu\n" +" pkgnames - Pokazuje listę nazw wszystkich pakietów w systemie\n" +" dotty - Generuje grafy pakietów dla programu GraphViz\n" +" xvcg - Generuje grafy pakietów dla programu xvcg\n" +" policy - Pokazuje ustawienia polityki\n" +"\n" +"Opcje:\n" +" -h Ten tekst pomocy.\n" +" -p=? Podręczny magazyn pakietów.\n" +" -s=? Podręczny magazyn źródeł.\n" +" -q Wyłącza wskaźnik postępu.\n" +" -i Pokazuje tylko ważne zależności przy poleceniu unmet.\n" +" -c=? Czyta wskazany plik konfiguracyjny.\n" +" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +"Więcej informacji można znaleźć na stronach podręcznika apt-cache(8)\n" +"oraz apt.conf(5).\n" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "skonfigurowane. Może to spowodować podwójne błędy lub błędy" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Proszę wprowadzić nazwę dla tej płyty, np. \"Debian 5.0.3 Disk 1\"" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"spowodowane brakującymi zależnościami. Jest to normalne. Tylko błędy nad tym" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Proszę włożyć dysk do napędu i nacisnąć enter" -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Nie udało się zamontować \"%s\" w \"%s\"" + +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"komunikatem są istotne. Proszę je poprawić i ponownie wybrać [I]nstalację." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Łączenie informacji o dostępnych pakietach" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Należy powtórzyć ten proces dla reszty płyt." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode wywołane na wciąż podłączonym węźle" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenty nie są w parach" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Nie udało się odnaleźć elementu tablicy haszującej!" +#: cmdline/apt-config.cc:89 +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 "" +"Użycie: apt-config [opcje] polecenie\n" +"\n" +"apt-config to proste narzędzie do czytania pliku konfiguracyjnego APT\n" +"\n" +"Polecenia:\n" +" shell - Tryb powłoki\n" +" dump - Pokazuje konfigurację\n" +"\n" +"Opcje:\n" +" -h Ten tekst pomocy.\n" +" -c=? Czyta wskazany plik konfiguracyjny.\n" +" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nie udało się utworzyć ominięcia" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Błąd wewnętrzny w AddDiversion" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Próba nadpisania ominięcia, %s -> %s i %s/%s" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Podwójne dodanie ominięcia %s -> %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Zmieniono wybrany pakiet źródłowy na \"%s\" z \"%s\"\n" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Zduplikowany plik konfiguracyjny %s/%s" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorowanie niedostępnej wersji \"%s\" pakietu \"%s\"" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:454 #, c-format -msgid "The path %s is too long" -msgstr "Ścieżka %s jest zbyt długa" +msgid "Couldn't find package %s" +msgstr "Nie udało się odnaleźć pakietu %s" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unpacking %s more than once" -msgstr "Wypakowanie %s więcej niż raz" +msgid "%s set to manually installed.\n" +msgstr "%s zaznaczony jako zainstalowany ręcznie.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "The directory %s is diverted" -msgstr "Ominięcie katalogu %s" +msgid "%s set to automatically installed.\n" +msgstr "%s zaznaczony jako zainstalowany automatycznie.\n" -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"To polecenie jest przestarzałe. Prosimy używać \"apt-mark auto\" i \"apt-" +"mark manual\"." -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Zbyt długa ścieżka ominięcia" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Błąd wewnętrzny, spowodowany przez moduł rozwiązywania problemów" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "Nie udało się wykonać operacji stat na %s" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nie udało się zablokować katalogu pobierania" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 -#, c-format -msgid "Failed to rename %s to %s" -msgstr "Nie udało się zmienić nazwy %s na %s" +#: cmdline/apt-get.cc:726 +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" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, 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:289 -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:293 -msgid "The path is too long" -msgstr "Ścieżka jest zbyt długa" +msgid "Unable to find a source package for %s" +msgstr "Nie udało się odnaleźć źródła dla pakietu %s" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Nadpisujący pakiet nie pasuje z wersją %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"UWAGA: pakietowanie \"%s\" jest zarządzane w systemie kontroli wersji \"%s\" " +"pod adresem:\n" +"%s\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:791 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Plik %s/%s nadpisuje plik w pakiecie %s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Proszę użyć:\n" +"bzr branch %s\n" +"by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego " +"pakietu.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Unable to stat %s" -msgstr "Nie można wykonać operacji stat na %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Pomijanie już pobranego pliku \"%s\"\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Failed to write file %s" -msgstr "Nie udało się zapisać pliku %s" +msgid "Couldn't determine free space in %s" +msgstr "Nie udało się ustalić ilości wolnego miejsca w %s" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Failed to close file %s" -msgstr "Nie udało się zamknąć pliku %s" +msgid "You don't have enough free space in %s" +msgstr "W %s nie ma wystarczającej ilości wolnego miejsca" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#. 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:891 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "To nie jest poprawne archiwum DEB, brakuje składnika \"%s\"" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Konieczne pobranie %sB/%sB archiwów źródeł.\n" -#: apt-inst/deb/debfile.cc:132 +#. 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:896 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Błąd wewnętrzny, nie udało się odnaleźć składnika %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Plik kontrolny nie może zostać poprawnie zinterpretowany" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Nieprawidłowy podpis archiwum" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Błąd przy czytaniu nagłówka składnika archiwum" +msgid "Need to get %sB of source archives.\n" +msgstr "Konieczne pobranie %sB archiwów źródeł.\n" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Invalid archive member header %s" -msgstr "Nieprawidłowy nagłówek składnika archiwum: %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Nieprawidłowy nagłówek składnika archiwum" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archiwum jest za krótkie" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Nie udało się odczytać nagłówków archiwum" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Nie udało się utworzyć potoków" - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Nie udało się uruchomić programu gzip " +msgid "Fetch source %s\n" +msgstr "Pobieranie źródeł %s\n" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Uszkodzone archiwum" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nie udało się pobrać niektórych archiwów." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Niepoprawna suma kontrolna tar, archiwum jest uszkodzone" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Ukończono pobieranie w trybie samego pobierania" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Nieznany typ nagłówka TAR %u, składnik %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Pomijanie rozpakowania już rozpakowanego źródła w %s\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to stat %s." -msgstr "Nie udało się wykonać operacji stat na pliku %s." +msgid "Unpack command '%s' failed.\n" +msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Progress: [%3i%%]" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" + +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Polecenie budowania \"%s\" zawiodło.\n" + +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Proces potomny zawiódł" + +#: cmdline/apt-get.cc:1029 +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" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Uruchamianie dpkg" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Nie znaleziono informacji o architekturze dla %s. Proszę zapoznać się z apt." +"conf(5) APT::Architectures" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "System pakietów \"%s\" nie jest obsługiwany" +msgid "Unable to get build-dependency information for %s" +msgstr "Nie udało się pobrać informacji o zależnościach dla budowania %s" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nie udało się określić odpowiedniego typu systemu pakietów" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s nie ma zależności dla budowania.\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Wrote %i records.\n" -msgstr "Zapisano %i rekordów.\n" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Zależność %s od %s nie może zostać spełniona, ponieważ %s nie jest dozwolone " +"w pakietach \"%s\"" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Zapisano %i rekordów z %i brakującymi plikami.\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono " +"pakietu %s" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Zapisano %i rekordów z %i niepasującymi plikami\n" +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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1351 #, 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" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Zależność %s od %s nie może zostać spełniona, ponieważ kandydująca wersja " +"pakietu %s nie spełnia wymagań wersji" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Nie udało się znaleźć wpisu uwierzytelnienia dla: %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Zależność %s od %s nie może zostać spełniona, ponieważ pakiet %s nie ma " +"wersji kandydującej" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Błędna suma kontrolna dla: %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Nie udało się spełnić zależności %s od %s: %s" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "The method driver %s could not be found." -msgstr "Nie udało się odnaleźć sterownika metody %s." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Nie udało się spełnić zależności dla budowania %s." -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Nie udało się przetworzyć zależności dla budowania" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Method %s did not start correctly" -msgstr "Metoda %s nie uruchomiła się poprawnie" +msgid "Changelog for %s (%s)" +msgstr "Dziennik zmian %s (%s)" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Proszę włożyć do napędu \"%s\" dysk o nazwie: \"%s\" i nacisnąć enter." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Obsługiwane moduły:" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Nie udało się otworzyć lub zanalizować zawartości list pakietów." +#: cmdline/apt-get.cc:1632 +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 "" +"Użycie: apt-get [opcje] polecenie\n" +" apt-get [opcje] install|remove pakiet1 [pakiet2 ...]\n" +" apt-get [opcje] source pakiet1 [pakiet2 ...]\n" +"\n" +"apt-get to prosty interfejs wiersza poleceń do pobierania i instalacji\n" +"pakietów. Najczęściej używane polecenia to update i install.\n" +"\n" +"Polecenia:\n" +" update - Pobiera nowe listy pakietów\n" +" upgrade - Wykonuje aktualizację\n" +" install - Instaluje nowe pakiety (pakiet to np. libc6, nie libc6.deb)\n" +" remove - Usuwa pakiety\n" +" autoremove - Usuwa automatycznie wszystkie nieużywane pakiety\n" +" purge - Usuwa pakiety łącznie z plikami konfiguracyjnymi\n" +" source - Pobiera archiwa źródłowe\n" +" build-dep - Konfiguruje zależności dla budowania pakietów źródłowych\n" +" dist-upgrade - Aktualizacja dystrybucji, patrz apt-get(8)\n" +" dselect-upgrade - Instaluje według wyborów dselect\n" +" clean - Usuwa pobrane pliki archiwów\n" +" autoclean - Usuwa stare pobrane pliki archiwów\n" +" check - Sprawdza, czy wszystkie zależności są spełnione\n" +" changelog - Pobiera i wyświetla dziennika zmian wybranych pakietów\n" +" download - Pobiera pakiet binarny do bieżącego katalogu\n" +"\n" +"Opcje:\n" +" -h Ten tekst pomocy\n" +" -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu " +"działania)\n" +" -qq Nie wypisuje nic oprócz komunikatów błędów\n" +" -d Tylko pobiera - NIE instaluje ani nie rozpakowuje archiwów\n" +" -s Bez działania. Wykonuje tylko symulację ustalenia kolejności\n" +" -y Zakłada odpowiedź \"tak\" na wszystkie pytania, nie pyta\n" +" -f Próbuje naprawić system, w którym występują niespełnione zależności\n" +" -m Próbuje działać nawet jeśli nie można znaleźć niektórych archiwów\n" +" -u Pokazuje też listę aktualizowanych pakietów\n" +" -b Buduje pakiet po pobraniu archiwum źródłowego\n" +" -V Pokazuje pełną informację na temat wersji\n" +" -c=? Czyta wskazany plik konfiguracyjny.\n" +" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +"Więcej informacji i opcji można znaleźć na stronach podręcznika\n" +"apt-get(8), sources.list(5) i apt.conf(5).\n" +" Ten APT ma moce Super Krowy.\n" + +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " +"źródła" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Należy uruchomić apt-get update aby naprawić te problemy." +#: cmdline/apt-mark.cc:68 +#, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s nie może zostać oznaczony, ponieważ nie jest zainstalowany.\n" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nie udało się odczytać list źródeł." +#: cmdline/apt-mark.cc:74 +#, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s został już ustawiony jako zainstalowany ręcznie.\n" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Pusty magazyn podręczny pakietów" +#: cmdline/apt-mark.cc:76 +#, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s został już ustawiony jako zainstalowany automatycznie.\n" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Magazyn podręczny pakietów jest uszkodzony" +#: cmdline/apt-mark.cc:241 +#, c-format +msgid "%s was already set on hold.\n" +msgstr "%s został już zatrzymany.\n" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Magazyn podręczny pakietów jest w niezgodnej wersji" +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" +msgstr "%s został już odznaczony jako zatrzymany.\n" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Magazyn podręczny pakietów jest uszkodzony - jest zbyt mały" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, c-format +msgid "%s set on hold.\n" +msgstr "%s został zatrzymany.\n" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ta wersja APT nie obsługuje systemu wersji \"%s\"" +msgid "Canceled hold on %s.\n" +msgstr "Odznaczono zatrzymanie %s\n" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Ten magazyn podręczny pakietów został zbudowany dla innej architektury" +# Musi pasować do su i sudo. +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" +"Uruchomienie dpkg nie powiodło się. Czy użyto uprawnień administratora?" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Wymaga" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Użycie: apt-mark [opcje] {auto|manual} pakiet1 [pakiet2 ...]\n" +"\n" +"apt-mark jest prostym poleceniem wiersza poleceń do oznaczania pakietów\n" +"jako zainstalowane automatycznie lub ręcznie. Może także służyć\n" +"do wyświetlania stanu oznaczeń.\n" +"\n" +"Polecenia:\n" +" auto - Oznacza dany pakiet jako zainstalowany automatycznie\n" +" manual - Oznacza dany pakiet jako zainstalowany ręcznie\n" +"\n" +"Opcje:\n" +" -h Ten tekst pomocy\n" +" -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu " +"działania)\n" +" -qq Nie wypisuje nic oprócz komunikatów błędów\n" +" -s Symulacja - wyświetla jedynie co powinno zostać zrobione\n" +" -f zapis/odczyt oznaczenia jako automatyczny/ręczny danego pliku\n" +" -c=? Czyta wskazany plik konfiguracyjny.\n" +" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +"Proszę zapoznać się ze stronami podręcznika systemowego apt-mark(8)\n" +"i apt.conf(5), aby uzyskać więcej informacji." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Wymaga wstępnie" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugeruje" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Nie można odczytać bazy danych CD-ROM-ów %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Poleca" +#: 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 "" +"Proszę użyć programu apt-cdrom, aby APT mógł rozpoznać tę płytę CD. Nowych " +"płyt nie można dodawać przy pomocy polecenia apt-get update" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "W konflikcie z" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Niewłaściwa płyta CD" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Zastępuje" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nie udało się odmontować CD-ROM-u w %s, być może wciąż jest używany." -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Dezaktualizuje" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Nie odnaleziono dysku." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Narusza zależności" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Nie odnaleziono pliku" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Rozszerza" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Nie udało się wykonać operacji stat" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "ważny" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Nie udało się ustawić czasu modyfikacji" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "wymagany" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Nieprawidłowe URI, lokalne URI nie mogą zaczynać się od //" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standardowy" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Logowanie się" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcjonalny" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nie można określić nazwy zdalnego systemu" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "dodatkowy" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nie udało się określić nazwy lokalnego systemu" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Magazyn podręczny ma niezgodny system wersji" +msgid "The server refused the connection and said: %s" +msgstr "Serwer odrzucił połączenie, otrzymana odpowiedź: %s" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:225 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Wystąpił błąd podczas przetwarzania %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Przekroczono liczbę pakietów, którą ten APT jest w stanie obsłużyć." - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Przekroczono liczbę wersji, którą ten APT jest w stanie obsłużyć." +msgid "USER failed, server said: %s" +msgstr "Polecenie USER nie powiodło się, odpowiedź serwera: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Przekroczono liczbę opisów, którą ten APT jest w stanie obsłużyć." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Polecenie PASS nie powiodło się, odpowiedź serwera: %s" -#: apt-pkg/pkgcachegen.cc:266 -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ć." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Określono serwer pośredniczący, ale nie określono skryptu rejestrowania, " +"Acquire::ftp::ProxyLogin jest puste." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, c-format -msgid "Package %s %s was not found while processing file dependencies" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -"Pakiet %s %s nie został odnaleziony podczas przetwarzania zależności plików" +"Polecenie skryptu rejestrowania \"%s\" nie powiodło się, odpowiedź serwera: " +"%s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, 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" +msgid "TYPE failed, server said: %s" +msgstr "Polecenie TYPE nie powiodło się, odpowiedź serwera: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Czytanie list pakietów" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Przekroczenie czasu połączenia" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Zbieranie zapewnień plików" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Serwer zamknął połączenie" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Nie udało się pisać do %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Odpowiedź przepełniła bufor." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Błąd wejścia/wyjścia przy zapisywaniu podręcznego magazynu źródeł" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Naruszenie zasad protokołu" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Wysyłanie scenariusza do mechanizmu rozwiązywania zależności" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nie udało się utworzyć gniazda" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Wysyłanie żądania do mechanizmu rozwiązywania zależności" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Nie udało się połączyć gniazda danych, przekroczenie czasu połączenia" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Przygotowywanie na otrzymanie rozwiązania" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Nie udało się" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" -"Zewnętrzny mechanizm rozwiązywania zależności zawiódł, bez podania " -"prawidłowego komunikatu o błędzie" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nie udało się połączyć pasywnego gniazda." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Wykonywanie zewnętrznego mechanizmu rozwiązywania zależności" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo nie było w stanie uzyskać nasłuchującego gniazda" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nie udało się zmienić nazwy, %s (%s -> %s)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nie udało się przyłączyć gniazda" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Błędna suma kontrolna" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nie udało się nasłuchiwać na gnieździe" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Błędny rozmiar" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nie udało się określić nazwy gniazda" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Nieprawidłowa operacja %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nie można wysłać polecenia PORT" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Nie udało się znaleźć oczekiwanego wpisu \"%s\" w pliku Release " -"(nieprawidłowy wpis sources.list lub nieprawidłowy plik)" +msgid "Unknown address family %u (AF_*)" +msgstr "Nieznana rodzina adresów %u (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nie udało się znaleźć sumy kontrolnej \"%s\" w pliku Release" +msgid "EPRT failed, server said: %s" +msgstr "Polecenie EPRT nie powiodło się, odpowiedź serwera: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Dla następujących identyfikatorów kluczy brakuje klucza publicznego:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Przekroczony czas połączenia gniazda danych" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Plik Release dla %s wygasnął (nieprawidłowy od %s). Aktualizacje z tego " -"repozytorium nie będą wykonywane." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nie udało się przyjąć połączenia" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Nie udało się obliczyć skrótu pliku" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Podczas weryfikacji podpisu wystąpił błąd. Nie zaktualizowano repozytorium i " -"w dalszym ciągu będą używane poprzednie pliki indeksu. Błąd GPG %s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Nie można pobrać pliku, odpowiedź serwera: %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "Błąd GPG: %s: %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Przekroczony czas oczekiwania na dane" -#: apt-pkg/acquire-item.cc:1867 +#: methods/ftp.cc:935 #, 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 "" -"Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba " -"będzie ręcznie naprawić ten pakiet (z powodu brakującej architektury)." +msgid "Data transfer failed, server said '%s'" +msgstr "Nie udało się przesłać danych, odpowiedź serwera: %s" -#: apt-pkg/acquire-item.cc:1933 -#, 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\"" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Info" -#: apt-pkg/acquire-item.cc:1991 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Pliki indeksu pakietów są uszkodzone. Brak pola Filename: dla pakietu %s." +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nie można wywołać " -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:76 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Blok producenta %s nie zawiera odcisku" +msgid "Connecting to %s (%s)" +msgstr "Łączenie z %s (%s)" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:87 #, c-format -msgid "List directory %spartial is missing." -msgstr "Brakuje katalogu list %spartial." +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:94 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Brakuje katalogu archiwów %spartial." +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)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:100 #, c-format -msgid "Unable to lock directory %s" -msgstr "Nie udało się zablokować katalogu %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nie udało się zainicjalizować połączenia z %s:%s (%s)." -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:108 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Pobieranie pliku %li z %li (pozostało %s)" +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" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:126 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Pobieranie pliku %li z %li" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Nie udało się pobrać niektórych plików indeksu, zostały one zignorowane lub " -"użyto ich starszej wersji." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Należy dopisać jakieś URI pakietów źródłowych do pliku sources.list" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nie udało się połączyć z %s:%s (%s)." -#: apt-pkg/policy.cc:83 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" -"Wartość %s jest nieprawidłowa dla APT::Default-Release, ponieważ takie " -"wydanie nie jest dostępne w źródłach" +msgid "Connecting to %s" +msgstr "Łączenie z %s" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Nieprawidłowe informacje w pliku ustawień %s, brak nagłówka Package" +msgid "Could not resolve '%s'" +msgstr "Nie udało się przetłumaczyć nazwy \"%s\"" -#: apt-pkg/policy.cc:444 +#: methods/connect.cc:205 #, c-format -msgid "Did not understand pin type %s" -msgstr "Nierozpoznany typ przypinania %s" +msgid "Temporary failure resolving '%s'" +msgstr "Tymczasowy błąd przy tłumaczeniu \"%s\"" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Brak (lub zerowy) priorytet przypięcia" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: 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:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Nie udało się połączyć z %s:%s:" + +#: methods/gpgv.cc:168 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Nie udało się wykonać natychmiastowej konfiguracji %s. Proszę wykonać \"man " -"5 apt.conf\" i zapoznać się z wpisem APT::Immediate-Configure aby dowiedzieć " -"się więcej. (%d)" +"Błąd wewnętrzny: Prawidłowy podpis, ale nie udało się ustalić odcisku klucza!" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Nie udało się skonfigurować \"%s\". " +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Napotkano przynajmniej jeden nieprawidłowy podpis." -#: apt-pkg/packagemanager.cc:583 +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Nie udało się uruchomić gpgv by zweryfikować podpis (czy gpgv jest " +"zainstalowane?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, 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." +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"To uruchomienie programu będzie wymagało tymczasowego usunięcia istotnego " -"pakietu %s z powodu pętli konfliktów/wymagań wstępnych. Często jest to złe " -"rozwiązanie, ale jeśli jest się pewnym swoich działań, należy włączyć opcję " -"APT::Force-LoopBreak." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Linia %u w liście źródeł %s jest zbyt długa." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Nieznany błąd podczas uruchamiania gpgv" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Odmontowanie CD-ROM-u...\n" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Następujące podpisy były błędne:\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Użycie %s jako punktu montowania CD-ROM-u\n" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Następujące podpisy nie mogły zostać zweryfikowane z powodu braku klucza " +"publicznego:\n" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Oczekiwanie na płytę...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Puste pliki nie mogą być prawidłowymi archiwami" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montowanie CD-ROM-u...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Błąd przy pisaniu do pliku" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identyfikacja... " +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etykieta: %s \n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Błąd czytania z serwera" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Skanowanie płyty w poszukiwaniu plików indeksu...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Błąd przy pisaniu do pliku" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Znaleziono %zu indeksów pakietów, %zu indeksów źródłowych, %zu indeksów " -"tłumaczeń i %zu podpisów\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Operacja select nie powiodła się" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Nie można odnaleźć żadnych plików pakietów, być może nie jest to dysk " -"Debiana lub jest to inna architektura?" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Przekroczenie czasu połączenia" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Znaleziono etykietę \"%s\"\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Błąd przy pisaniu do pliku wyjściowego" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "To nie jest prawidłowa nazwa, proszę spróbować ponownie.\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Oczekiwanie na nagłówki" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Płyta nosi nazwę: \n" -"\"%s\"\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Nieprawidłowa linia nagłówka" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopiowanie list pakietów..." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek odpowiedzi" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Zapisywanie nowej listy źródeł\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Length" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Źródła dla tej płyty to:\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Range" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego " -"archiwum." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Błąd, pkgProblemResolver::Resolve zwrócił błąd, może to być spowodowane " -"zatrzymanymi pakietami." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Nieznany format daty" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Nie udało się naprawić problemów, zatrzymano uszkodzone pakiety." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Błędne dane nagłówka" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Budowanie drzewa zależności" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Połączenie nie powiodło się" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandydujące wersje" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Błąd wewnętrzny" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generowanie zależności" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Obliczanie aktualizacji..." -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Odczyt informacji o stanie" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Gotowe" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Nie udało się otworzyć pliku stanu %s" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Nie udało się zapisać tymczasowego pliku stanu %s" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-list.cc:164 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nie udało się zanalizować pliku pakietu %s (1)" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nie udało się zanalizować pliku pakietu %s (2)" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Naprawianie zależności..." -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Wydanie \"%s\" dla \"%s\" nie zostało znalezione" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " nie udało się." + +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nie udało się naprawić zależności" + +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nie udało się zminimalizować zbioru aktualizacji" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Wersja \"%s\" dla \"%s\" nie została znaleziona" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Gotowe" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Nie udało się odnaleźć zadania \"%s\"" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Należy uruchomić \"apt-get -f install\", aby je naprawić." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Niespełnione zależności. Proszę spróbować użyć -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" +msgid "[installed,upgradable to: %s]" +msgstr " [Zainstalowany]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Nie udało się wybrać wersji z pakietu \"%s\", ponieważ jest on czysto " -"wirtualny" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Zainstalowany]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Nie udało się wybrać zainstalowanej ani kandydującej wersji pakietu \"%s\", " -"ponieważ nie ma żadnej z nich" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Nie udało się wybrać najnowszej wersji pakietu \"%s\", ponieważ jest on " -"czysto wirtualny" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Zainstalowany]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Zainstalowany]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Nie udało się wybrać wersji kandydującej pakietu %s, ponieważ nie ma " -"kandydata" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Nie udało się wybrać zainstalowanej wersji z pakietu %s, ponieważ nie jest " -"zainstalowany" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Nie udało się przeanalizować pliku Release %s" +msgid "but %s is installed" +msgstr "ale %s jest zainstalowany" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Brak sekcji w pliku Release %s" +msgid "but %s is to be installed" +msgstr "ale %s ma zostać zainstalowany" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Brak wpisu Hash w pliku Release %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ale nie da się go zainstalować" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Nieprawidłowy wpis Valid-Until w pliku Release %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ale jest pakietem wirtualnym" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Nieprawidłowy wpis Date w pliku Release %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ale nie jest zainstalowany" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ale nie zostanie zainstalowany" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Nieprawidłowa linia %lu w liście źródeł %s ([opcja] nie dająca się sparsować)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " lub" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([opcja] zbyt krótka)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Następujące pakiety mają niespełnione zależności:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie jest przypisane)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Zostaną zainstalowane następujące NOWE pakiety:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie ma klucza)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Następujące pakiety zostaną USUNIĘTE:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Następujące pakiety zostały zatrzymane:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Następujące pakiety zostaną zaktualizowane:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Zostaną zainstalowane STARE wersje następujących pakietów:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Zostaną zmienione następujące zatrzymane pakiety:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%s (due to %s) " +msgstr "%s (z powodu %s) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Nieprawidłowa linia %lu w liście źródeł %s ([%s] klucz %s nie ma wartości)" +"UWAGA: Zostaną usunięte następujące istotne pakiety.\n" +"NIE należy kontynuować, jeśli nie jest się pewnym tego co się robi!" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualizowanych, %lu nowo instalowanych, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (dystrybucja)" +msgid "%lu reinstalled, " +msgstr "%lu ponownie instalowanych, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)" +msgid "%lu downgraded, " +msgstr "%lu cofniętych wersji, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (bezwzględna dystrybucja)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu usuwanych i %lu nieaktualizowanych.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza dystrybucji)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nie w pełni zainstalowanych lub usuniętych.\n" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Otwieranie %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[T/n]" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[t/N]" -#: apt-pkg/sourcelist.cc:375 -#, 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" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "T" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instalowanie %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Polecenie update nie wymaga żadnych argumentów" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-update.cc:90 #, c-format -msgid "Configuring %s" -msgstr "Konfigurowanie %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Usuwanie %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-show.cc:156 #, c-format -msgid "Completely removing %s" -msgstr "Całkowite usuwanie %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Proszę odnotować zniknięcie %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Błąd wewnętrzny, użyto InstallPackages z uszkodzonymi pakietami!" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Uruchamianie wyzwalacza post-installation %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakiety powinny zostać usunięte, ale Remove jest wyłączone." -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Brakuje katalogu \"%s\"" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Błąd wewnętrzny, sortowanie niezakończone" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Nie udało się otworzyć pliku \"%s\"" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Wystąpił dziwny błąd - rozmiary się nie zgadzają. Proszę to zgłosić pod " +"apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:989 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Preparing %s" -msgstr "Przygotowywanie %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Konieczne pobranie %sB/%sB archiwów.\n" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Unpacking %s" -msgstr "Rozpakowywanie %s" +msgid "Need to get %sB of archives.\n" +msgstr "Konieczne pobranie %sB archiwów.\n" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Preparing to configure %s" -msgstr "Przygotowywanie do konfiguracji %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Installed %s" -msgstr "Pakiet %s został zainstalowany" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing for removal of %s" -msgstr "Przygotowywanie do usunięcia %s" +msgid "You don't have enough free space in %s." +msgstr "Niestety w %s nie ma wystarczającej ilości wolnego miejsca." -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Pakiet %s został usunięty" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Wystąpiły problemy, a użyto -y bez --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Przygotowywanie do całkowitego usunięcia %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Nakazano wykonywać tylko trywialne operacje, a ta do nich nie należy." -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Pakiet %s został całkowicie usunięty" +# Bezpieczniej jest nie używać tu polskich znaków. +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Tak, jestem pewien!" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Zaraz stanie się coś potencjalnie szkodliwego.\n" +"Aby kontynuować proszę napisać zdanie \"%s\"\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nie udało się pisać do %s" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Przerwane." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Kontynuować?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Nie udało się pobrać niektórych plików" + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Nie udało się pobrać niektórych archiwów, proszę spróbować uruchomić apt-get " +"update lub użyć opcji --fix-missing." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Operacja została przerwana, zanim mogła zostać zakończona" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing i zamiana nośników nie są obecnie obsługiwane" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Brak raportu programu apport, ponieważ osiągnięto limit MaxReports" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nie udało się poprawić brakujących pakietów." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemy z zależnościami - pozostawianie nieskonfigurowanego" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Przerywanie instalacji" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje, że " -"przyczyna niepowodzenia leży w poprzednim błędzie." +"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] "" +"Następujący pakiet zniknął z tego systemu, ponieważ wszystkie jego pliki " +"zostały nadpisane przez inne pakiety:" +msgstr[1] "" +"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " +"zostały nadpisane przez inne pakiety:" +msgstr[2] "" +"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " +"zostały nadpisane przez inne pakiety:" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " -"przepełnienie dysku" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Uwaga: dpkg wykonał to automatycznie i celowo." -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " -"braku wolnej pamięci" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nic nie powinno być usuwane, AutoRemover nie zostanie uruchomiony" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " -"przepełnienie dysku" +"Wygląda na to, że AutoRemover coś uszkodził, a to naprawdę nie\n" +"powinno się zdarzyć. Prosimy o zgłoszenie błędu w pakiecie apt." -#: apt-pkg/deb/dpkgpm.cc:1685 +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Następujące informacje mogą pomóc rozwiązać sytuację:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Błąd wewnętrzny spowodowany przez AutoRemover" + +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " -"wejścia/wyjścia dpkg" +"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] "" +"Następujący pakiet został zainstalowany automatycznie i nie jest już więcej " +"wymagany:" +msgstr[1] "" +"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " +"wymagane:" +msgstr[2] "" +"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " +"wymagane:" -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:517 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +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 pakiet został zainstalowany automatycznie i nie jest już więcej " +"wymagany.\n" +msgstr[1] "" +"%lu pakiety zostały zainstalowane automatycznie i nie są już więcej " +"wymagane.\n" +msgstr[2] "" +"%lu pakietów zostało zainstalowanych automatycznie i nie są już więcej " +"wymagane.\n" + +#: apt-private/private-install.cc:519 +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\"." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Nie udało się zablokować katalogu administracyjnego (%s), czy inny proces go " -"używa?" +"Należy uruchomić \"apt-get -f install\", aby naprawić poniższe problemy:" -# Musi pasować do su i sudo. -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Nie udało się zablokować katalogu administracyjnego (%s), czy użyto " -"uprawnień administratora?" +"Niespełnione zależności. Proszę spróbować wykonać \"apt-get -f install\" bez " +"pakietów (lub podać rozwiązanie)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"dpkg został przerwany, należy wykonać ręcznie \"%s\", aby naprawić problem." +"Nie udało się zainstalować niektórych pakietów. Może to oznaczać,\n" +"że zażądano niemożliwej sytuacji lub użyto dystrybucji niestabilnej,\n" +"w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n" +"z katalogu Incoming (\"Przychodzące\")." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Niezablokowany" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pakiety są uszkodzone" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lidni %lig %limin %lis" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lig %limin %lis" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Sugerowane pakiety:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Polecane pakiety:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:825 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Pomijanie %s, jest już zainstalowane, a nie została wybrana aktualizacja.\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:829 #, c-format -msgid "Selection %s not found" -msgstr "Nie odnaleziono wyboru %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Pomijanie %s, nie jest zainstalowane, a wybrano wyłącznie aktualizacje.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:841 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Dla pliku blokady %s tylko do odczytu nie zostanie użyta blokada" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" +"Ponowna instalacja pakietu %s nie jest możliwa, nie może on zostać pobrany.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:846 #, c-format -msgid "Could not open lock file %s" -msgstr "Nie udało się otworzyć pliku blokady %s" +msgid "%s is already the newest version.\n" +msgstr "%s jest już w najnowszej wersji.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:894 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie użyta blokada" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\"\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:899 #, c-format -msgid "Could not get lock %s" -msgstr "Nie udało się uzyskać blokady %s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\", z powodu \"%s\"\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "List of files can't be created as '%s' is not a directory" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"Lista plików nie może zostać stworzona, ponieważ \"%s\" nie jest katalogiem" - -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignorowanie \"%s\" w katalogu \"%s\", ponieważ nie jest to zwykły plik" +"Pakiet %s nie jest zainstalowany, więc nie zostanie usunięty. Czy chodziło o " +"\"%s\"?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ nie ma on rozszerzenia " -"pliku" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakiet \"%s\" nie jest zainstalowany, więc nie zostanie usunięty\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ ma on nieprawidłowe " -"rozszerzenie pliku" +"UWAGA: To jest tylko symulacja!\n" +" apt-get wymaga do normalnego działania uprawnień administratora.\n" +" Aktualnie blokowanie jest wyłączone, więc nie należy polegać\n" +" na związku z rzeczywistą sytuacją!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Podproces %s spowodował naruszenie ochrony pamięci." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "UWAGA: Następujące pakiety nie mogą zostać zweryfikowane!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Podproces %s otrzymał sygnał %u." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Zignorowano ostrzeżenie uwierzytelniania.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Podproces %s zwrócił kod błędu (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Niektóre pakiety nie mogły zostać zweryfikowane" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Podproces %s zakończył się niespodziewanie" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Zainstalować te pakiety bez weryfikacji?" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem przy zamykaniu pliku gzip %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Nie udało się zmienić nazwy %s na %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Nie udało się otworzyć pliku %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Nie udało się otworzyć deskryptora pliku %d" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nie udało się utworzyć IPC z podprocesem" +# Ujednolicono z aptitude +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Stary " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nie udało się uruchomić kompresora " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Pobieranie:" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "należało przeczytać jeszcze %llu, ale nic nie zostało" +# Wyrównane do Hit i Err. +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign. " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "należało zapisać jeszcze %llu, ale nie udało się to" +# Wyrównane do Hit i Ign. +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Błąd " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the file %s" -msgstr "Problem przy zamykaniu pliku %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Pobrano %sB w %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem przy zapisywaniu pliku %s w %s" +msgid " [Working]" +msgstr " [Pracuje]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem przy odlinkowywaniu pliku %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem przy zapisywaniu pliku na dysk" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Zmiana nośnika: Proszę włożyć dysk oznaczony\n" +" \"%s\"\n" +"do napędu \"%s\" i nacisnąć enter\n" -#: apt-pkg/contrib/progress.cc:148 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Błąd!" +msgid "No mirror file '%s' found " +msgstr "Nie znaleziono pliku serwera lustrzanego \"%s\"" -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Gotowe" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "Can not read mirror file '%s'" +msgstr "Nie udało się otworzyć pliku serwera lustrzanego \"%s\"" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Gotowe" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nie można wykonać mmap na pustym pliku" +msgid "No entry found in mirror file '%s'" +msgstr "Nie udało się otworzyć pliku serwera lustrzanego \"%s\"" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nie udało się zduplikować deskryptora pliku %i" +msgid "[Mirror: %s]" +msgstr "[Serwer lustrzany: %s]" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nie udało się wykonać mmap %llu bajtów" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Nie udało się utworzyć potoku IPC do podprocesu" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nie udało się zamknąć mmap" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Połączenie zostało przedwcześnie zamknięte" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Nieprawidłowe ustawienie domyślne!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Proszę nacisnąć enter, aby kontynuować." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nie udało się zsynchronizować mmap" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Czy usunąć wszystkie pobrane wcześniej pliki .deb?" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nie udało się wykonać mmap %lu bajtów" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Wystąpiły problemy przy rozpakowywaniu. Zainstalowane pakiety zostaną" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Nie udało się uciąć zawartości pliku %s" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "skonfigurowane. Może to spowodować podwójne błędy lub błędy" -#: 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)" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Brak miejsca dla dynamicznego MMap. Proszę zwiększyć rozmiar APT::Cache-" -"Start. Bieżąca wartość: %lu. (man 5 apt.conf)" +"spowodowane brakującymi zależnościami. Jest to normalne. Tylko błędy nad tym" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: dselect/install:105 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Nie udało się zwiększyć rozmiaru MMap, ponieważ limit %lu bajtów został już " -"osiągnięty." +"komunikatem są istotne. Proszę je poprawić i ponownie wybrać [I]nstalację." -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Nie udało się zwiększyć rozmiaru MMap, ponieważ automatycznie powiększanie " -"zostało wyłączone przez użytkownika." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Łączenie informacji o dostępnych pakietach" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nie udało się wykonać operacji stat na punkcie montowania %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode wywołane na wciąż podłączonym węźle" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nie udało się wykonać operacji stat na CDROM-ie" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Nie udało się odnaleźć elementu tablicy haszującej!" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nierozpoznany skrót typu: \"%c\"" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nie udało się utworzyć ominięcia" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Otwieranie pliku konfiguracyjnego %s" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Błąd wewnętrzny w AddDiversion" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Błąd składniowy %s:%u: Blok nie zaczyna się nazwą." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Próba nadpisania ominięcia, %s -> %s i %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Błąd składniowy %s:%u: Błędny znacznik" +msgid "Double add of diversion %s -> %s" +msgstr "Podwójne dodanie ominięcia %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Błąd składniowy %s:%u: Po wartości występują śmieci" +msgid "Duplicate conf file %s/%s" +msgstr "Zduplikowany plik konfiguracyjny %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Błąd składniowy %s:%u: Dyrektywy mogą występować tylko na najwyższym poziomie" +msgid "The path %s is too long" +msgstr "Ścieżka %s jest zbyt długa" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Błąd składniowy %s:%u: Zbyt wiele zagnieżdżonych operacji include" +msgid "Unpacking %s more than once" +msgstr "Wypakowanie %s więcej niż raz" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Błąd składniowy %s:%u: Włączony tutaj" +msgid "The directory %s is diverted" +msgstr "Ominięcie katalogu %s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Błąd składniowy %s:%u: Nieobsługiwana dyrektywa \"%s\"" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Zbyt długa ścieżka ominięcia" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Błąd składniowy %s:%u: czysta dyrektywa wymaga drzewa opcji jako argumentu" +msgid "Failed to stat %s" +msgstr "Nie udało się wykonać operacji stat na %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Błąd składniowy %s:%u: Śmieci na końcu pliku" +msgid "Failed to rename %s to %s" +msgstr "Nie udało się zmienić nazwy %s na %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "Brak zainstalowanej bazy kluczy w %s." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Katalog %s został zastąpiony obiektem nie będącym katalogiem" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +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:293 +msgid "The path is too long" +msgstr "Ścieżka jest zbyt długa" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opcja linii poleceń \"%c\" [z %s] jest nieznana." +msgid "Overwrite package match with no version for %s" +msgstr "Nadpisujący pakiet nie pasuje z wersją %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Niezrozumiała opcja linii poleceń %s" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Plik %s/%s nadpisuje plik w pakiecie %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Opcja linii poleceń %s nie jest typu logicznego" +msgid "Unable to stat %s" +msgstr "Nie można wykonać operacji stat na %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Opcja %s wymaga argumentu." +msgid "Failed to write file %s" +msgstr "Nie udało się zapisać pliku %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawierać =<wartość>." +msgid "Failed to close file %s" +msgstr "Nie udało się zamknąć pliku %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opcja %s wymaga argumentu typu całkowitego, nie \"%s\"" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "To nie jest poprawne archiwum DEB, brakuje składnika \"%s\"" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Opcja \"%s\" jest zbyt długa" +msgid "Internal error, could not locate member %s" +msgstr "Błąd wewnętrzny, nie udało się odnaleźć składnika %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Plik kontrolny nie może zostać poprawnie zinterpretowany" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Nieprawidłowy podpis archiwum" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Błąd przy czytaniu nagłówka składnika archiwum" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Znaczenie %s jest nieznane, proszę spróbować true lub false." +msgid "Invalid archive member header %s" +msgstr "Nieprawidłowy nagłówek składnika archiwum: %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Nieprawidłowy nagłówek składnika archiwum" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archiwum jest za krótkie" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Nie udało się odczytać nagłówków archiwum" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Nie udało się utworzyć potoków" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Nie udało się uruchomić programu gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Uszkodzone archiwum" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Niepoprawna suma kontrolna tar, archiwum jest uszkodzone" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Nieprawidłowa operacja %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Nieznany typ nagłówka TAR %u, składnik %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3588,17 +3592,17 @@ msgstr "Nie udało się czytać pliku override %s" #: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" -msgstr "Nieprawidłowa linia %llu #1 pliku override %s" +msgstr "Nieprawidłowa linia %2$llu #1 pliku override %1$s" #: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" -msgstr "Nieprawidłowa linia %llu #2 pliku override %s" +msgstr "Nieprawidłowa linia %2$llu #2 pliku override %1$s" #: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" -msgstr "Nieprawidłowa linia %llu #3 pliku override %s" +msgstr "Nieprawidłowa linia %2$llu #3 pliku override %1$s" #: ftparchive/multicompress.cc:73 #, c-format @@ -3640,7 +3644,7 @@ msgstr "Nie udało się czytanie w czasie liczenia skrótu MD5" msgid "Problem unlinking %s" msgstr "Problem przy usuwaniu %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3693,6 +3697,10 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny.\n" " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Błąd wewnętrzny spowodowany przez AllUpgrade" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s nie jest prawidłowym pakietem DEB." diff --git a/po/pt.po b/po/pt.po index 98555056b..339b70694 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-06-29 15:45+0100\n" "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" @@ -18,3266 +18,3270 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.0\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Tipo do ficheiro de índice '%s' não é suportado" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "O pacote %s versão %s tem uma dependência não satisfeita:\n" +msgid "Unable to read %s" +msgstr "Não foi possível ler %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Total de nomes de pacotes: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Impossível mudar para %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Total de estruturas de pacotes: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Não foi possível fazer stat %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pacotes normais: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pacotes virtuais puros: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "A correr o dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pacotes virtuais únicos: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Sistema de empacotamento '%s' não é suportado" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pacotes virtuais misturados: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "" +"Não foi possível determinar um tipo de sistema de empacotamento adequado" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Faltam: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Escreveu %i registos.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Total de versões distintas: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Escreveu %i registos com %i ficheiros em falta.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Total de descrições distintas: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Total de dependências: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Escreveu %i registos com %i ficheiros em falta e %i ficheiros não " +"coincidentes\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Total de relações ver/ficheiro: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Não foi possível encontrar registo de autenticação para: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Total de relações Desc/Ficheiro: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash não coincide para: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Total de Mapeamentos 'Provides': " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "O driver do método %s não pôde ser encontrado." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Total de strings globbed: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espaço total de dependência de versão: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Método %s não iniciou correctamente" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espaço total desperdiçado: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Por favor insira o disco denominado: '%s' no leitor '%s' e pressione enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Espaço total contabilizado: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"As listas de pacotes ou o ficheiro de status não pôde ser analisado ou " +"aberto." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "O ficheiro do pacote %s está dessincronizado." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Você terá que executar apt-get update para corrigir estes problemas" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Não foi encontrado nenhum pacote" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "A lista de fontes não pôde ser lida." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Tem de fornecer pelo menos um padrão de busca" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache de pacotes vazia" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Este comando foi depreceado. Em vez disso por favor utilize 'apt-mark " -"showauto'." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "O ficheiro de cache de pacotes está corrompido" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "O ficheiro de cache de pacotes é de uma versão incompatível" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "O ficheiro de cache de pacotes está corrompido, é demasiado pequeno" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Não foi possível encontrar o pacote %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Este APT não suporta o sistema de versões '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Ficheiros de Pacotes :" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "A cache de pacotes foi gerada para uma arquitectura diferente" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"A cache está dessincronizada, não pode x-referenciar um ficheiro de pacote" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pacotes Marcados:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pré-Depende" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(não encontrado)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugere" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalado: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomenda" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Em Conflito" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nenhum)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Substitui" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Marcação do Pacote: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Obsoleta" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela de Versão:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Estraga" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado em %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Aumenta" -#: cmdline/apt-cache.cc:1749 -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 "" -"Utilização: apt-cache [opções] comando\n" -" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n" -" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n" -"\n" -"O apt-cache é uma ferramenta de baixo nível utilizada para questionar\n" -" informação dos ficheiros de cache binários do APT\n" -"\n" -"Comandos:\n" -" gencaches - Construir as caches de pacotes e de código-fonte\n" -" showpkg - Mostrar informações gerais sobre um pacote\n" -" showsrc - Mostrar registos de código-fonte\n" -" stats - Mostrar algumas estatísticas simples\n" -" dump - Mostrar todo o ficheiro de forma concisa\n" -" dumpavail - Escrever um ficheiro disponível para stdout\n" -" unmet - Mostrar dependências não satisfeitas\n" -" search - Procurar na lista de pacotes por um padrão regex\n" -" show - Mostrar um registo legível sobre o pacote\n" -" depends - Mostrar informações em bruto de dependências de um pacote\n" -" rdepends - Mostrar a informação de dependências inversas de um pacote\n" -" pkgnames - Listar o nome de todos os pacotes no sistema\n" -" dotty - Gerar gráficos de pacotes para o GraphViz\n" -" xvcg - Gerar gráficos de pacotes para o xvcg\n" -" policy - Mostrar as configurações de políticas\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda.\n" -" -p=? A cache de pacotes.\n" -" -s=? A cache de fontes.\n" -" -q Desabilitar o indicador de progresso.\n" -" -i Mostrar apenas dependências importantes para o comando unmet.\n" -" -c=? Ler este ficheiro de configuração.\n" -" -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" -"tmp\n" -"Para mais informações veja as páginas do manual apt-cache(8) e apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Por favor indique um nome para este Disco, tal como 'Debian 5.0.3 Disco 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "necessário" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Por favor insira um Disco no leitor e pressione enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "padrão" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Falhou ao montar '%s' para '%s'" +msgid "Index file type '%s' is not supported" +msgstr "Tipo do ficheiro de índice '%s' não é suportado" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Erro de compilação de regex - %s" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repita este processo para o resto dos CDs no seu conjunto." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "A cache possui um sistema de versões incompatível" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "os argumentos não estão em pares" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Ocorreu um erro ao processar %s (%s%d)" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Utilização: apt-config [opções] comando\n" -"\n" -"O apt-config é uma ferramenta simples para ler o ficheiro de config do APT\n" -"\n" -"Comandos:\n" -" shell - Modo shell\n" -" dump - Mostrar a configuração\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda.\n" -" -c=? Ler este ficheiro de configuração\n" -" -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" -"tmp\n" +"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " +"suportar." -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"Uau, você excedeu o número de versões que este APT é capaz de suportar." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Uau, você excedeu o número de descrições que este APT é capaz de suportar." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:576 #, 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" - -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorar a versão '%s', não disponível, do pacote '%s'" +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" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't find package %s" -msgstr "Impossível encontrar o pacote %s" +msgid "Couldn't stat source package list %s" +msgstr "Não foi possível executar stat à lista de pacotes de código fonte %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s está definido para ser instalado manualmente.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "A ler as listas de pacotes" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "A obter File Provides" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s está definido para ser instalado automaticamente.\n" +msgid "Unable to write to %s" +msgstr "Não conseguiu escrever para %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Este comando foi depreceado. Em vez disso, por favor utilize 'apt-mark auto' " -"e 'apt-mark manual'." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Erro de I/O ao gravar a cache de código fonte" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Erro Interno, o solucionador de problemas estragou coisas" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Enviar cenário a resolver" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Impossível criar acesso exclusivo ao directório de downloads" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Enviar pedido para resolvedor" -#: cmdline/apt-get.cc:726 -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" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Preparar para receber solução" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, 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" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "O resolvedor externo falhou sem uma mensagem de erro adequada" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"AVISO: o empacotamento de '%s' é mantido no sistema de controle de versões " -"'%s' em:\n" -"%s\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Executar resolvedor externo" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Por favor utilize:\n" -"bzr branch %s\n" -"para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "falhou renomear, %s (%s -> %s)." -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "A saltar o ficheiro '%s', já tinha sido feito download'\n" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Código de verificação hash não coincide" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Não foi possível determinar o espaço livre em %s" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Tamanho incorrecto" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operação %s inválida" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Você não possui espaço livre suficiente em %s" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Incapaz de encontrar a entrada '%s' esperada no ficheiro Release (entrada " +"errada em sources.list ou ficheiro malformado)" -#. 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:891 +#: apt-pkg/acquire-item.cc:1589 #, 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" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Não foi possível encontrar hash sum para '%s' no ficheiro Release" -#. 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:896 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Não existe qualquer chave pública disponível para as seguintes IDs de " +"chave:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "É necessário obter %sB de arquivos de código fonte.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"O ficheiro Release para %s está expirado (inválido desde %s). Não serão " +"aplicadas as actualizações para este repositório." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "Obter código fonte %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Falhou obter alguns arquivos." +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Ocorreu um erro durante a verificação da assinatura. O repositório não está " +"actualizado e serão utilizados os ficheiros anteriores de índice. Erro do " +"GPG: %s: %s\n" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Download completo e em modo de fazer apenas o download" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Erro GPG: %s: %s" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +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 "" -"A saltar a descompactação do pacote de código fonte já descompactado em %s\n" +"Não foi possível localizar um ficheiro para o pacote %s. Isto pode " +"significar que você precisa corrigir manualmente este pacote. (devido a " +"arquitectura em falta)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "O comando de descompactação '%s' falhou.\n" +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:963 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: " +"para o pacote %s." -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "O comando de compilação '%s' falhou.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "O bloco de fabricante %s não contém a impressão digital" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "O processo filho falhou" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Falta directório de listas %spartial." -#: cmdline/apt-get.cc:1029 -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" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Falta o directório de arquivos %spartial." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"Nenhuma informação de arquitectura disponível para %s. Para configuração " -"veja apt.conf(5) APT::Architectures" +msgid "Unable to lock directory %s" +msgstr "Impossível criar acesso exclusivo ao directório %s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, 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" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "A obter o ficheiro %li de %li (%s restantes)" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s não tem dependências de compilação.\n" +msgid "Retrieving file %li of %li" +msgstr "A obter o ficheiro %li de %li" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Falhou obter %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque %s não é permitido " -"em pacotes '%s'" +"Falhou o download de alguns ficheiros de índice. Foram ignorados ou os " +"antigos foram usados em seu lugar." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Você deve colocar alguns URIs 'source' no seu sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"a dependência de %s para %s não pôde ser satisfeita porque o pacote %s não " -"pôde ser encontrado" +"O valor '%s' é inválido para APT::Default-Release porque tal lançamento não " +"está disponível nas fontes" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, 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" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Registo inválido no ficheiro de preferências %s, sem cabeçalho Package" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Não foi possível entender o tipo de marca (pin) %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" 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" +"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)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Não pode configurar '%s'. " + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"a dependência de %s para %s não pode ser satisfeita porque o pacote %s não " -"tem versão candidata" +"Esta execução da instalação irá necessitar de remover temporariamente o " +"pacote essencial %s devido a um loop de Conflitos/Pré-Dependências. Isto " +"normalmente é mau, mas se você quer realmente fazer isso, active a opção " +"APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Falha ao satisfazer a dependência %s para %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Linha %u é demasiado longa na lista de fontes %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "A desmontar o CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, 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." +msgid "Using CD-ROM mount point %s\n" +msgstr "A utilizar o ponto de montagem do CD-ROM %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Falhou processar as dependências de compilação" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "A aguardar pelo disco...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, c-format -msgid "Changelog for %s (%s)" -msgstr "Changlog para %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "A montar o CD-ROM...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos Suportados:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "A identificar... " -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Label Guardada: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "A pesquisar os ficheiros de índice do disco...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Utilização: apt-get [opções] comando\n" -" apt-get [opções] install|remove pacote1 [pacote2 ...]\n" -" apt-get [opções] source pacote1 [pacote2 ...]\n" -"\n" -"O apt-get é um interface simples de linha de comandos para obter\n" -"e instalar pacotes. Os comandos utilizados mais frequentemente\n" -"são update e install.\n" -"\n" -"Comandos:\n" -" update - Obter novas listas de pacotes\n" -" upgrade - Executar uma actualização\n" -" install - Instalar novos pacotes (o pacote é libc6 e não libc6.deb)\n" -" remove - Remover pacotes\n" -" autoremove - Remover automaticamente todos os pacotes não utilizados\n" -" purge - Remover pacotes e ficheiros de configuração\n" -" source - Fazer o download de arquivos de código-fonte\n" -" build-dep - Configurar as dependências de compilação de pacotes de código-" -"fonte\n" -" dist-upgrade - Actualizar a distribuição, veja apt-get(8)\n" -" dselect-upgrade - Seguir as escolhas feitas no dselect\n" -" clean - Apagar ficheiros de arquivo obtidos por download\n" -" autoclean - Apagar ficheiros de arquivo antigos obtidos por download\n" -" check - Verificar se existem dependências erradas\n" -" changelog - Obter e mostrar o changelog de um pacote\n" -" download - Obter o pacote binário para o directório actual\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda\n" -" -q Saída para registo - sem indicador de progresso\n" -" -qq Sem saída, excepto para erros\n" -" -d Fazer apenas o download - NÃO instalar ou descompactar arquivos\n" -" -s Não agir. Executar simulação de ordens\n" -" -y Assumir Sim para todas as perguntas e não fazer perguntas\n" -" -f Tentar corrigir um sistema com dependências erradas\n" -" -m Tentar continuar se os arquivos não poderem ser localizados\n" -" -u Mostrar também uma lista de pacotes actualizados\n" -" -b Construir o pacote de código-fonte depois de o obter\n" -" -V Mostrar números da versão detalhados\n" -" -c=? Ler este ficheiro de configuração\n" -" -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/" -"tmp\n" -"Para mais informações e opções veja as páginas do manual\n" -"apt-get(8), sources.list(5) e apt.conf(5)\n" -" Este APT tem Poderes de Super Vaca.\n" +"Foram encontrados %zu índices de pacotes, %zu índices de código-fonte, %zu " +"índices de tradução e %zu assinaturas\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Tem de especificar pelo menos um pacote para obter o código fonte de" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Não foi possível localizar quaisquer ficheiros de pacote, talvez este não " +"seja um disco Debian ou seja a arquitectura errada?" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Encontrada a etiqueta '%s'\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Isso não é um nome válido, tente novamente.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Este disco tem o nome: \n" +"'%s'\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "A copiar listas de pacotes..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "A escrever lista de novas source\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "As entradas de listas de Source para este Disco são:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"O pacote %s necessita ser reinstalado, mas não foi possível encontrar um " +"repositório para o mesmo." -#: cmdline/apt-mark.cc:68 +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " +"pacotes mantidos (hold)." + +#: apt-pkg/algorithms.cc:1088 +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/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "A construir árvore de dependências" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versões candidatas" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Geração de dependências" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "A ler a informação de estado" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s não pode ser marcado pois não está instalado.\n" +msgid "Failed to open StateFile %s" +msgstr "Falhou abrir o StateFile %s" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s já estava definido para ser instalado manualmente.\n" +msgid "Failed to write temporary StateFile %s" +msgstr "Falha escrever ficheiro temporário StateFile %s" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s já estava definido para ser instalado automaticamente.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Não foi possível fazer parse ao ficheiro do pacote %s (1)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s já estava marcado para manter.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Não foi possível fazer parse ao ficheiro de pacote %s (2)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s já estava para não manter.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Não foi encontrado o Release '%s' para '%s'" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperou por %s mas não estava lá" +msgid "Version '%s' for '%s' was not found" +msgstr "Não foi encontrada a versão '%s' para '%s'" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "%s set on hold.\n" -msgstr "%s marcado para manter.\n" +msgid "Unable to locate package %s" +msgstr "Não foi possível encontrar o pacote %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Cancelou manter em %s.\n" +msgid "Couldn't find task '%s'" +msgstr "Não foi possível encontrar a tarefa '%s'" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Falhou executar dpkg. É root?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" -#: cmdline/apt-mark.cc:392 -#, fuzzy +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" + +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Não foi possível seleccionar versões do pacote '%s' pois é puramente virtual" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Utilização: apt-mark [opções] {auto|manual} pacote1 [pacote2...]\n" -"\n" -"apt-mark é um interface simples de linha de comandos para marcar pacotes " -"como instalados de forma manual ou automática. Pode também listar " -"marcações.\n" -"\n" -"Comandos:\n" -" auto - Marca os pacotes como instalados automaticamente\n" -" manual - Marca os pacotes como instalados manualmente\n" -"\n" -"Opções:\n" -" -h\tEste texto de ajuda.\n" -" -q\tSaída para registo - sem indicador de progresso\n" -" -qq Sem saída excepto para erros\n" -" -s\tNão fazer. Apenas escreve o que seria feito.\n" -" -f\tler/escrever marcação auto/manual no ficheiro indicado\n" -" -c=? Ler este ficheiro de configuração\n" -" -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/" -"tmp\n" -"Para mais informações veja as páginas apt-mark(8) e apt.conf(5) do manual." +"Não pode seleccionar a versão instalada nem a versão candidata do pacote " +"'%s' pois não tem nenhuma destas" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" +"Não foi possível seleccionar a versão mais recente a partir do pacote '%s' " +"já que é puramente virtual" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Não foi capaz de ler a base de dados de cdrom %s" - -#: 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" +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Por favor utilize o apt-cdrom para fazer com que este CD seja reconhecido " -"pelo APT. apt-get update não pode ser utilizado para adicionar novos CDs" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD errado" +"Não é possível seleccionar a versão candidata do pacote %s já que não tem " +"candidato" -#: methods/cdrom.cc:249 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Impossível desmontar o CD-ROM em %s, pode ainda estar a ser utilizado." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco não encontrado." +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Não é possível seleccionar a versão instalada do pacote %s pois não está " +"instalado" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Ficheiro não encontrado" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Não foi possível fazer parse ao ficheiro Release %s" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Falhou o stat" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Nenhuma secção, no ficheiro Release %s" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Falhou definir hora de modificação" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Nenhuma entrada hash no ficheiro Release %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI inválido, URIs locais não devem começar por //" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrada inválida, 'Valid-until', no ficheiro de Release: %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "A identificar-se no sistema" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrada, 'Date', inválida no ficheiro Release %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Não foi possível determinar o nome do posto" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Não foi possível determinar o nome local" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Linha mal formada %lu na lista de fontes %s ([opção] não interpretável)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "O servidor recusou a ligação e respondeu: %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Linha mal formada %lu na lista de fontes %s ([opção] demasiado curta)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER falhou, o servidor respondeu: %s" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Linha mal formada %lu na lista de fontes %s ([%s] não é uma atribuição)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS falhou, o servidor respondeu: %s" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Linha mal formada %lu na lista de fontes %s ([%s] não tem chave)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Foi especificado um servidor de proxy mas não um script de login, Acquire::" -"ftp::ProxyLogin está vazio." +"Linha mal formada %lu na lista de fontes %s ([%s] chave %s não tem valor)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "O comando de script de login '%s' falhou, o servidor respondeu: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Linha mal formada %lu na lista de fontes %s (URI)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE falhou, o servidor respondeu: %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Linha mal formada %lu na lista de fontes %s (distribuição)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Foi atingido o tempo limite de ligação" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "O servidor fechou a ligação" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Linha mal formada %lu na lista de fontes %s (distribuição absoluta)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Erro de leitura" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Linha mal formada %lu na lista de fontes %s (dist parse)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Uma resposta sobrecarregou o buffer." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "A abrir %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corrupção de protocolo" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Linha mal formada %u na lista de fontes %s (tipo)" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Erro de escrita" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Não foi possível criar um socket" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Não foi possível ligar socket de dados, a ligação expirou" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "A instalar %s" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Falhou" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "A configurar %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Não foi possível ligar socket passivo." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo não foi capaz de obter um socket de escuta" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Não foi possível fazer o bind a um socket" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Não foi possível executar listen no socket" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Não foi possível determinar o nome do socket" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Não foi possível enviar o comando PORT" - -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Família de endereços %u desconhecida (AF_*)" +msgid "Removing %s" +msgstr "A remover %s" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falhou, o servidor respondeu: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Ligação de socket de dados expirou" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Impossível aceitar ligação" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema ao calcular o hash do ficheiro" +msgid "Completely removing %s" +msgstr "A remover completamente %s" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Não foi possível obter o ficheiro, o servidor respondeu '%s'" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Expirou o tempo do socket de dados" +msgid "Noting disappearance of %s" +msgstr "A notar o desaparecimento de %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "A transferência de dados falhou, o servidor respondeu '%s'" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Pesquisa" +msgid "Running post-installation trigger %s" +msgstr "A correr o 'trigger' de pós-instalação %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Não foi possível invocar " +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Falta o directório '%s'" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Connecting to %s (%s)" -msgstr "A Ligar a %s (%s)" +msgid "Could not open file '%s'" +msgstr "Não foi possível abrir ficheiro o '%s'" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Preparing %s" +msgstr "A preparar %s" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:990 #, 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)" +msgid "Unpacking %s" +msgstr "A desempacotar %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Não posso iniciar a ligação para %s:%s (%s)." +msgid "Preparing to configure %s" +msgstr "A preparar para configurar %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:997 #, 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" +msgid "Installed %s" +msgstr "%s instalado" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Não foi possível ligar em %s:%s (%s)." +msgid "Preparing for removal of %s" +msgstr "A preparar a remoção de %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Connecting to %s" -msgstr "A ligar a %s" +msgid "Removed %s" +msgstr "%s removido" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not resolve '%s'" -msgstr "Não foi possível resolver '%s'" +msgid "Preparing to completely remove %s" +msgstr "A preparar para remover completamente %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Falha temporária a resolver '%s'" +msgid "Completely removed %s" +msgstr "Remoção completa de %s" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" +msgid "Can not write log (%s)" +msgstr "Não conseguiu escrever para %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)" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Não foi possível ligar a %s:%s:" +msgid "Waited for %s but it wasn't there" +msgstr "Esperou por %s mas não estava lá" -#: methods/gpgv.cc:168 +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "A operação foi interrompida antes de poder terminar" + +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Nenhum relatório apport escrito pois MaxReports já foi atingido" + +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemas de dependências - deixando por configurar" + +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Erro interno: Assinatura válida, mas não foi possível determinar a impressão " -"digital da chave?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Pelo menos uma assinatura inválida foi encontrada." +"Nenhum relatório apport escrito pois a mensagem de erro indica que é um erro " +"de seguimento de um erro anterior." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -"Não foi possível executar 'gpgv' para verificar a assinatura (o gpgv está " -"instalado?)" +"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " +"cheio" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#: apt-pkg/deb/dpkgpm.cc:1651 msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" +"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de " +"memória esgotada" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Erro desconhecido ao executar gpgv" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " +"cheio" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "As seguintes assinaturas eram inválidas:\n" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de I/" +"O do dpkg" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/debsystem.cc:91 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Unable to lock the administration directory (%s), is another process using " +"it?" msgstr "" -"As seguintes assinaturas não puderam ser verificadas porque a chave pública " -"não está disponível:\n" +"Não foi possível obter acesso exclusivo ao directório de administração (%s), " +"outro processo está a utilizá-lo?" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Ficheiros vazios não podem ser arquivos válidos" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Não foi possível criar acesso exclusivo ao directório de administração (%s), " +"é root?" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Erro ao escrever para o ficheiro" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"O dpkg foi interrompido, para corrigir o problema tem de correr manualmente " +"'%s'" -#: methods/http.cc:523 -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:525 -msgid "Error reading from server" -msgstr "Erro ao ler do servidor" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Erro ao escrever para ficheiro" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "A selecção falhou" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "O tempo da ligação expirou" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Erro ao escrever para o ficheiro de saída" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "A aguardar por cabeçalhos" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Linha de cabeçalho errada" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Sem acesso exclusivo" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "O servidor HTTP enviou um cabeçalho Content-Length inválido" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "O servidor HTTP enviou um cabeçalho Content-Range inválido" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Este servidor HTTP possui suporte de range errado" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de data desconhecido" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "A selecção %s não foi encontrada" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Dados de cabeçalho errados" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Não está a ser utilizado acesso exclusivo para apenas leitura ao ficheiro %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "A ligação falhou" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Não foi possível abrir ficheiro de lock %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Erro interno" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Não está a ser utilizado o acesso exclusivo para o ficheiro %s, montado via " +"nfs" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "A calcular a actualização... " +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Não foi possível obter acesso exclusivo a %s" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Erro Interno, AllUpgrade estragou algo" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" +"Lista de ficheiros que não podem ser criados porque '%s' não é um directório" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Pronto" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "A ignorar '%s' no directório '%s' porque não é um ficheiro normal" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" +"A ignorar o ficheiro '%s' no directório '%s' porque não tem extensão no nome " +"do ficheiro" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" +"A ignorar o ficheiro '%s' no directório '%s' porque tem uma extensão " +"inválida no nome do ficheiro" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Sub-process %s received a segmentation fault." +msgstr "O sub-processo %s recebeu uma falha de segmentação." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "A corrigir dependências..." +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "O sub-processo %s recebeu o sinal %u." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falhou." +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "O sub-processo %s retornou um código de erro (%u)" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Não foi possível corrigir dependências" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "O sub-processo %s terminou inesperadamente" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Não foi possível minimizar o conjunto de actualizações" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Erro de escrita" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Feito" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema ao fechar o ficheiro gzip %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Você pode querer executar 'apt-get -f install' para corrigir isso." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Não foi possível abrir ficheiro o %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependências não satisfeitas. Tente utilizar -f." +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Não foi possível abrir o descritor de ficheiro %d" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Falhou criar subprocesso IPC" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Falhou executar compactador " -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Erro de leitura" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "lidos, ainda restam %llu para serem lidos mas não resta nenhum" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escritos, ainda restam %llu para escrever mas não foi possível" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problema ao fechar o ficheiro %s" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Problem renaming the file %s to %s" +msgstr "Problema ao renomear o ficheiro %s para %s" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problema ao remover o link do ficheiro %s" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Os pacotes a seguir têm dependências não satisfeitas:" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problema sincronizando o ficheiro" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is installed" -msgstr "mas %s está instalado" +msgid "%c%s... Error!" +msgstr "%c%s... Erro !" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "but %s is to be installed" -msgstr "mas %s está para ser instalado" +msgid "%c%s... Done" +msgstr "%c%s... Pronto" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "mas não é instalável" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "mas é um pacote virtual" - -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "mas não está instalado" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Pronto" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "mas não vai ser instalado" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Não é possível fazer mmap a um ficheiro vazio" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " ou" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Não foi possível duplicar o descritor de ficheiro %i" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Serão instalados os seguintes NOVOS pacotes:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Não foi possível fazer mmap de %llu bytes" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Serão REMOVIDOS os seguintes pacotes:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Não foi possível fechar mmap" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Serão mantidos em suas versões actuais os seguintes pacotes:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Não foi sincronizar mmap " -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Serão actualizados os seguintes pacotes:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Não foi possível fazer mmap de %lu bytes" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Será feito o DOWNGRADE aos seguintes pacotes:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falhou truncar o ficheiro" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Os seguintes pacotes mantidos serão mudados:" +#: 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 "" +"O Dynamic MMap ficou sem espaço. Por favor aumente o tamanho de APT::Cache-" +"Start. Valor actual: %lu. (man 5 apt.conf)" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (devido a %s) " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Não foi possível aumentar o tamanho do MMap pois o limite de %lu bytes já " +"foi alcançado." -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"AVISO: Os seguintes pacotes essenciais serão removidos.\n" -"Isso NÃO deverá ser feito a menos que saiba exactamente o que está a fazer!" +"Não foi possível aumentar o tamanho do MMap pois o crescimento automático " +"está desabilitado pelo utilizador." -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, " +msgid "Unable to stat the mount point %s" +msgstr "Impossível executar stat ao ponto de montagem %s" + +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Impossível executar stat ao cdrom" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviatura de tipo desconhecida: '%c'" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu downgraded, " -msgstr "%lu a que foi feito o downgrade, " +msgid "Opening configuration file %s" +msgstr "A abrir o ficheiro de configuração %s" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu a remover e %lu não actualizados.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Erro de sintaxe %s:%u: O bloco começa sem nome." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pacotes não totalmente instalados ou removidos.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Erro de sintaxe %s:%u: Tag mal formada" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "s/N]" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Erro de sintaxe %s:%u: Directivas só podem ser feitas no nível mais alto" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Erro de sintaxe %s:%u: Demasiados includes encadeados" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "Regex compilation error - %s" -msgstr "Erro de compilação de regex - %s" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "O comando update não leva argumentos" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Erro de sintaxe %s:%u: directiva clara necessita de uma árvore de opções " +"como argumento" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Erro de sintaxe %s:%u: Lixo extra no final do ficheiro" -#: apt-private/private-show.cc:156 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "No keyring installed in %s." +msgstr "Nenhum keyring instalado em %s." -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opção '%c' da linha de comandos [de %s] é desconhecida." -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opção %s de linha de comandos não é compreendida" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado." +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opção %s da linha de comandos não é booleana" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Erro Interno, Ordering não terminou" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "A opção %s necessita de um argumento." -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Estranho... Os tamanhos não coincidiram, escreva para apt@packages.debian.org" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opção %s: Especificação de item de configuração tem de ter um =<val>." -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "É necessário obter %sB/%sB de arquivos.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opção %s necessita de um número inteiro como argumento, não '%s'" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "É necessário obter %sB de arquivos.\n" +msgid "Option '%s' is too long" +msgstr "Opção '%s' é demasiado longa" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Após esta operação, serão utilizados %sB adicionais de espaço em disco.\n" +msgid "Sense %s is not understood, try true or false." +msgstr "O sentido %s não é compreendido, tente verdadeiro ou falso." -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -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" +msgid "Invalid operation %s" +msgstr "Operação %s inválida" -#: apt-private/private-install.cc:199 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Você não possui espaço livre suficiente em %s." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "O pacote %s versão %s tem uma dependência não satisfeita:\n" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Há problemas e foi utilizado -y sem --force-yes" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Total de nomes de pacotes: " -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -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-cache.cc:279 +msgid "Total package structures: " +msgstr "Total de estruturas de pacotes: " -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Sim, faça como eu digo!" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pacotes normais: " -#: apt-private/private-install.cc:221 -#, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Você está prestes a fazer algo potencialmente nocivo.\n" -"Para continuar escreva a frase '%s'\n" -" ?] " - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Abortado." +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pacotes virtuais puros: " -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Deseja continuar?" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pacotes virtuais únicos: " -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Falhou o download de alguns ficheiros" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pacotes virtuais misturados: " -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Não foi possível obter alguns arquivos, tente talvez correr apt-get update " -"ou tente com --fix-missing?" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Faltam: " -#: apt-private/private-install.cc:323 -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-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Total de versões distintas: " -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Não foi possível corrigir os pacotes em falta." +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Total de descrições distintas: " -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "A abortar a instalação." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Total de dependências: " -#: apt-private/private-install.cc:365 -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] "" -"O seguinte pacote desapareceu do seu sistema pois\n" -"todos os ficheiros foram sobrescritos por outros pacotes:" -msgstr[1] "" -"Os seguintes pacotes desapareceram do seu sistema pois\n" -"todos os ficheiros foram por outros pacotes:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Total de relações ver/ficheiro: " -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg." +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Total de relações Desc/Ficheiro: " -#: apt-private/private-install.cc:390 -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-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Total de Mapeamentos 'Provides': " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, parece que o AutoRemover destruiu algo que realmente não deveria ter\n" -"acontecido. Por favor arquive um relatório de bug contra o apt." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Total de strings globbed: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "A seguinte informação pode ajudar a resolver a situação:" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espaço total de dependência de versão: " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Erro Interno, o AutoRemover estragou coisas" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Espaço total desperdiçado: " -#: apt-private/private-install.cc:512 -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] "" -"O seguinte pacote foi instalado automaticamente e já não é necessário:" -msgstr[1] "" -"Os seguintes pacotes foram instalados automaticamente e já não são " -"necessários:" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Espaço total contabilizado: " -#: apt-private/private-install.cc:516 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, 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] "O pacote %lu foi instalado automaticamente e já não é necessário.\n" -msgstr[1] "" -"Os pacotes %lu foram instalados automaticamente e já não são necessários.\n" - -#: apt-private/private-install.cc:518 -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." +msgid "Package file %s is out of sync." +msgstr "O ficheiro do pacote %s está dessincronizado." -#: apt-private/private-install.cc:612 -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-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Não foi encontrado nenhum pacote" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote " -"(ou especifique uma solução)." +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Tem de fornecer pelo menos um padrão de busca" -#: apt-private/private-install.cc:628 -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." +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Alguns pacotes não puderam ser instalados. Isso pode significar que\n" -"você solicitou uma situação impossível ou se você está a usar a\n" -"distribuição unstable em que alguns pacotes pedidos ainda não foram \n" -"criados ou foram movidos do Incoming." - -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Pacotes estragados" - -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Os seguintes pacotes extra serão instalados:" +"Este comando foi depreceado. Em vez disso por favor utilize 'apt-mark " +"showauto'." -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Pacotes sugeridos:" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Ficheiros de Pacotes :" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Pacotes recomendados:" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"A cache está dessincronizada, não pode x-referenciar um ficheiro de pacote" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Saltando %s, já está instalado e a actualização não está definida.\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pacotes Marcados:" -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Saltando %s, não está instalado e só são pedidas actualizações.\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(não encontrado)" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"A reinstalação de %s não é possível, o download do mesmo não pode ser " -"feito.\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalado: " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s já está na versão mais recente.\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versão seleccionada '%s' (%s) para '%s'\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nenhum)" -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versão seleccionada '%s' (%s) para '%s' devido a '%s'\n" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Marcação do Pacote: " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"O pacote '%s' não está instalado, por isso não será removido. Queria dizer " -"'%s'?\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabela de Versão:" -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "O pacote '%s' não está instalado, por isso não será removido\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado em %s %s\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 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 "" -"NOTE:\tIsto é apenas uma simulação!\n" -"\to apt-get necessita de privilégios de root para a execução real.\n" -"\tTenha em mente que o acesso exclusivo está desabilitado,\n" -"\tpor isso não confie na relevância da real situação actual!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Aviso de autenticação ultrapassado.\n" +"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 "" +"Utilização: apt-cache [opções] comando\n" +" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n" +" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n" +"\n" +"O apt-cache é uma ferramenta de baixo nível utilizada para questionar\n" +" informação dos ficheiros de cache binários do APT\n" +"\n" +"Comandos:\n" +" gencaches - Construir as caches de pacotes e de código-fonte\n" +" showpkg - Mostrar informações gerais sobre um pacote\n" +" showsrc - Mostrar registos de código-fonte\n" +" stats - Mostrar algumas estatísticas simples\n" +" dump - Mostrar todo o ficheiro de forma concisa\n" +" dumpavail - Escrever um ficheiro disponível para stdout\n" +" unmet - Mostrar dependências não satisfeitas\n" +" search - Procurar na lista de pacotes por um padrão regex\n" +" show - Mostrar um registo legível sobre o pacote\n" +" depends - Mostrar informações em bruto de dependências de um pacote\n" +" rdepends - Mostrar a informação de dependências inversas de um pacote\n" +" pkgnames - Listar o nome de todos os pacotes no sistema\n" +" dotty - Gerar gráficos de pacotes para o GraphViz\n" +" xvcg - Gerar gráficos de pacotes para o xvcg\n" +" policy - Mostrar as configurações de políticas\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda.\n" +" -p=? A cache de pacotes.\n" +" -s=? A cache de fontes.\n" +" -q Desabilitar o indicador de progresso.\n" +" -i Mostrar apenas dependências importantes para o comando unmet.\n" +" -c=? Ler este ficheiro de configuração.\n" +" -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" +"tmp\n" +"Para mais informações veja as páginas do manual apt-cache(8) e apt.conf(5).\n" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Alguns pacotes não puderam ser autenticados" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Por favor indique um nome para este Disco, tal como 'Debian 5.0.3 Disco 1'" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalar estes pacotes sem verificação?" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Por favor insira um Disco no leitor e pressione enter" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Falhou obter %s %s\n" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Falha ao baixar %s %s\n" +msgid "Failed to mount '%s' to '%s'" +msgstr "Falhou ao montar '%s' para '%s'" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repita este processo para o resto dos CDs no seu conjunto." + +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "os argumentos não estão em pares" + +#: cmdline/apt-config.cc:89 +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 "" +"Utilização: apt-config [opções] comando\n" +"\n" +"O apt-config é uma ferramenta simples para ler o ficheiro de config do APT\n" +"\n" +"Comandos:\n" +" shell - Modo shell\n" +" dump - Mostrar a configuração\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda.\n" +" -c=? Ler este ficheiro de configuração\n" +" -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" +"tmp\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Hit " +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Obter:" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-get.cc:367 +#, 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" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorar a versão '%s', não disponível, do pacote '%s'" + +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Obtidos %sB em %s (%sB/s)\n" +msgid "Couldn't find package %s" +msgstr "Impossível encontrar o pacote %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid " [Working]" -msgstr " [A trabalhar]" +msgid "%s set to manually installed.\n" +msgstr "%s está definido para ser instalado manualmente.\n" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s está definido para ser instalado automaticamente.\n" + +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"Troca de mídia: Por favor insira o disco chamado\n" -" '%s'\n" -"no leitor '%s' e pressione enter\n" +"Este comando foi depreceado. Em vez disso, por favor utilize 'apt-mark auto' " +"e 'apt-mark manual'." -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Não foi possível ler %s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Erro Interno, o solucionador de problemas estragou coisas" + +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Impossível criar acesso exclusivo ao directório de downloads" + +#: cmdline/apt-get.cc:726 +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" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Unable to change to %s" -msgstr "Impossível mudar para %s" +msgid "Unable to find a source package for %s" +msgstr "Não foi possível encontrar um pacote de código fonte para %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:786 #, c-format -msgid "No mirror file '%s' found " -msgstr "Não foi encontrado ficheiro de mirror '%s'" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"AVISO: o empacotamento de '%s' é mantido no sistema de controle de versões " +"'%s' em:\n" +"%s\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Não pode ler ficheiro de mirror '%s'" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Por favor utilize:\n" +"bzr branch %s\n" +"para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Não pode ler ficheiro de mirror '%s'" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "A saltar o ficheiro '%s', já tinha sido feito download'\n" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "[Mirror: %s]" -msgstr "[Mirror: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Falha ao criar pipe IPC para subprocesso" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Ligação encerrada prematuramente" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configuração pré-definida errada!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Carregue em enter para continuar." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Deseja apagar quaisquer ficheiros .deb obtidos previamente?" - -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Ocorreram alguns erros ao descompactar. Os pacotes que foram instalados" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "serão configurados. Isto pode resultar em erros duplicados" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "causados por dependências em falta. Isto está OK, somente os erros" - -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"acima desta mensagem são importantes. Por favor resolva-os e execute " -"[I]nstalar novamente" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "A juntar a informação disponível" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode chamado em nó ainda linkado" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Falha ao localizar o elemento de hash!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Falha ao alocar desvio (diversion)" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Erro Interno em AddDiversion" +msgid "Couldn't determine free space in %s" +msgstr "Não foi possível determinar o espaço livre em %s" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "A tentar sobrescrever um desvio, %s -> %s e %s/%s" +msgid "You don't have enough free space in %s" +msgstr "Você não possui espaço livre suficiente em %s" -#: apt-inst/filelist.cc:506 +#. 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:891 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Adição dupla de desvio %s -> %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "É necessário obter %sB/%sB de arquivos de código fonte.\n" -#: apt-inst/filelist.cc:549 +#. 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:896 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Arquivo de configuração duplicado %s/%s" +msgid "Need to get %sB of source archives.\n" +msgstr "É necessário obter %sB de arquivos de código fonte.\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The path %s is too long" -msgstr "O caminho %s é demasiado longo" +msgid "Fetch source %s\n" +msgstr "Obter código fonte %s\n" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "A descompactar %s mais de uma vez" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Falhou obter alguns arquivos." -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "O directório %s é desviado" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Download completo e em modo de fazer apenas o download" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:950 #, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "O caminho de desvio é muito longo" +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" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Failed to stat %s" -msgstr "Falha stat %s" +msgid "Unpack command '%s' failed.\n" +msgstr "O comando de descompactação '%s' falhou.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Falhou renomear %s para %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:991 #, 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" +msgid "Build command '%s' failed.\n" +msgstr "O comando de compilação '%s' falhou.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Falhou localizar o nó no seu hash bucket" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "O processo filho falhou" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "O caminho é demasiado longo" +#: cmdline/apt-get.cc:1029 +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" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Substituir o pacote correspondente sem versão para %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Nenhuma informação de arquitectura disponível para %s. Para configuração " +"veja apt.conf(5) APT::Architectures" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, 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" +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" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Unable to stat %s" -msgstr "Não foi possível fazer stat %s" +msgid "%s has no build depends.\n" +msgstr "%s não tem dependências de compilação.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Failed to write file %s" -msgstr "Falhou escrever o ficheiro %s" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"a dependência de %s por %s não pode ser satisfeita porque %s não é permitido " +"em pacotes '%s'" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Failed to close file %s" -msgstr "Falhou fechar o ficheiro %s" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"a dependência de %s para %s não pôde ser satisfeita porque o pacote %s não " +"pôde ser encontrado" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Este não é um arquivo DEB válido, falta o membro '%s'" +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" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Erro Interno, não foi possível localizar o membro %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ficheiro de controle não interpretável" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +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" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Assinatura de arquivo inválida" +#: cmdline/apt-get.cc:1357 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"a dependência de %s para %s não pode ser satisfeita porque o pacote %s não " +"tem versão candidata" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Erro na leitura de cabeçalho membro de arquivo" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Falha ao satisfazer a dependência %s para %s: %s" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Invalid archive member header %s" -msgstr "Cabeçalho membro de arquivo inválido %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Não foi possível satisfazer as dependências de compilação para %s." -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabeçalho membro de arquivo inválido" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Falhou processar as dependências de compilação" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arquivo é demasiado pequeno" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Changlog para %s (%s)" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Falha ao ler os cabeçalhos do arquivo" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Falhou a criação de pipes" - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Falhou executar gzip " - -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arquivo corrompido" - -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "A soma de controlo do tar falhou, arquivo corrompido" - -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Não foi possível fazer stat %s." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Módulos Suportados:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1632 +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 "" +"Utilização: apt-get [opções] comando\n" +" apt-get [opções] install|remove pacote1 [pacote2 ...]\n" +" apt-get [opções] source pacote1 [pacote2 ...]\n" +"\n" +"O apt-get é um interface simples de linha de comandos para obter\n" +"e instalar pacotes. Os comandos utilizados mais frequentemente\n" +"são update e install.\n" +"\n" +"Comandos:\n" +" update - Obter novas listas de pacotes\n" +" upgrade - Executar uma actualização\n" +" install - Instalar novos pacotes (o pacote é libc6 e não libc6.deb)\n" +" remove - Remover pacotes\n" +" autoremove - Remover automaticamente todos os pacotes não utilizados\n" +" purge - Remover pacotes e ficheiros de configuração\n" +" source - Fazer o download de arquivos de código-fonte\n" +" build-dep - Configurar as dependências de compilação de pacotes de código-" +"fonte\n" +" dist-upgrade - Actualizar a distribuição, veja apt-get(8)\n" +" dselect-upgrade - Seguir as escolhas feitas no dselect\n" +" clean - Apagar ficheiros de arquivo obtidos por download\n" +" autoclean - Apagar ficheiros de arquivo antigos obtidos por download\n" +" check - Verificar se existem dependências erradas\n" +" changelog - Obter e mostrar o changelog de um pacote\n" +" download - Obter o pacote binário para o directório actual\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda\n" +" -q Saída para registo - sem indicador de progresso\n" +" -qq Sem saída, excepto para erros\n" +" -d Fazer apenas o download - NÃO instalar ou descompactar arquivos\n" +" -s Não agir. Executar simulação de ordens\n" +" -y Assumir Sim para todas as perguntas e não fazer perguntas\n" +" -f Tentar corrigir um sistema com dependências erradas\n" +" -m Tentar continuar se os arquivos não poderem ser localizados\n" +" -u Mostrar também uma lista de pacotes actualizados\n" +" -b Construir o pacote de código-fonte depois de o obter\n" +" -V Mostrar números da versão detalhados\n" +" -c=? Ler este ficheiro de configuração\n" +" -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/" +"tmp\n" +"Para mais informações e opções veja as páginas do manual\n" +"apt-get(8), sources.list(5) e apt.conf(5)\n" +" Este APT tem Poderes de Super Vaca.\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "A correr o dpkg" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Tem de especificar pelo menos um pacote para obter o código fonte de" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Sistema de empacotamento '%s' não é suportado" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Não foi possível determinar um tipo de sistema de empacotamento adequado" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Wrote %i records.\n" -msgstr "Escreveu %i registos.\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s não pode ser marcado pois não está instalado.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Escreveu %i registos com %i ficheiros em falta.\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s já estava definido para ser instalado manualmente.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s já estava definido para ser instalado automaticamente.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Escreveu %i registos com %i ficheiros em falta e %i ficheiros não " -"coincidentes\n" +msgid "%s was already set on hold.\n" +msgstr "%s já estava marcado para manter.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Não foi possível encontrar registo de autenticação para: %s" +msgid "%s was already not hold.\n" +msgstr "%s já estava para não manter.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash não coincide para: %s" +msgid "%s set on hold.\n" +msgstr "%s marcado para manter.\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "The method driver %s could not be found." -msgstr "O driver do método %s não pôde ser encontrado." - -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" +msgid "Canceled hold on %s.\n" +msgstr "Cancelou manter em %s.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Método %s não iniciou correctamente" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Falhou executar dpkg. É root?" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"Por favor insira o disco denominado: '%s' no leitor '%s' e pressione enter." +"Utilização: apt-mark [opções] {auto|manual} pacote1 [pacote2...]\n" +"\n" +"apt-mark é um interface simples de linha de comandos para marcar pacotes " +"como instalados de forma manual ou automática. Pode também listar " +"marcações.\n" +"\n" +"Comandos:\n" +" auto - Marca os pacotes como instalados automaticamente\n" +" manual - Marca os pacotes como instalados manualmente\n" +"\n" +"Opções:\n" +" -h\tEste texto de ajuda.\n" +" -q\tSaída para registo - sem indicador de progresso\n" +" -qq Sem saída excepto para erros\n" +" -s\tNão fazer. Apenas escreve o que seria feito.\n" +" -f\tler/escrever marcação auto/manual no ficheiro indicado\n" +" -c=? Ler este ficheiro de configuração\n" +" -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/" +"tmp\n" +"Para mais informações veja as páginas apt-mark(8) e apt.conf(5) do manual." -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"As listas de pacotes ou o ficheiro de status não pôde ser analisado ou " -"aberto." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Você terá que executar apt-get update para corrigir estes problemas" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "A lista de fontes não pôde ser lida." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache de pacotes vazia" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "O ficheiro de cache de pacotes está corrompido" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "O ficheiro de cache de pacotes é de uma versão incompatível" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "O ficheiro de cache de pacotes está corrompido, é demasiado pequeno" - -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Este APT não suporta o sistema de versões '%s'" - -#: apt-pkg/pkgcache.cc:179 -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:321 -msgid "Depends" -msgstr "Depende" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pré-Depende" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugere" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomenda" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Em Conflito" +msgid "Unable to read the cdrom database %s" +msgstr "Não foi capaz de ler a base de dados de cdrom %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Substitui" +#: 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 "" +"Por favor utilize o apt-cdrom para fazer com que este CD seja reconhecido " +"pelo APT. apt-get update não pode ser utilizado para adicionar novos CDs" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Obsoleta" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD errado" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Estraga" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Impossível desmontar o CD-ROM em %s, pode ainda estar a ser utilizado." -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Aumenta" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco não encontrado." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Ficheiro não encontrado" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "necessário" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Falhou o stat" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "padrão" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Falhou definir hora de modificação" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI inválido, URIs locais não devem começar por //" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "A identificar-se no sistema" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Tipo do ficheiro de índice '%s' não é suportado" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Não foi possível determinar o nome do posto" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "A cache possui um sistema de versões incompatível" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Não foi possível determinar o nome local" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Ocorreu um erro ao processar %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " -"suportar." - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Uau, você excedeu o número de versões que este APT é capaz de suportar." +msgid "The server refused the connection and said: %s" +msgstr "O servidor recusou a ligação e respondeu: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Uau, você excedeu o número de descrições que este APT é capaz de suportar." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER falhou, o servidor respondeu: %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS falhou, o servidor respondeu: %s" + +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Uau, você excedeu o número de dependências que este APT é capaz de suportar." +"Foi especificado um servidor de proxy mas não um script de login, Acquire::" +"ftp::ProxyLogin está vazio." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, 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" +msgid "Login script command '%s' failed, server said: %s" +msgstr "O comando de script de login '%s' falhou, o servidor respondeu: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, 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" +msgid "TYPE failed, server said: %s" +msgstr "TYPE falhou, o servidor respondeu: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "A ler as listas de pacotes" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Foi atingido o tempo limite de ligação" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "A obter File Provides" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "O servidor fechou a ligação" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Não conseguiu escrever para %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Uma resposta sobrecarregou o buffer." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Erro de I/O ao gravar a cache de código fonte" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corrupção de protocolo" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Enviar cenário a resolver" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Não foi possível criar um socket" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Enviar pedido para resolvedor" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Não foi possível ligar socket de dados, a ligação expirou" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Preparar para receber solução" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falhou" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "O resolvedor externo falhou sem uma mensagem de erro adequada" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Não foi possível ligar socket passivo." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Executar resolvedor externo" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo não foi capaz de obter um socket de escuta" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falhou renomear, %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Não foi possível fazer o bind a um socket" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Código de verificação hash não coincide" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Não foi possível executar listen no socket" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Tamanho incorrecto" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Não foi possível determinar o nome do socket" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operação %s inválida" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Não foi possível enviar o comando PORT" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Incapaz de encontrar a entrada '%s' esperada no ficheiro Release (entrada " -"errada em sources.list ou ficheiro malformado)" +msgid "Unknown address family %u (AF_*)" +msgstr "Família de endereços %u desconhecida (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Não foi possível encontrar hash sum para '%s' no ficheiro Release" +msgid "EPRT failed, server said: %s" +msgstr "EPRT falhou, o servidor respondeu: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Não existe qualquer chave pública disponível para as seguintes IDs de " -"chave:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Ligação de socket de dados expirou" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"O ficheiro Release para %s está expirado (inválido desde %s). Não serão " -"aplicadas as actualizações para este repositório." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossível aceitar ligação" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema ao calcular o hash do ficheiro" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Ocorreu um erro durante a verificação da assinatura. O repositório não está " -"actualizado e serão utilizados os ficheiros anteriores de índice. Erro do " -"GPG: %s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Não foi possível obter o ficheiro, o servidor respondeu '%s'" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Expirou o tempo do socket de dados" + +#: methods/ftp.cc:935 #, c-format -msgid "GPG error: %s: %s" -msgstr "Erro GPG: %s: %s" +msgid "Data transfer failed, server said '%s'" +msgstr "A transferência de dados falhou, o servidor respondeu '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Pesquisa" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Não foi possível invocar " -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:76 #, 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 "" -"Não foi possível localizar um ficheiro para o pacote %s. Isto pode " -"significar que você precisa corrigir manualmente este pacote. (devido a " -"arquitectura em falta)" +msgid "Connecting to %s (%s)" +msgstr "A Ligar a %s (%s)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:87 #, 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'" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:94 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: " -"para o pacote %s." +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)" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:100 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "O bloco de fabricante %s não contém a impressão digital" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Não posso iniciar a ligação para %s:%s (%s)." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:108 #, c-format -msgid "List directory %spartial is missing." -msgstr "Falta directório de listas %spartial." +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" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:126 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta o directório de arquivos %spartial." +msgid "Could not connect to %s:%s (%s)." +msgstr "Não foi possível ligar em %s:%s (%s)." -#: apt-pkg/acquire.cc:99 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Unable to lock directory %s" -msgstr "Impossível criar acesso exclusivo ao directório %s" +msgid "Connecting to %s" +msgstr "A ligar a %s" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "A obter o ficheiro %li de %li (%s restantes)" +msgid "Could not resolve '%s'" +msgstr "Não foi possível resolver '%s'" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:205 #, c-format -msgid "Retrieving file %li of %li" -msgstr "A obter o ficheiro %li de %li" +msgid "Temporary failure resolving '%s'" +msgstr "Falha temporária a resolver '%s'" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Falhou o download de alguns ficheiros de índice. Foram ignorados ou os " -"antigos foram usados em seu lugar." +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Você deve colocar alguns URIs 'source' no seu sources.list" +#: 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)" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Não foi possível ligar a %s:%s:" + +#: methods/gpgv.cc:168 msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"O valor '%s' é inválido para APT::Default-Release porque tal lançamento não " -"está disponível nas fontes" - -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Registo inválido no ficheiro de preferências %s, sem cabeçalho Package" +"Erro interno: Assinatura válida, mas não foi possível determinar a impressão " +"digital da chave?!" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Não foi possível entender o tipo de marca (pin) %s" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Pelo menos uma assinatura inválida foi encontrada." -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Não foi possível executar 'gpgv' para verificar a assinatura (o gpgv está " +"instalado?)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" 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:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Não pode configurar '%s'. " +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Erro desconhecido ao executar gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "As seguintes assinaturas eram inválidas:\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Esta execução da instalação irá necessitar de remover temporariamente o " -"pacote essencial %s devido a um loop de Conflitos/Pré-Dependências. Isto " -"normalmente é mau, mas se você quer realmente fazer isso, active a opção " -"APT::Force-LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Linha %u é demasiado longa na lista de fontes %s." +"As seguintes assinaturas não puderam ser verificadas porque a chave pública " +"não está disponível:\n" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "A desmontar o CD-ROM...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Ficheiros vazios não podem ser arquivos válidos" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "A utilizar o ponto de montagem do CD-ROM %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Erro ao escrever para o ficheiro" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "A aguardar pelo disco...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Erro ao ler do servidor. O lado remoto fechou a ligação" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "A montar o CD-ROM...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Erro ao ler do servidor" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "A identificar... " +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Erro ao escrever para ficheiro" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Label Guardada: %s \n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "A selecção falhou" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "A pesquisar os ficheiros de índice do disco...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "O tempo da ligação expirou" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Foram encontrados %zu índices de pacotes, %zu índices de código-fonte, %zu " -"índices de tradução e %zu assinaturas\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Erro ao escrever para o ficheiro de saída" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Não foi possível localizar quaisquer ficheiros de pacote, talvez este não " -"seja um disco Debian ou seja a arquitectura errada?" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "A aguardar por cabeçalhos" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Encontrada a etiqueta '%s'\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Linha de cabeçalho errada" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Isso não é um nome válido, tente novamente.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Este disco tem o nome: \n" -"'%s'\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "O servidor HTTP enviou um cabeçalho Content-Length inválido" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "A copiar listas de pacotes..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "O servidor HTTP enviou um cabeçalho Content-Range inválido" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "A escrever lista de novas source\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Este servidor HTTP possui suporte de range errado" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "As entradas de listas de Source para este Disco são:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de data desconhecido" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"O pacote %s necessita ser reinstalado, mas não foi possível encontrar um " -"repositório para o mesmo." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Dados de cabeçalho errados" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " -"pacotes mantidos (hold)." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "A ligação falhou" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" -"Não foi possível corrigir problemas, você tem pacotes mantidos (hold) " -"estragados." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Erro interno" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "A construir árvore de dependências" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "A calcular a actualização... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versões candidatas" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Pronto" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Geração de dependências" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "A ler a informação de estado" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Falhou abrir o StateFile %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Falha escrever ficheiro temporário StateFile %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "A corrigir dependências..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Não foi possível fazer parse ao ficheiro do pacote %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " falhou." + +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Não foi possível corrigir dependências" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Não foi possível fazer parse ao ficheiro de pacote %s (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Não foi possível minimizar o conjunto de actualizações" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Não foi encontrado o Release '%s' para '%s'" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Feito" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Não foi encontrada a versão '%s' para '%s'" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Você pode querer executar 'apt-get -f install' para corrigir isso." -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Não foi possível encontrar a tarefa '%s'" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependências não satisfeitas. Tente utilizar -f." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" +msgid "[installed,upgradable to: %s]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Não foi possível seleccionar versões do pacote '%s' pois é puramente virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Não pode seleccionar a versão instalada nem a versão candidata do pacote " -"'%s' pois não tem nenhuma destas" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Não foi possível seleccionar a versão mais recente a partir do pacote '%s' " -"já que é puramente virtual" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Não é possível seleccionar a versão candidata do pacote %s já que não tem " -"candidato" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Não é possível seleccionar a versão instalada do pacote %s pois não está " -"instalado" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Não foi possível fazer parse ao ficheiro Release %s" +msgid "but %s is installed" +msgstr "mas %s está instalado" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Nenhuma secção, no ficheiro Release %s" +msgid "but %s is to be installed" +msgstr "mas %s está para ser instalado" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Nenhuma entrada hash no ficheiro Release %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mas não é instalável" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Entrada inválida, 'Valid-until', no ficheiro de Release: %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mas é um pacote virtual" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Entrada, 'Date', inválida no ficheiro Release %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mas não está instalado" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mas não vai ser instalado" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Linha mal formada %lu na lista de fontes %s ([opção] não interpretável)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ou" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Linha mal formada %lu na lista de fontes %s ([opção] demasiado curta)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Os pacotes a seguir têm dependências não satisfeitas:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Linha mal formada %lu na lista de fontes %s ([%s] não é uma atribuição)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Serão instalados os seguintes NOVOS pacotes:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Linha mal formada %lu na lista de fontes %s ([%s] não tem chave)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Serão REMOVIDOS os seguintes pacotes:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Serão mantidos em suas versões actuais os seguintes pacotes:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Serão actualizados os seguintes pacotes:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Será feito o DOWNGRADE aos seguintes pacotes:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Os seguintes pacotes mantidos serão mudados:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%s (due to %s) " +msgstr "%s (devido a %s) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Linha mal formada %lu na lista de fontes %s ([%s] chave %s não tem valor)" +"AVISO: Os seguintes pacotes essenciais serão removidos.\n" +"Isso NÃO deverá ser feito a menos que saiba exactamente o que está a fazer!" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Linha mal formada %lu na lista de fontes %s (URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Linha mal formada %lu na lista de fontes %s (distribuição)" +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)" +msgid "%lu downgraded, " +msgstr "%lu a que foi feito o downgrade, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Linha mal formada %lu na lista de fontes %s (distribuição absoluta)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu a remover e %lu não actualizados.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Linha mal formada %lu na lista de fontes %s (dist parse)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pacotes não totalmente instalados ou removidos.\n" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "A abrir %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Linha mal formada %u na lista de fontes %s (tipo)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "s/N]" -#: apt-pkg/sourcelist.cc:375 -#, 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" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "A instalar %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "O comando update não leva argumentos" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-update.cc:90 #, c-format -msgid "Configuring %s" -msgstr "A configurar %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 #, c-format -msgid "Removing %s" -msgstr "A remover %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "A remover completamente %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "A notar o desaparecimento de %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado." -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "A correr o 'trigger' de pós-instalação %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Erro Interno, Ordering não terminou" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Falta o directório '%s'" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Estranho... Os tamanhos não coincidiram, escreva para apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Could not open file '%s'" -msgstr "Não foi possível abrir ficheiro o '%s'" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "É necessário obter %sB/%sB de arquivos.\n" -#: apt-pkg/deb/dpkgpm.cc:989 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing %s" -msgstr "A preparar %s" +msgid "Need to get %sB of archives.\n" +msgstr "É necessário obter %sB de arquivos.\n" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Unpacking %s" -msgstr "A desempacotar %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Após esta operação, serão utilizados %sB adicionais de espaço em disco.\n" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to configure %s" -msgstr "A preparar para configurar %s" +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" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:200 #, c-format -msgid "Installed %s" -msgstr "%s instalado" +msgid "You don't have enough free space in %s." +msgstr "Você não possui espaço livre suficiente em %s." -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "A preparar a remoção de %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Há problemas e foi utilizado -y sem --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s removido" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Trivial Only especificado mas isto não é uma operação trivial." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "A preparar para remover completamente %s" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sim, faça como eu digo!" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:222 #, c-format -msgid "Completely removed %s" -msgstr "Remoção completa de %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Você está prestes a fazer algo potencialmente nocivo.\n" +"Para continuar escreva a frase '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Não conseguiu escrever para %s" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abortado." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Deseja continuar?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Falhou o download de alguns ficheiros" + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Não foi possível obter alguns arquivos, tente talvez correr apt-get update " +"ou tente com --fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "A operação foi interrompida antes de poder terminar" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing e troca de mídia não são suportados actualmente" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Nenhum relatório apport escrito pois MaxReports já foi atingido" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Não foi possível corrigir os pacotes em falta." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemas de dependências - deixando por configurar" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "A abortar a instalação." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica que é um erro " -"de seguimento de um erro anterior." +"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] "" +"O seguinte pacote desapareceu do seu sistema pois\n" +"todos os ficheiros foram sobrescritos por outros pacotes:" +msgstr[1] "" +"Os seguintes pacotes desapareceram do seu sistema pois\n" +"todos os ficheiros foram por outros pacotes:" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " -"cheio" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg." -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de " -"memória esgotada" +#: apt-private/private-install.cc:391 +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" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " -"cheio" +"Hmm, parece que o AutoRemover destruiu algo que realmente não deveria ter\n" +"acontecido. Por favor arquive um relatório de bug contra o apt." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de I/" -"O do dpkg" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "A seguinte informação pode ajudar a resolver a situação:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Erro Interno, o AutoRemover estragou coisas" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Não foi possível obter acesso exclusivo ao directório de administração (%s), " -"outro processo está a utilizá-lo?" +"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] "" +"O seguinte pacote foi instalado automaticamente e já não é necessário:" +msgstr[1] "" +"Os seguintes pacotes foram instalados automaticamente e já não são " +"necessários:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +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] "O pacote %lu foi instalado automaticamente e já não é necessário.\n" +msgstr[1] "" +"Os pacotes %lu foram instalados automaticamente e já não são necessários.\n" + +#: apt-private/private-install.cc:519 +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." + +#: apt-private/private-install.cc:612 +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:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Não foi possível criar acesso exclusivo ao directório de administração (%s), " -"é root?" +"Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote " +"(ou especifique uma solução)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"O dpkg foi interrompido, para corrigir o problema tem de correr manualmente " -"'%s'" +"Alguns pacotes não puderam ser instalados. Isso pode significar que\n" +"você solicitou uma situação impossível ou se você está a usar a\n" +"distribuição unstable em que alguns pacotes pedidos ainda não foram \n" +"criados ou foram movidos do Incoming." + +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pacotes estragados" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Sem acesso exclusivo" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Os seguintes pacotes extra serão instalados:" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pacotes sugeridos:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pacotes recomendados:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Saltando %s, já está instalado e a actualização não está definida.\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:829 #, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Saltando %s, não está instalado e só são pedidas actualizações.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:841 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" +"A reinstalação de %s não é possível, o download do mesmo não pode ser " +"feito.\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:846 #, c-format -msgid "Selection %s not found" -msgstr "A selecção %s não foi encontrada" +msgid "%s is already the newest version.\n" +msgstr "%s já está na versão mais recente.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:894 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Não está a ser utilizado acesso exclusivo para apenas leitura ao ficheiro %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versão seleccionada '%s' (%s) para '%s'\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:899 #, c-format -msgid "Could not open lock file %s" -msgstr "Não foi possível abrir ficheiro de lock %s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versão seleccionada '%s' (%s) para '%s' devido a '%s'\n" -#: apt-pkg/contrib/fileutl.cc:218 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Not using locking for nfs mounted lock file %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"Não está a ser utilizado o acesso exclusivo para o ficheiro %s, montado via " -"nfs" +"O pacote '%s' não está instalado, por isso não será removido. Queria dizer " +"'%s'?\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:947 #, c-format -msgid "Could not get lock %s" -msgstr "Não foi possível obter acesso exclusivo a %s" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "O pacote '%s' não está instalado, por isso não será removido\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" +#: apt-private/private-main.cc:32 +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 "" -"Lista de ficheiros que não podem ser criados porque '%s' não é um directório" +"NOTE:\tIsto é apenas uma simulação!\n" +"\to apt-get necessita de privilégios de root para a execução real.\n" +"\tTenha em mente que o acesso exclusivo está desabilitado,\n" +"\tpor isso não confie na relevância da real situação actual!" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "A ignorar '%s' no directório '%s' porque não é um ficheiro normal" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Aviso de autenticação ultrapassado.\n" + +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Alguns pacotes não puderam ser autenticados" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalar estes pacotes sem verificação?" + +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Falha ao baixar %s %s\n" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"A ignorar o ficheiro '%s' no directório '%s' porque não tem extensão no nome " -"do ficheiro" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"A ignorar o ficheiro '%s' no directório '%s' porque tem uma extensão " -"inválida no nome do ficheiro" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "O sub-processo %s recebeu uma falha de segmentação." +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Hit " -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "O sub-processo %s recebeu o sinal %u." +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Obter:" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "O sub-processo %s retornou um código de erro (%u)" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "O sub-processo %s terminou inesperadamente" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Obtidos %sB em %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema ao fechar o ficheiro gzip %s" +msgid " [Working]" +msgstr " [A trabalhar]" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Could not open file %s" -msgstr "Não foi possível abrir ficheiro o %s" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Troca de mídia: Por favor insira o disco chamado\n" +" '%s'\n" +"no leitor '%s' e pressione enter\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Não foi possível abrir o descritor de ficheiro %d" +msgid "No mirror file '%s' found " +msgstr "Não foi encontrado ficheiro de mirror '%s'" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Falhou criar subprocesso IPC" +#. 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 "Não pode ler ficheiro de mirror '%s'" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Falhou executar compactador " +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Não pode ler ficheiro de mirror '%s'" -#: apt-pkg/contrib/fileutl.cc:1514 +#: methods/mirror.cc:445 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "lidos, ainda restam %llu para serem lidos mas não resta nenhum" +msgid "[Mirror: %s]" +msgstr "[Mirror: %s]" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escritos, ainda restam %llu para escrever mas não foi possível" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Falha ao criar pipe IPC para subprocesso" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problema ao fechar o ficheiro %s" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Ligação encerrada prematuramente" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problema ao renomear o ficheiro %s para %s" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configuração pré-definida errada!" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problema ao remover o link do ficheiro %s" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Carregue em enter para continuar." -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problema sincronizando o ficheiro" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Deseja apagar quaisquer ficheiros .deb obtidos previamente?" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Erro !" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Ocorreram alguns erros ao descompactar. Os pacotes que foram instalados" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Pronto" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "serão configurados. Isto pode resultar em erros duplicados" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "causados por dependências em falta. Isto está OK, somente os erros" + +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"acima desta mensagem são importantes. Por favor resolva-os e execute " +"[I]nstalar novamente" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Pronto" +#: dselect/update:30 +msgid "Merging available information" +msgstr "A juntar a informação disponível" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Não é possível fazer mmap a um ficheiro vazio" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode chamado em nó ainda linkado" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Não foi possível duplicar o descritor de ficheiro %i" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Falha ao localizar o elemento de hash!" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Não foi possível fazer mmap de %llu bytes" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Falha ao alocar desvio (diversion)" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Não foi possível fechar mmap" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Erro Interno em AddDiversion" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Não foi sincronizar mmap " +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "A tentar sobrescrever um desvio, %s -> %s e %s/%s" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Não foi possível fazer mmap de %lu bytes" +msgid "Double add of diversion %s -> %s" +msgstr "Adição dupla de desvio %s -> %s" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Falhou truncar o ficheiro" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Arquivo de configuração duplicado %s/%s" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, 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 "" -"O Dynamic MMap ficou sem espaço. Por favor aumente o tamanho de APT::Cache-" -"Start. Valor actual: %lu. (man 5 apt.conf)" +msgid "The path %s is too long" +msgstr "O caminho %s é demasiado longo" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Não foi possível aumentar o tamanho do MMap pois o limite de %lu bytes já " -"foi alcançado." +msgid "Unpacking %s more than once" +msgstr "A descompactar %s mais de uma vez" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Não foi possível aumentar o tamanho do MMap pois o crescimento automático " -"está desabilitado pelo utilizador." +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "O directório %s é desviado" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Impossível executar stat ao ponto de montagem %s" +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-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Impossível executar stat ao cdrom" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "O caminho de desvio é muito longo" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreviatura de tipo desconhecida: '%c'" +msgid "Failed to stat %s" +msgstr "Falha stat %s" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Opening configuration file %s" -msgstr "A abrir o ficheiro de configuração %s" +msgid "Failed to rename %s to %s" +msgstr "Falhou renomear %s para %s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Erro de sintaxe %s:%u: O bloco começa sem nome." +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-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Erro de sintaxe %s:%u: Tag mal formada" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Falhou localizar o nó no seu hash bucket" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "O caminho é demasiado longo" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Erro de sintaxe %s:%u: Directivas só podem ser feitas no nível mais alto" +msgid "Overwrite package match with no version for %s" +msgstr "Substituir o pacote correspondente sem versão para %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Erro de sintaxe %s:%u: Demasiados includes encadeados" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "O ficheiro %s/%s substitui o que está no pacote %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto" +msgid "Unable to stat %s" +msgstr "Não foi possível fazer stat %s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada" +msgid "Failed to write file %s" +msgstr "Falhou escrever o ficheiro %s" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Erro de sintaxe %s:%u: directiva clara necessita de uma árvore de opções " -"como argumento" +msgid "Failed to close file %s" +msgstr "Falhou fechar o ficheiro %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Erro de sintaxe %s:%u: Lixo extra no final do ficheiro" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Este não é um arquivo DEB válido, falta o membro '%s'" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "No keyring installed in %s." -msgstr "Nenhum keyring instalado em %s." +msgid "Internal error, could not locate member %s" +msgstr "Erro Interno, não foi possível localizar o membro %s" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opção '%c' da linha de comandos [de %s] é desconhecida." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ficheiro de controle não interpretável" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Opção %s de linha de comandos não é compreendida" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Assinatura de arquivo inválida" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Opção %s da linha de comandos não é booleana" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Erro na leitura de cabeçalho membro de arquivo" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Option %s requires an argument." -msgstr "A opção %s necessita de um argumento." +msgid "Invalid archive member header %s" +msgstr "Cabeçalho membro de arquivo inválido %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opção %s: Especificação de item de configuração tem de ter um =<val>." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Cabeçalho membro de arquivo inválido" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opção %s necessita de um número inteiro como argumento, não '%s'" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arquivo é demasiado pequeno" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opção '%s' é demasiado longa" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Falha ao ler os cabeçalhos do arquivo" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "O sentido %s não é compreendido, tente verdadeiro ou falso." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Falhou a criação de pipes" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Falhou executar gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arquivo corrompido" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "A soma de controlo do tar falhou, arquivo corrompido" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Operação %s inválida" +msgid "Unknown TAR header type %u, member %s" +msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3624,7 +3628,7 @@ msgstr "Falhou ler durante o cálculo de MD5" msgid "Problem unlinking %s" msgstr "Problema ao executar unlinking %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3677,6 +3681,10 @@ msgstr "" " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" "tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Erro Interno, AllUpgrade estragou algo" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s não é um pacote DEB válido." diff --git a/po/pt_BR.po b/po/pt_BR.po index 8e6fc88d5..01eaedb9a 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) <faw@debian.org>\n" "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." @@ -16,3186 +16,3191 @@ msgstr "" "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" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Tipo de arquivo de índice '%s' não é suportado" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "O pacote %s versão %s tem uma dependência desencontrada:\n" +msgid "Unable to read %s" +msgstr "Impossível ler %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Total de Nomes de Pacotes: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Impossível mudar para %s" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Total de Nomes de Pacotes: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Impossível executar \"stat\" %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pacotes normais: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pacotes puramente virtuais: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pacotes virtuais únicos: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Sistema de empacotamento '%s' não é suportado" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pacotes virtuais misturados: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Impossível determinar um tipo de sistema de empacotamento aplicável." -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Faltando: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Gravados %i registros.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Total de versões distintas: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Gravados %i registros com %i arquivos faltando.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Total de descrições distintas: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Gravados %i registros com %i arquivos que não combinam\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Total de dependências: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Gravados %i registros com %i arquivos faltando e %i arquivos que não " +"combinam\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Total de relações ver/arquivo: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Total de relações Desc/Arquivo: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash Sum incorreto" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Total de mapeamentos \"Provides\": " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "O driver do método %s não pode ser encontrado." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Total de strings \"globbed\": " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Total de espaço de dependência de versão: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Método %s não iniciou corretamente" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Total de espaço frouxo: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Por favor, insira o disco nomeado: '%s' na unidade '%s' e pressione enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Total de espaço contabilizado para: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"As listas de pacotes ou os arquivos de estado não puderam ser analisados ou " +"abertos." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "O arquivo de pacote %s está fora de sincronia." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Você terá que executar apt-get update para corrigir estes problemas" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nenhum pacote encontrado" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "A lista de fontes não pode ser lida." -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Você deve passar exatamente um padrão" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache de pacotes vazio" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "O arquivo de cache de pacotes está corrompido" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "O arquivo de cache de pacotes é uma versão incompatível" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "O arquivo de cache de pacotes está corrompido" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Impossível encontrar o pacote %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Este APT não suporta o sistema de versões '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Arquivos de pacote:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "O cache de pacotes foi gerado para uma arquitetura diferente" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"O cache está fora de sincronia, não foi possível fazer a referência cruzada " -"de um arquivo de pacote" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pacotes alfinetados (\"pinned\"):" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pré-Depende" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(não encontrado)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugere" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalado: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomenda" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Conflita" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nenhum)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Substitui" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pacote alfinetado (\"pin\"): " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Obsoleta" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela de versão:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Quebra" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado em %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Uso: apt-cache [opções] comando\n" -" apt-cache [opções] add arquivo1 [arquivo1 ...]\n" -" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n" -" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n" -"\n" -"O apt-cache é uma ferramenta de baixo nível usada para manipular os\n" -"arquivos de cache binários do APT e para buscar informações neles\n" -"\n" -"Comandos:\n" -" add - Adiciona um arquivo de pacote ao cache de fontes\n" -" gencaches - Constrói ambos os caches de pacotes e fontes\n" -" showpkg - Mostra informações gerais para um único pacote\n" -" showsrc - Mostra registros fontes\n" -" stats - Mostra algumas estatísticas básicas\n" -" dump - Mostra o arquivo inteiro em uma forma concisa\n" -" dumpavail - Imprime um arquivo \"available\" para stdout\n" -" unmet - Mostra dependências desencontradas\n" -" search - Procura a lista de pacotes por um padrão regex\n" -" show - Mostra um registro legível sobre o pacote\n" -" depends - Mostra informações de dependências não processadas de um " -"pacote\n" -" rdepends - Mostra informações de dependências reversas de um pacote\n" -" pkgnames - Lista o nome de todos os pacotes no sistema\n" -" dotty - Gera gráficos de pacotes para o GraphViz\n" -" xvcg - Gera gráficos de pacotes para o xvcg\n" -" policy - Mostra as configurações de políticas\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda.\n" -" -p=? O cache de pacotes.\n" -" -s=? O cache de fontes.\n" -" -q Desabilita o indicador de progresso.\n" -" -i Mostra somente dependências importantes para o comando \"unmet\".\n" -" -c=? Lê o arquivo de configuração especificado.\n" -" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" -"tmp\n" -"Veja as páginas de manual apt-cache(8) e apt.conf(5) para mais informações.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Por favor, forneça um nome para este Disco, algo como 'Debian 2.1r1 Disco 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requerido" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Por favor, insira um Disco na unidade e pressione enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "padrão" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Falhou ao renomear %s para %s" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repita este processo para o restante dos CDs em seu conjunto." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Tipo de arquivo de índice '%s' não é suportado" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentos não estão em pares" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Erro de compilação de regex - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Uso: apt-config [opções] comando\n" -"\n" -"O apt-config é uma ferramenta simples para ler o arquivo de configuração\n" -"do APT\n" -"\n" -"Comandos:\n" -" shell - Modo shell\n" -" dump - Mostra a configuração\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda.\n" -" -c=? Lê o arquivo de configuração especificado.\n" -" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" -"tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "O cache possui um sistema de versões incompatível" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Impossível achar pacote %s" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Um erro ocorreu processando %s (EncontrarPacote)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Impossível achar pacote %s" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " +"suportar." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Impossível achar pacote %s" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"Uau, você excedeu o número de versões que este APT é capaz de suportar." -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Uau, você excedeu o número de descrições que este APT é capaz de suportar." -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Impossível achar pacote %s" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Pacote %s %s não foi encontrado enquanto processando dependências de arquivo" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s configurado para instalar manualmente.\n" +msgid "Couldn't stat source package list %s" +msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s configurado para instalar manualmente.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lendo listas de pacotes" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Coletando Arquivo \"Provides\"" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Erro interno, o solucionador de problemas quebrou coisas" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Impossível escrever para %s" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Impossível criar trava no diretório de download" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Erro de E/S ao gravar cache fonte" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Impossível encontrar um pacote fonte para %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Pulando arquivo já baixado '%s'\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Não foi possível determinar o espaço livre em %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "renomeação falhou, %s (%s -> %s)." -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Você não possui espaço livre suficiente em %s" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash Sum incorreto" -#. 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:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Preciso obter %sB/%sB de arquivos fonte.\n" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Tamanho incorreto" -#. 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Preciso obter %sB de arquivos fonte.\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operação %s inválida" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "Obter fonte %s\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Falhou ao buscar alguns arquivos." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Baixar completo e no modo somente baixar (\"download only\")" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Não existem chaves públicas para os seguintes IDs de chaves:\n" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Pulando o desempacotamento de fontes já desempacotados em %s\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Comando de desempacotamento '%s' falhou.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Comando de construção '%s' falhou.\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Processo filho falhou" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"Não foi possível localizar um arquivo para o pacote %s. Isto pode significar " +"que você precisa consertar manualmente este pacote. (devido a arquitetura " +"não especificada)." -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"Deve-se especificar pelo menos um pacote para que se cheque as dependências " -"de construção" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo \"Filename:" +"\" para o pacote %s." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Impossível conseguir informações de dependência de construção para %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Bloco fornecedor %s não contém impressão digital (\"fingerprint\")" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s não tem dependências de construção.\n" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Diretório de listas %spartial está faltando." -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " -"pode ser encontrado" +msgid "Archives directory %spartial is missing." +msgstr "Diretório de arquivos %spartial está faltando." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Impossível criar trava no diretório de listas" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Obtendo o arquivo %li de %li (%s restantes)" + +#: apt-pkg/acquire.cc:904 #, c-format +msgid "Retrieving file %li of %li" +msgstr "Obtendo arquivo %li de %li" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Falhou ao buscar %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " -"pode ser encontrado" +"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os " +"antigos foram usados no lugar." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Você deve colocar algumas URIs 'source' em seu sources.list" + +#: apt-pkg/policy.cc:83 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Falhou ao satisfazer a dependência de %s por %s: Pacote instalado %s é muito " -"novo" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Registro inválido no arquivo de preferências, sem cabeçalho Package" + +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Não foi possível entender o tipo de \"pin\" %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\"" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque nenhuma versão " -"disponível do pacote %s pode satisfazer os requerimentos de versão" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Não foi possível abrir arquivo %s" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " -"pode ser encontrado" +"Esta execução de instalação requererá a remoção temporária do pacote " +"essencial %s devido a um loop de Conflitos/Pré-Dependências. Isso geralmente " +"é ruim, mas se você realmente quer fazer isso, ative a opção APT::Force-" +"LoopBreak." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Falhou ao satisfazer a dependência de %s por %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Linha %u muito longa na lista de fontes %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, 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." +msgid "Using CD-ROM mount point %s\n" +msgstr "Usando ponto de montagem de CD-ROM %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Falhou ao processar as dependências de construção" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Aguardando por disco...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Conectando em %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando CD-ROM...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos para os quais há suporte:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Rótulo armazenado: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Procurando por arquivos de índice no disco...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Uso: apt-get [opções] comando\n" -" apt-get [opções] install|remove pacote1 [pacote2 ...]\n" -" apt-get [opções] source pacote1 [pacote2 ...]\n" -"\n" -"O apt-get é uma interface simples de linha de comando para baixar\n" -"pacotes e instalá-los. Os comandos usados mais frequentemente são\n" -"update e install.\n" -"\n" -"Comandos:\n" -" update - Obtém novas listas de pacotes\n" -" upgrade - Realiza uma atualização\n" -" install - Instala novos pacotes (um pacote é libc6 e não libc6.deb)\n" -" remove - Remove pacotes\n" -" autoremove - Remove automaticamente todos os pacotes não usados\n" -" purge - Remove e expurga (\"purge\") pacotes\n" -" source - Baixa arquivos fonte\n" -" build-dep - Configura as dependências de compilação de pacotes fonte\n" -" dist-upgrade - Atualiza a distribuição, veja apt-get(8)\n" -" dselect-upgrade - Segue as seleções do dselect\n" -" clean - Apaga arquivos baixados para instalação\n" -" autoclean - Apaga arquivos antigos baixados para instalação\n" -" check - Verifica se não há dependências quebradas\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda\n" -" -q Saída que pode ser registrada em log - sem indicador de progresso\n" -" -qq Sem saída, exceto para erros\n" -" -d Apenas baixa - NÃO instala ou desempacota arquivos\n" -" -s Não-age. Executa simulação de ordenação\n" -" -y Assume Sim para todas as perguntas e não questiona\n" -" -f Tenta corrigir um sistema com dependências quebradas\n" -" -m Tenta continuar se os arquivos não podem ser localizados\n" -" -u Mostra uma lista de pacotes atualizados também\n" -" -b Constrói o pacote fonte depois de baixá-lo\n" -" -V Exibe números de versões mais detalhados\n" -" -c=? Lê o arquivo de configuração especificado.\n" -" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" -"tmp\n" -"Veja as páginas de manual apt-get(8), sources.list(5) e apt.conf(5)\n" -"para mais informações e opções.\n" -" Este APT tem Poderes de Super Vaca.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Encontrado(s) %zu índice(s) de pacote(s), %zu índice(s) de fonte(s), %zu " +"índice(s) de traduções e %zu assinatura(s)\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "mas não está instalado" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s configurado para instalar manualmente.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s configurado para instalar manualmente.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s já é a versão mais nova.\n" - -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s já é a versão mais nova.\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperado %s mas este não estava lá" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s configurado para instalar manualmente.\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Falhou ao abrir %s" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" - -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" +msgid "Found label '%s'\n" +msgstr "Rótulo encontrado: '%s'\n" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Este não é um nome válido, tente novamente.\n" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Impossível ler o banco de dados de cdrom %s" - -#: 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" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Por favor, use o apt-cdrom para fazer com que este CD-ROM seja reconhecido " -"pelo APT. O apt-get update não pode ser usado para adicionar novos CD-ROMs" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM errado" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Impossível desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco não encontrado." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Arquivo não encontrado" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Falhou ao executar \"stat\"" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Falhou ao definir hora de modificação" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI inválida, URIs locais não devem iniciar com //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Efetuando login" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Impossível determinar o nome do ponto" +"Esse disco é chamado: \n" +"'%s'\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Impossível determinar o nome local" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando lista de pacotes..." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "O servidor recusou a conexão e disse: %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Gravando nova lista de fontes\n" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "USER falhou, servidor disse: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Entradas na lista de fontes para este disco são:\n" -#: methods/ftp.cc:232 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS falhou, servidor disse: %s" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um " +"arquivo para o mesmo." -#: methods/ftp.cc:252 +#: apt-pkg/algorithms.cc:1086 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Um servidor proxy foi especificado mas não um script de login, Acquire::ftp::" -"ProxyLogin está vazio." +"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " +"pacotes mantidos (hold)." -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Comando de script de login '%s' falhou, servidor disse: %s" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Impossível corrigir problemas, você manteve (hold) pacotes quebrados." -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE falhou, servidor disse: %s" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Construindo árvore de dependências" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Conexão expirou" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versões candidatas" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Servidor fechou a conexão" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Geração de dependência" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Erro de leitura" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lendo informação de estado" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Uma resposta sobrecarregou o buffer" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Falha ao abrir Arquivo de Estado (\"StateFile\") %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corrupção de protocolo" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Falha ao escrever Arquivo de Estado (\"StateFile\") temporário %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Erro de escrita" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Não foi possível criar um socket" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Impossível analisar arquivo de pacote %s (2)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Não foi possível conectar um socket de dados, conexão expirou" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' para '%s' não foi encontrada" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Falhou" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versão '%s' para '%s' não foi encontrada" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Não foi possível conectar um socket passivo." +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Impossível encontrar o pacote %s" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo não foi capaz de obter um socket de escuta" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Impossível achar tarefa %s" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Não foi possível fazer \"bind\" de um socket" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Impossível achar pacote %s" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Não foi possível ouvir no socket" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Impossível achar pacote %s" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Não foi possível determinar o nome do socket" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Impossível enviar o comando PORT" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" -#: methods/ftp.cc:802 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Família de endereços %u desconhecida (AF_*)" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falhou, servidor disse: %s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Conexão do socket de dados expirou" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Impossível aceitar conexão" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema criando o hash do arquivo" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Nota, selecionando %s ao invés de %s\n" -#: methods/ftp.cc:890 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Impossível obter arquivo, servidor disse '%s'" +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Socket de dados expirou" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Linha inválida no arquivo de desvios: %s" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Transferência de dados falhou, servidor disse '%s'" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Pesquisa" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Impossível invocar " +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectando em %s (%s)" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: 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)" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: methods/connect.cc:100 +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" + +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Não foi possível iniciar a conexão para %s:%s (%s)." +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (URI)" -#: methods/connect.cc:108 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Não foi possível conectar em %s:%s (%s), conexão expirou" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" -#: methods/connect.cc:126 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Não foi possível conectar em %s:%s (%s)." +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Connecting to %s" -msgstr "Conectando a %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição absoluta)" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Could not resolve '%s'" -msgstr "Não foi possível resolver '%s'" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: methods/connect.cc:205 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Falha temporária resolvendo '%s'" +msgid "Opening %s" +msgstr "Abrindo %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Linha mal formada %u no arquivo de fontes %s (tipo)" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Impossível conectar em %s %s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Erro interno: Assinatura boa, mas não foi possível determinar a impressão " -"digital da chave?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Ao menos uma assinatura inválida foi encontrada." +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Não foi possível executar '%s' para verificar a assinatura (o gpgv está " -"instalado?)" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Instalando %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Configuring %s" +msgstr "Configurando %s" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Erro desconhecido executando gpgv" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Removendo %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "As seguintes assinaturas eram inválidas:\n" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s completamente removido" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" msgstr "" -"As assinaturas a seguir não puderam ser verificadas devido à chave pública " -"não estar disponível:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Executando gatilho pós-instalação %s" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Erro escrevendo para o arquivo" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Diretório '%s' está faltando" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Não foi possível abrir arquivo %s" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Erro lendo do servidor" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Preparando %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Erro escrevendo para arquivo" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Desempacotando %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Seleção falhou" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Preparando para configurar %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Conexão expirou" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s instalado" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Erro escrevendo para arquivo de saída" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Preparando para a remoção de %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Aguardando por cabeçalhos" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s removido" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Linha de cabeçalho ruim" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Preparando para remover completamente %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s completamente removido" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "O servidor HTTP enviou um cabeçalho \"Content-Length\" inválido" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "O servidor HTTP enviou um cabeçalho \"Content-Range\" inválido" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Impossível escrever para %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Este servidor HTTP possui suporte a \"range\" quebrado" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de data desconhecido" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Dados de cabeçalho ruins" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Esperado %s mas este não estava lá" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Conexão falhou" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Erro interno" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando atualização... " +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Erro interno, AllUpgrade quebrou coisas" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Pronto" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -#: apt-private/private-list.cc:164 -#, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corrigindo dependências..." +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falhou." +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Impossível criar trava no diretório de listas" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Impossível corrigir dependências" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Impossível minimizar o conjunto de atualizações" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Pronto" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Você pode querer executar 'apt-get -f install' para corrigí-los." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependências desencontradas. Tente usar -f." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Seleção %s não encontrada" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Não usando travamento para arquivo de trava somente leitura %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Não foi possível abrir arquivo de trava %s" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Não usando travamento para arquivo de trava montado via nfs %s" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Não foi possível obter trava %s" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "[upgradable from: %s]" +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Os pacotes a seguir têm dependências desencontradas:" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "but %s is installed" -msgstr "mas %s está instalado" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "but %s is to be installed" -msgstr "mas %s está para ser instalado" +msgid "Sub-process %s received a segmentation fault." +msgstr "Sub-processo %s recebeu uma falha de segmentação." -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "mas não é instalável" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Sub-processo %s recebeu uma falha de segmentação." -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "mas é um pacote virtual" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Sub-processo %s retornou um código de erro (%u)" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "mas não está instalado" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Sub-processo %s finalizou inesperadamente" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "mas não será instalado" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Erro de escrita" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " ou" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema fechando o arquivo" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Os NOVOS pacotes a seguir serão instalados:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Não foi possível abrir arquivo %s" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Os pacotes a seguir serão REMOVIDOS:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Não foi possível abrir \"pipe\" para %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Falhou ao criar sub-processo IPC" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Os pacotes a seguir serão atualizados:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Falhou ao executar compactador " -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Os pacotes a seguir serão REVERTIDOS:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Erro de leitura" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Os seguintes pacotes mantidos serão mudados:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "leitura, ainda restam %lu para serem lidos mas nenhum deixado" -#: apt-private/private-output.cc:655 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (por causa de %s) " +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escrita, ainda restam %lu para gravar mas não foi possível" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"AVISO: Os pacotes essenciais a seguir serão removidos.\n" -"Isso NÃO deveria ser feito a menos que você saiba exatamente o que você está " -"fazendo!" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problema fechando o arquivo" -#: apt-private/private-output.cc:694 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, " +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problema sincronizando o arquivo" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Problema removendo o arquivo" -#: apt-private/private-output.cc:700 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu revertidos, " +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problema sincronizando o arquivo" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu a serem removidos e %lu não atualizados.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Erro!" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pacotes não totalmente instalados ou removidos.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[S/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[s/N]" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "S" +msgid "%c%s... Done" +msgstr "%c%s... Pronto" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Erro de compilação de regex - %s" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Pronto" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "O comando update não leva argumentos" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Não foi possível fazer \"mmap\" de um arquivo vazio" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Não foi possível abrir \"pipe\" para %s" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Não foi possível fazer \"mmap\" de %lu bytes" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Impossível abrir %s" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Impossível invocar " -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pacotes precisam ser removidos mas a remoção está desabilitada." +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Não foi possível fazer \"mmap\" de %lu bytes" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Erro interno, Ordenação não finalizou" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falhou ao truncar arquivo" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: 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 "" -"Que estranho... Os tamanhos não batem, mande e-mail para apt@packages.debian." -"org" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "É preciso baixar %sB/%sB de arquivos.\n" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "É preciso baixar %sB de arquivos.\n" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Depois desta operação, %sB adicionais de espaço em disco serão usados.\n" +msgid "Unable to stat the mount point %s" +msgstr "Impossível executar \"stat\" no ponto de montagem %s" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Impossível executar \"stat\" no cdrom" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Depois desta operação, %sB de espaço em disco serão liberados.\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviação de tipo desconhecida: '%c'" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Você não possui espaço suficiente em %s." +msgid "Opening configuration file %s" +msgstr "Abrindo arquivo de configuração %s" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Há problemas e -y foi usado sem --force-yes" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome." -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "\"Trivial Only\" especificado mas esta não é uma operação trivial." +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Erro de sintaxe %s:%u: Tag mal formada" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Sim, faça o que eu digo!" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Você está prestes a fazer algo potencialmente destrutivo.\n" -"Para continuar digite a frase '%s'\n" -" ?] " +"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Abortar." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Erro de sintaxe %s:%u: Muitos \"includes\" aninhados" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Você quer continuar?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Alguns arquivos falharam ao baixar" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Erro de sintaxe %s:%u: Não há suporte para a diretiva '%s'" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Impossível buscar alguns arquivos, talvez executar apt-get update ou tentar " -"com --fix-missing?" - -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing e troca de mídia não são suportados atualmente" +"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Impossível corrigir pacotes faltantes." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Erro de sintaxe %s:%u: Lixo extra no final do arquivo" -#: apt-private/private-install.cc:329 -msgid "Aborting install." +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." msgstr "Abortando instalação." -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" - -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" - -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nós não deveríamos apagar coisas, impossível iniciar AutoRemover" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opção de linha de comando '%c' [de %s] é desconhecida." -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, parece que o AutoRemover destruiu algo o que realmente não deveria\n" -"acontecer. Por favor, reporte um bug contra o apt." +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opção de linha de comando %s não é compreendida" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "A informação a seguir pode ajudar a resolver a situação:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opção de linha de comando %s não é booleana" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Erro Interno, o AutoRemover quebrou coisas" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Opção %s requer um argumento." -#: apt-private/private-install.cc:512 -#, fuzzy -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] "" -"Os seguintes pacotes foram automaticamente instalados e não são mais " -"requeridos:" -msgstr[1] "" -"Os seguintes pacotes foram automaticamente instalados e não são mais " -"requeridos:" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Opção %s: Especificação de item de configuração deve possuir um =<val>." -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "" -"Os seguintes pacotes foram automaticamente instalados e não são mais " -"requeridos:" -msgstr[1] "" -"Os seguintes pacotes foram automaticamente instalados e não são mais " -"requeridos:" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opção %s requer um argumento inteiro, não '%s'" -#: apt-private/private-install.cc:518 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Use 'apt-get autoremove' para removê-los." -msgstr[1] "Use 'apt-get autoremove' para removê-los." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Opção '%s' é muito longa" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Você deve querer executar 'apt-get -f install' para corrigí-los:" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Sentido %s não é compreendido, tente verdadeiro ou falso." -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote " -"(ou especifique uma solução)." +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Operação %s inválida" -#: apt-private/private-install.cc:628 -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 "" -"Alguns pacotes não puderam ser instalados. Isto pode significar que\n" -"você solicitou uma situação impossível ou, se você está usando a\n" -"distribuição instável, que alguns pacotes requeridos não foram\n" -"criados ainda ou foram retirados da \"Incoming\"." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "O pacote %s versão %s tem uma dependência desencontrada:\n" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Pacotes quebrados" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Total de Nomes de Pacotes: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Os pacotes extra a seguir serão instalados:" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Total de Nomes de Pacotes: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Pacotes sugeridos:" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pacotes normais: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Pacotes recomendados:" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pacotes puramente virtuais: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pacotes virtuais únicos: " -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pacotes virtuais misturados: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "A reinstalação de %s não é possível, não pode ser baixado.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Faltando: " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s já é a versão mais nova.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Total de versões distintas: " -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versão selecionada %s (%s) para %s\n" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Total de descrições distintas: " -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versão selecionada %s (%s) para %s\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Total de dependências: " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "O pacote %s não está instalado, então não será removido\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Total de relações ver/arquivo: " -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "O pacote %s não está instalado, então não será removido\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Total de relações Desc/Arquivo: " -#: apt-private/private-main.cc:32 -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 "" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Total de mapeamentos \"Provides\": " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Total de strings \"globbed\": " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Aviso de autenticação sobreposto.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Total de espaço de dependência de versão: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Alguns pacotes não puderam ser autenticados" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Total de espaço frouxo: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalar estes pacotes sem verificação?" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Total de espaço contabilizado para: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Falhou ao buscar %s %s\n" +msgid "Package file %s is out of sync." +msgstr "O arquivo de pacote %s está fora de sincronia." -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Falha ao baixar %s %s\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nenhum pacote encontrado" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Você deve passar exatamente um padrão" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Arquivos de pacote:" + +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" +"O cache está fora de sincronia, não foi possível fazer a referência cruzada " +"de um arquivo de pacote" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Atingido " +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pacotes alfinetados (\"pinned\"):" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Obter:" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(não encontrado)" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalado: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Baixados %sB em %s (%sB/s)\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nenhum)" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Trabalhando]" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pacote alfinetado (\"pin\"): " -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Troca de mídia: por favor, insira o disco nomeado\n" -" '%s'\n" -"na unidade '%s' e pressione enter\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabela de versão:" -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Unable to read %s" -msgstr "Impossível ler %s" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado em %s %s\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Impossível mudar para %s" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Uso: apt-cache [opções] comando\n" +" apt-cache [opções] add arquivo1 [arquivo1 ...]\n" +" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n" +" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n" +"\n" +"O apt-cache é uma ferramenta de baixo nível usada para manipular os\n" +"arquivos de cache binários do APT e para buscar informações neles\n" +"\n" +"Comandos:\n" +" add - Adiciona um arquivo de pacote ao cache de fontes\n" +" gencaches - Constrói ambos os caches de pacotes e fontes\n" +" showpkg - Mostra informações gerais para um único pacote\n" +" showsrc - Mostra registros fontes\n" +" stats - Mostra algumas estatísticas básicas\n" +" dump - Mostra o arquivo inteiro em uma forma concisa\n" +" dumpavail - Imprime um arquivo \"available\" para stdout\n" +" unmet - Mostra dependências desencontradas\n" +" search - Procura a lista de pacotes por um padrão regex\n" +" show - Mostra um registro legível sobre o pacote\n" +" depends - Mostra informações de dependências não processadas de um " +"pacote\n" +" rdepends - Mostra informações de dependências reversas de um pacote\n" +" pkgnames - Lista o nome de todos os pacotes no sistema\n" +" dotty - Gera gráficos de pacotes para o GraphViz\n" +" xvcg - Gera gráficos de pacotes para o xvcg\n" +" policy - Mostra as configurações de políticas\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda.\n" +" -p=? O cache de pacotes.\n" +" -s=? O cache de fontes.\n" +" -q Desabilita o indicador de progresso.\n" +" -i Mostra somente dependências importantes para o comando \"unmet\".\n" +" -c=? Lê o arquivo de configuração especificado.\n" +" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" +"tmp\n" +"Veja as páginas de manual apt-cache(8) e apt.conf(5) para mais informações.\n" -#. 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 " +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" +"Por favor, forneça um nome para este Disco, algo como 'Debian 2.1r1 Disco 1'" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Não foi possível abrir arquivo %s" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Por favor, insira um Disco na unidade e pressione enter" -#: methods/mirror.cc:315 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Não foi possível abrir arquivo %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Falhou ao renomear %s para %s" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Falhou ao criar pipe IPC para sub-processo" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repita este processo para o restante dos CDs em seu conjunto." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Conexão encerrada prematuramente" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentos não estão em pares" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configuração padrão ruim!" +#: cmdline/apt-config.cc:89 +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 "" +"Uso: apt-config [opções] comando\n" +"\n" +"O apt-config é uma ferramenta simples para ler o arquivo de configuração\n" +"do APT\n" +"\n" +"Comandos:\n" +" shell - Modo shell\n" +" dump - Mostra a configuração\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda.\n" +" -c=? Lê o arquivo de configuração especificado.\n" +" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" +"tmp\n" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pressione enter para continuar." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Impossível achar pacote %s" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Você quer apagar quaisquer arquivos .deb previamente baixados?" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Impossível achar pacote %s" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Alguns erros ocorreram ao desempacotar. Vou configurar os pacotes que foram" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Impossível achar pacote %s" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "" -"instalados. Isto pode resultar em erros duplicados ou erros causados por" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" msgstr "" -"dependências faltantes. Isto está OK, somente os erros acima desta mensagem" - -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "são importantes. Por favor, conserte-os e execute [I]nstalar novamente" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Mesclando informação disponível" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "\"DropNode\" chamado em nó ainda ligado (\"linked\")" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Impossível achar pacote %s" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Falhou ao localizar o elemento hash!" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Falhou ao alocar desvio (\"diversion\")" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Erro interno em \"AddDiversion\"" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Tentando sobrescrever um desvio, %s -> %s e %s/%s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Erro interno, o solucionador de problemas quebrou coisas" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Adição dupla de desvio %s -> %s" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Impossível criar trava no diretório de download" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Arquivo de configuração duplicado %s/%s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "The path %s is too long" -msgstr "O caminho %s é muito longo" +msgid "Unable to find a source package for %s" +msgstr "Impossível encontrar um pacote fonte para %s" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempacotando %s mais de uma vez" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:791 #, c-format -msgid "The directory %s is diverted" -msgstr "O diretório %s é desviado (\"diverted\")" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:843 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "O pacote está tentando escrever no alvo do desvio %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "O caminho de desvio é muito longo" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Pulando arquivo já baixado '%s'\n" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Failed to stat %s" -msgstr "Falhou ao executar \"stat\" %s" +msgid "Couldn't determine free space in %s" +msgstr "Não foi possível determinar o espaço livre em %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Falhou ao renomear %s para %s" +msgid "You don't have enough free space in %s" +msgstr "Você não possui espaço livre suficiente em %s" -#: apt-inst/extract.cc:249 +#. 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:891 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "O diretório %s está sendo substituído por um não-diretório" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Falha ao localizar nó em seu \"hash bucket\"" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "O caminho é muito longo" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Preciso obter %sB/%sB de arquivos fonte.\n" -#: apt-inst/extract.cc:421 +#. 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:896 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Sobrescrita de pacote não combina com nenhuma versão para %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Preciso obter %sB de arquivos fonte.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:902 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Arquivo %s/%s sobrescreve arquivo no pacote %s" +msgid "Fetch source %s\n" +msgstr "Obter fonte %s\n" -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Impossível executar \"stat\" em %s" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Falhou ao buscar alguns arquivos." -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "Falhou ao escrever arquivo %s" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Baixar completo e no modo somente baixar (\"download only\")" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to close file %s" -msgstr "Falhou ao fechar arquivo %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Pulando o desempacotamento de fontes já desempacotados em %s\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:962 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Este não é um arquivo DEB válido, membro '%s' faltando" +msgid "Unpack command '%s' failed.\n" +msgstr "Comando de desempacotamento '%s' falhou.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Erro interno, não foi possível localizar membro %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Arquivo de controle não interpretável" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Comando de construção '%s' falhou.\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Assinatura de arquivo inválida" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Processo filho falhou" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Erro na leitura de cabeçalho membro de arquivo" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Deve-se especificar pelo menos um pacote para que se cheque as dependências " +"de construção" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Cabeçalho membro de arquivo inválido" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabeçalho membro de arquivo inválido" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Impossível conseguir informações de dependência de construção para %s" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arquivo é muito pequeno" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s não tem dependências de construção.\n" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Falhou ao ler os cabeçalhos do arquivo" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " +"pode ser encontrado" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Falhou ao criar \"pipes\"" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " +"pode ser encontrado" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Falhou ao executar gzip " +#: cmdline/apt-get.cc:1312 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Falhou ao satisfazer a dependência de %s por %s: Pacote instalado %s é muito " +"novo" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arquivo corrompido" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"a dependência de %s por %s não pode ser satisfeita porque nenhuma versão " +"disponível do pacote %s pode satisfazer os requerimentos de versão" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Checksum do arquivo tar falhou, arquivo corrompido" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " +"pode ser encontrado" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Falhou ao satisfazer a dependência de %s por %s: %s" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Unable to stat %s." -msgstr "Impossível executar \"stat\" %s." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Não foi possível satisfazer as dependências de compilação para %s." -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Falhou ao processar as dependências de construção" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Conectando em %s (%s)" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Sistema de empacotamento '%s' não é suportado" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Módulos para os quais há suporte:" + +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Uso: apt-get [opções] comando\n" +" apt-get [opções] install|remove pacote1 [pacote2 ...]\n" +" apt-get [opções] source pacote1 [pacote2 ...]\n" +"\n" +"O apt-get é uma interface simples de linha de comando para baixar\n" +"pacotes e instalá-los. Os comandos usados mais frequentemente são\n" +"update e install.\n" +"\n" +"Comandos:\n" +" update - Obtém novas listas de pacotes\n" +" upgrade - Realiza uma atualização\n" +" install - Instala novos pacotes (um pacote é libc6 e não libc6.deb)\n" +" remove - Remove pacotes\n" +" autoremove - Remove automaticamente todos os pacotes não usados\n" +" purge - Remove e expurga (\"purge\") pacotes\n" +" source - Baixa arquivos fonte\n" +" build-dep - Configura as dependências de compilação de pacotes fonte\n" +" dist-upgrade - Atualiza a distribuição, veja apt-get(8)\n" +" dselect-upgrade - Segue as seleções do dselect\n" +" clean - Apaga arquivos baixados para instalação\n" +" autoclean - Apaga arquivos antigos baixados para instalação\n" +" check - Verifica se não há dependências quebradas\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda\n" +" -q Saída que pode ser registrada em log - sem indicador de progresso\n" +" -qq Sem saída, exceto para erros\n" +" -d Apenas baixa - NÃO instala ou desempacota arquivos\n" +" -s Não-age. Executa simulação de ordenação\n" +" -y Assume Sim para todas as perguntas e não questiona\n" +" -f Tenta corrigir um sistema com dependências quebradas\n" +" -m Tenta continuar se os arquivos não podem ser localizados\n" +" -u Mostra uma lista de pacotes atualizados também\n" +" -b Constrói o pacote fonte depois de baixá-lo\n" +" -V Exibe números de versões mais detalhados\n" +" -c=? Lê o arquivo de configuração especificado.\n" +" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" +"tmp\n" +"Veja as páginas de manual apt-get(8), sources.list(5) e apt.conf(5)\n" +"para mais informações e opções.\n" +" Este APT tem Poderes de Super Vaca.\n" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Impossível determinar um tipo de sistema de empacotamento aplicável." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Gravados %i registros.\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Gravados %i registros com %i arquivos faltando.\n" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Gravados %i registros com %i arquivos que não combinam\n" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "mas não está instalado" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Gravados %i registros com %i arquivos faltando e %i arquivos que não " -"combinam\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash Sum incorreto" +msgid "%s was already set on hold.\n" +msgstr "%s já é a versão mais nova.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "O driver do método %s não pode ser encontrado." +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s já é a versão mais nova.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" +msgid "%s set on hold.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Método %s não iniciou corretamente" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Falhou ao abrir %s" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Por favor, insira o disco nomeado: '%s' na unidade '%s' e pressione enter." -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"As listas de pacotes ou os arquivos de estado não puderam ser analisados ou " -"abertos." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Você terá que executar apt-get update para corrigir estes problemas" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "A lista de fontes não pode ser lida." -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache de pacotes vazio" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "O arquivo de cache de pacotes está corrompido" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Impossível ler o banco de dados de cdrom %s" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "O arquivo de cache de pacotes é uma versão incompatível" +#: 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 "" +"Por favor, use o apt-cdrom para fazer com que este CD-ROM seja reconhecido " +"pelo APT. O apt-get update não pode ser usado para adicionar novos CD-ROMs" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "O arquivo de cache de pacotes está corrompido" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM errado" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:249 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Este APT não suporta o sistema de versões '%s'" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Impossível desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso." -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "O cache de pacotes foi gerado para uma arquitetura diferente" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco não encontrado." -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Arquivo não encontrado" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pré-Depende" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Falhou ao executar \"stat\"" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugere" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Falhou ao definir hora de modificação" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomenda" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI inválida, URIs locais não devem iniciar com //" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Conflita" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Efetuando login" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Substitui" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Impossível determinar o nome do ponto" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Obsoleta" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Impossível determinar o nome local" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Quebra" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "O servidor recusou a conexão e disse: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER falhou, servidor disse: %s" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS falhou, servidor disse: %s" + +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Um servidor proxy foi especificado mas não um script de login, Acquire::ftp::" +"ProxyLogin está vazio." -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requerido" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Comando de script de login '%s' falhou, servidor disse: %s" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "padrão" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE falhou, servidor disse: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Conexão expirou" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Servidor fechou a conexão" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Tipo de arquivo de índice '%s' não é suportado" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Uma resposta sobrecarregou o buffer" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "O cache possui um sistema de versões incompatível" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corrupção de protocolo" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Um erro ocorreu processando %s (EncontrarPacote)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Não foi possível criar um socket" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " -"suportar." +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Não foi possível conectar um socket de dados, conexão expirou" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Uau, você excedeu o número de versões que este APT é capaz de suportar." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falhou" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Uau, você excedeu o número de descrições que este APT é capaz de suportar." +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Não foi possível conectar um socket passivo." -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo não foi capaz de obter um socket de escuta" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"Pacote %s %s não foi encontrado enquanto processando dependências de arquivo" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Não foi possível fazer \"bind\" de um socket" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Não foi possível ouvir no socket" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lendo listas de pacotes" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Não foi possível determinar o nome do socket" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Coletando Arquivo \"Provides\"" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Impossível enviar o comando PORT" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr "Impossível escrever para %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Família de endereços %u desconhecida (AF_*)" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Erro de E/S ao gravar cache fonte" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT falhou, servidor disse: %s" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Conexão do socket de dados expirou" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossível aceitar conexão" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema criando o hash do arquivo" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Impossível obter arquivo, servidor disse '%s'" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Socket de dados expirou" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:935 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "renomeação falhou, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash Sum incorreto" +msgid "Data transfer failed, server said '%s'" +msgstr "Transferência de dados falhou, servidor disse '%s'" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Tamanho incorreto" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Pesquisa" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operação %s inválida" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Impossível invocar " -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Impossível analisar arquivo de pacote %s (1)" - -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Não existem chaves públicas para os seguintes IDs de chaves:\n" +msgid "Connecting to %s (%s)" +msgstr "Conectando em %s (%s)" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:87 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:94 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +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)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:100 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Não foi possível iniciar a conexão para %s:%s (%s)." -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:108 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Não foi possível conectar em %s:%s (%s), conexão expirou" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:126 #, 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 "" -"Não foi possível localizar um arquivo para o pacote %s. Isto pode significar " -"que você precisa consertar manualmente este pacote. (devido a arquitetura " -"não especificada)." +msgid "Could not connect to %s:%s (%s)." +msgstr "Não foi possível conectar em %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "Conectando a %s" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo \"Filename:" -"\" para o pacote %s." +msgid "Could not resolve '%s'" +msgstr "Não foi possível resolver '%s'" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Bloco fornecedor %s não contém impressão digital (\"fingerprint\")" +msgid "Temporary failure resolving '%s'" +msgstr "Falha temporária resolvendo '%s'" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Diretório de listas %spartial está faltando." +msgid "System error resolving '%s:%s'" +msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Diretório de arquivos %spartial está faltando." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Impossível criar trava no diretório de listas" +msgid "Unable to connect to %s:%s:" +msgstr "Impossível conectar em %s %s:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Obtendo o arquivo %li de %li (%s restantes)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Erro interno: Assinatura boa, mas não foi possível determinar a impressão " +"digital da chave?!" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Obtendo arquivo %li de %li" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Ao menos uma assinatura inválida foi encontrada." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os " -"antigos foram usados no lugar." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Você deve colocar algumas URIs 'source' em seu sources.list" +"Não foi possível executar '%s' para verificar a assinatura (o gpgv está " +"instalado?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Registro inválido no arquivo de preferências, sem cabeçalho Package" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Não foi possível entender o tipo de \"pin\" %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Erro desconhecido executando gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\"" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "As seguintes assinaturas eram inválidas:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"As assinaturas a seguir não puderam ser verificadas devido à chave pública " +"não estar disponível:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Não foi possível abrir arquivo %s" - -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"Esta execução de instalação requererá a remoção temporária do pacote " -"essencial %s devido a um loop de Conflitos/Pré-Dependências. Isso geralmente " -"é ruim, mas se você realmente quer fazer isso, ative a opção APT::Force-" -"LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Linha %u muito longa na lista de fontes %s." -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando CD-ROM...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Erro escrevendo para o arquivo" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Usando ponto de montagem de CD-ROM %s\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Aguardando por disco...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Erro lendo do servidor" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando CD-ROM...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Erro escrevendo para arquivo" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Seleção falhou" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Rótulo armazenado: %s \n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Conexão expirou" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Procurando por arquivos de índice no disco...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Erro escrevendo para arquivo de saída" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Encontrado(s) %zu índice(s) de pacote(s), %zu índice(s) de fonte(s), %zu " -"índice(s) de traduções e %zu assinatura(s)\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Aguardando por cabeçalhos" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Linha de cabeçalho ruim" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Rótulo encontrado: '%s'\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Este não é um nome válido, tente novamente.\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "O servidor HTTP enviou um cabeçalho \"Content-Length\" inválido" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Esse disco é chamado: \n" -"'%s'\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "O servidor HTTP enviou um cabeçalho \"Content-Range\" inválido" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiando lista de pacotes..." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Este servidor HTTP possui suporte a \"range\" quebrado" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Gravando nova lista de fontes\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de data desconhecido" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Entradas na lista de fontes para este disco são:\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Dados de cabeçalho ruins" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um " -"arquivo para o mesmo." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Conexão falhou" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " -"pacotes mantidos (hold)." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Erro interno" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Impossível corrigir problemas, você manteve (hold) pacotes quebrados." +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando atualização... " -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Construindo árvore de dependências" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Pronto" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versões candidatas" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Geração de dependência" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lendo informação de estado" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Falha ao abrir Arquivo de Estado (\"StateFile\") %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Corrigindo dependências..." -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Falha ao escrever Arquivo de Estado (\"StateFile\") temporário %s" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " falhou." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Impossível analisar arquivo de pacote %s (1)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Impossível corrigir dependências" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Impossível analisar arquivo de pacote %s (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Impossível minimizar o conjunto de atualizações" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release '%s' para '%s' não foi encontrada" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Pronto" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versão '%s' para '%s' não foi encontrada" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Você pode querer executar 'apt-get -f install' para corrigí-los." -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Impossível achar tarefa %s" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependências desencontradas. Tente usar -f." -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Impossível achar pacote %s" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Impossível achar pacote %s" +msgid "[installed,upgradable to: %s]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "mas %s está instalado" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "mas %s está para ser instalado" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Impossível analisar arquivo de pacote %s (1)" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mas não é instalável" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Nota, selecionando %s ao invés de %s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mas é um pacote virtual" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mas não está instalado" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Linha inválida no arquivo de desvios: %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mas não será instalado" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Impossível analisar arquivo de pacote %s (1)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ou" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Os pacotes a seguir têm dependências desencontradas:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Os NOVOS pacotes a seguir serão instalados:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Os pacotes a seguir serão REMOVIDOS:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Os pacotes a seguir serão atualizados:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Os pacotes a seguir serão REVERTIDOS:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Os seguintes pacotes mantidos serão mudados:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" +msgid "%s (due to %s) " +msgstr "%s (por causa de %s) " -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"AVISO: Os pacotes essenciais a seguir serão removidos.\n" +"Isso NÃO deveria ser feito a menos que você saiba exatamente o que você está " +"fazendo!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição absoluta)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Abrindo %s" +msgid "%lu downgraded, " +msgstr "%lu revertidos, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Linha mal formada %u no arquivo de fontes %s (tipo)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu a serem removidos e %lu não atualizados.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pacotes não totalmente instalados ou removidos.\n" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instalando %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Removendo %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s completamente removido" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "O comando update não leva argumentos" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Executando gatilho pós-instalação %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Diretório '%s' está faltando" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Não foi possível abrir arquivo %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pacotes precisam ser removidos mas a remoção está desabilitada." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Desempacotando %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Erro interno, Ordenação não finalizou" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Preparando para configurar %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Que estranho... Os tamanhos não batem, mande e-mail para apt@packages.debian." +"org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s instalado" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "É preciso baixar %sB/%sB de arquivos.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparando para a remoção de %s" +msgid "Need to get %sB of archives.\n" +msgstr "É preciso baixar %sB de arquivos.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s removido" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Depois desta operação, %sB adicionais de espaço em disco serão usados.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparando para remover completamente %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Depois desta operação, %sB de espaço em disco serão liberados.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s completamente removido" +msgid "You don't have enough free space in %s." +msgstr "Você não possui espaço suficiente em %s." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Há problemas e -y foi usado sem --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Impossível escrever para %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "\"Trivial Only\" especificado mas esta não é uma operação trivial." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sim, faça o que eu digo!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Você está prestes a fazer algo potencialmente destrutivo.\n" +"Para continuar digite a frase '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abortar." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Você quer continuar?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Alguns arquivos falharam ao baixar" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Impossível buscar alguns arquivos, talvez executar apt-get update ou tentar " +"com --fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing e troca de mídia não são suportados atualmente" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Impossível corrigir pacotes faltantes." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Abortando instalação." -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nós não deveríamos apagar coisas, impossível iniciar AutoRemover" + +#: apt-private/private-install.cc:499 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" +"Hmm, parece que o AutoRemover destruiu algo o que realmente não deveria\n" +"acontecer. Por favor, reporte um bug contra o apt." -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Impossível criar trava no diretório de listas" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "A informação a seguir pode ajudar a resolver a situação:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Erro Interno, o AutoRemover quebrou coisas" + +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +"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] "" +"Os seguintes pacotes foram automaticamente instalados e não são mais " +"requeridos:" +msgstr[1] "" +"Os seguintes pacotes foram automaticamente instalados e não são mais " +"requeridos:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:517 +#, fuzzy, 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] "" +"Os seguintes pacotes foram automaticamente instalados e não são mais " +"requeridos:" +msgstr[1] "" +"Os seguintes pacotes foram automaticamente instalados e não são mais " +"requeridos:" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Use 'apt-get autoremove' para removê-los." +msgstr[1] "Use 'apt-get autoremove' para removê-los." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Você deve querer executar 'apt-get -f install' para corrigí-los:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote " +"(ou especifique uma solução)." -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" +#: apt-private/private-install.cc:638 +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 "" +"Alguns pacotes não puderam ser instalados. Isto pode significar que\n" +"você solicitou uma situação impossível ou, se você está usando a\n" +"distribuição instável, que alguns pacotes requeridos não foram\n" +"criados ainda ou foram retirados da \"Incoming\"." -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pacotes quebrados" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "Seleção %s não encontrada" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Os pacotes extra a seguir serão instalados:" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Não usando travamento para arquivo de trava somente leitura %s" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pacotes sugeridos:" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Não foi possível abrir arquivo de trava %s" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pacotes recomendados:" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:825 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Não usando travamento para arquivo de trava montado via nfs %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Não foi possível obter trava %s" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:841 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "A reinstalação de %s não é possível, não pode ser baixado.\n" -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/private-install.cc:846 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +msgid "%s is already the newest version.\n" +msgstr "%s já é a versão mais nova.\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versão selecionada %s (%s) para %s\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versão selecionada %s (%s) para %s\n" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Sub-processo %s recebeu uma falha de segmentação." +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "O pacote %s não está instalado, então não será removido\n" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-install.cc:947 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Sub-processo %s recebeu uma falha de segmentação." +msgid "Package '%s' is not installed, so not removed\n" +msgstr "O pacote %s não está instalado, então não será removido\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Sub-processo %s retornou um código de erro (%u)" +#: apt-private/private-main.cc:32 +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 "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Sub-processo %s finalizou inesperadamente" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema fechando o arquivo" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Aviso de autenticação sobreposto.\n" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Não foi possível abrir arquivo %s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Alguns pacotes não puderam ser autenticados" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Não foi possível abrir \"pipe\" para %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalar estes pacotes sem verificação?" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Falhou ao criar sub-processo IPC" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Falha ao baixar %s %s\n" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Falhou ao executar compactador " +#: apt-private/private-sources.cc:70 +#, c-format +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "leitura, ainda restam %lu para serem lidos mas nenhum deixado" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escrita, ainda restam %lu para gravar mas não foi possível" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atingido " -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Problema fechando o arquivo" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Obter:" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problema sincronizando o arquivo" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Problema removendo o arquivo" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problema sincronizando o arquivo" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Baixados %sB em %s (%sB/s)\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Erro!" +msgid " [Working]" +msgstr " [Trabalhando]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Pronto" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Troca de mídia: por favor, insira o disco nomeado\n" +" '%s'\n" +"na unidade '%s' e pressione enter\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Pronto" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Não foi possível fazer \"mmap\" de um arquivo vazio" +msgid "Can not read mirror file '%s'" +msgstr "Não foi possível abrir arquivo %s" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Não foi possível abrir \"pipe\" para %s" +msgid "No entry found in mirror file '%s'" +msgstr "Não foi possível abrir arquivo %s" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Não foi possível fazer \"mmap\" de %lu bytes" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Falhou ao criar pipe IPC para sub-processo" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Conexão encerrada prematuramente" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configuração padrão ruim!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pressione enter para continuar." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Você quer apagar quaisquer arquivos .deb previamente baixados?" -#: apt-pkg/contrib/mmap.cc:146 +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 #, fuzzy -msgid "Unable to close mmap" -msgstr "Impossível abrir %s" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Alguns erros ocorreram ao desempacotar. Vou configurar os pacotes que foram" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Impossível invocar " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Não foi possível fazer \"mmap\" de %lu bytes" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Falhou ao truncar arquivo" - -#: 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)" +msgid "will be configured. This may result in duplicate errors" msgstr "" +"instalados. Isto pode resultar em erros duplicados ou erros causados por" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"dependências faltantes. Isto está OK, somente os erros acima desta mensagem" -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "são importantes. Por favor, conserte-os e execute [I]nstalar novamente" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Impossível executar \"stat\" no ponto de montagem %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Mesclando informação disponível" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Impossível executar \"stat\" no cdrom" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "\"DropNode\" chamado em nó ainda ligado (\"linked\")" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreviação de tipo desconhecida: '%c'" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Falhou ao localizar o elemento hash!" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Abrindo arquivo de configuração %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Falhou ao alocar desvio (\"diversion\")" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Erro interno em \"AddDiversion\"" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Tentando sobrescrever um desvio, %s -> %s e %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Erro de sintaxe %s:%u: Tag mal formada" +msgid "Double add of diversion %s -> %s" +msgstr "Adição dupla de desvio %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" +msgid "Duplicate conf file %s/%s" +msgstr "Arquivo de configuração duplicado %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto" +msgid "The path %s is too long" +msgstr "O caminho %s é muito longo" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Erro de sintaxe %s:%u: Muitos \"includes\" aninhados" +msgid "Unpacking %s more than once" +msgstr "Desempacotando %s mais de uma vez" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto" +msgid "The directory %s is diverted" +msgstr "O diretório %s é desviado (\"diverted\")" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Erro de sintaxe %s:%u: Não há suporte para a diretiva '%s'" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "O pacote está tentando escrever no alvo do desvio %s/%s" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "O caminho de desvio é muito longo" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Erro de sintaxe %s:%u: Lixo extra no final do arquivo" +msgid "Failed to stat %s" +msgstr "Falhou ao executar \"stat\" %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Abortando instalação." +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Falhou ao renomear %s para %s" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:249 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opção de linha de comando '%c' [de %s] é desconhecida." +msgid "The directory %s is being replaced by a non-directory" +msgstr "O diretório %s está sendo substituído por um não-diretório" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Falha ao localizar nó em seu \"hash bucket\"" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "O caminho é muito longo" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "Opção de linha de comando %s não é compreendida" +msgid "Overwrite package match with no version for %s" +msgstr "Sobrescrita de pacote não combina com nenhuma versão para %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Opção de linha de comando %s não é booleana" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Arquivo %s/%s sobrescreve arquivo no pacote %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "Opção %s requer um argumento." +msgid "Unable to stat %s" +msgstr "Impossível executar \"stat\" em %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Opção %s: Especificação de item de configuração deve possuir um =<val>." +msgid "Failed to write file %s" +msgstr "Falhou ao escrever arquivo %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opção %s requer um argumento inteiro, não '%s'" +msgid "Failed to close file %s" +msgstr "Falhou ao fechar arquivo %s" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "Opção '%s' é muito longa" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Este não é um arquivo DEB válido, membro '%s' faltando" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Sentido %s não é compreendido, tente verdadeiro ou falso." +msgid "Internal error, could not locate member %s" +msgstr "Erro interno, não foi possível localizar membro %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Arquivo de controle não interpretável" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Assinatura de arquivo inválida" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Erro na leitura de cabeçalho membro de arquivo" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Cabeçalho membro de arquivo inválido" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Cabeçalho membro de arquivo inválido" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arquivo é muito pequeno" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Falhou ao ler os cabeçalhos do arquivo" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Falhou ao criar \"pipes\"" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Falhou ao executar gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arquivo corrompido" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Checksum do arquivo tar falhou, arquivo corrompido" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Operação %s inválida" +msgid "Unknown TAR header type %u, member %s" +msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3544,7 +3549,7 @@ msgstr "Falhou ao ler durante o cálculo MD5" msgid "Problem unlinking %s" msgstr "Problema removendo %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3599,6 +3604,10 @@ msgstr "" " -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" "tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Erro interno, AllUpgrade quebrou coisas" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s não é um pacote DEB válido." diff --git a/po/ro.po b/po/ro.po index 1ce07f594..4db62978f 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor <eddy.petrisor@gmail.com>\n" "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n" @@ -19,3187 +19,3191 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Tipul de fișier index '%s' nu este suportat" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pachetul %s versiunea %s are o dependență neîndeplinită:\n" +msgid "Unable to read %s" +msgstr "Nu s-a putut citi %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Total nume pachete : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Nu pot schimba la %s" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Total nume pachete : " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Nu pot determina starea %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pachete normale: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pachete virtuale pure: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pachete virtuale singulare: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Sistemul de pachete '%s' nu este suportat" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pachete virtuale mixte: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nu s-a putut determina un tip de sistem de împachetare potrivit" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Lipsă: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "S-au scris %i înregistrări.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Total versiuni distincte: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "S-au scris %i înregistrări cu %i fișiere lipsă.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Numărul total de descrieri distincte: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "S-au scris %i înregistrări cu %i fișiere nepotrivite\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Total dependențe: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"S-au scris %i înregistrări cu %i fișiere lipsă și %i fișiere nepotrivite\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Total relații versiune/fișier: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Total relații desc/fișier: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Nepotrivire la suma de căutare" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Total cartări Furnizează: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Metoda driver %s nu poate fi găsită." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Total șiruri înglobate: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Total spațiu versiuni ale dependențelor: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Metoda %s nu s-a lansat corect" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Total spațiu intern: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Vă rog introduceți discul numit: '%s' în unitatea '%s' și apăsați Enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Total spațiu contorizat pentru: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Listele de pachete sau fișierul de stare n-au putut fi analizate sau " +"deschise." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Fișierul pachetului %s este desincronizat." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Ați putea vrea să porniți 'apt-get update' pentru a corecta aceste probleme." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nu s-au găsit pachete" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Lista surselor nu poate fi citită." -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Trebuie să dați exact un șablon" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache gol de pachet" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Cache-ul fișierului pachet este deteriorat" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Fișierul cache al pachetului este o versiune incompatibilă" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Cache-ul fișierului pachet este deteriorat" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Nu s-a putut localiza pachetul %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Acest APT nu suportă versioning system '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Fișiere pachet: " +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Cache-ul este desincronizat, nu se poate executa x-ref pe un fișier pachet" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depinde" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pachete alese special:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pre-depinde" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(negăsit)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugerează" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalat: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomandă" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidează: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Este în conflict" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(niciunul)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Înlocuiește" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pachet ales special: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Învechit" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela de versiuni:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Corupe" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pentru %s compilat la %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Utilizare: apt-cache [opțiuni] comanda\n" -" apt-cache [opțiuni] add fișier1 [fișier2 ...]\n" -" apt-cache [opțiuni] showpkg pachet1 [pachet2 ...]\n" -" apt-cache [opțiuni] showsrc pachet1 [pachet2 ...]\n" -"\n" -"apt-cache este o unealtă de nivel scăzut pentru manipularea fișierelor\n" -"binare din cache-ul APT, și de interogare a informațiilor din ele\n" -"\n" -"Comenzi:\n" -" add - Adaugă un fișier pachet la cache-ul sursă\n" -" gencaches - Generează cache-ul de pachete și cache-ul de surse\n" -" showpkg - Arată câteva informații generale pentru un pachet\n" -" showsrc - Arată înregistrările despre sursă\n" -" stats - Arată câteva statistici de bază\n" -" dump - Arată întregul fișier într-o formă concisă\n" -" dumpavail - Afișează un fișier disponibil la ieșirea standard\n" -" unmet - Arată dependențele neîndeplinite\n" -" search - Caută în lista de pachete folosind un șablon regex\n" -" show - Arată o înregistrare lizibilă pentru pachet\n" -" depends - Arată informații brute de dependențe pentru un pachet\n" -" rdepends - Arată dependențele inverse pentru un pachet\n" -" pkgnames - Afișează numele tuturor pachetelor din sistem\n" -" dotty - Generează grafice cu pachete pentru GraphViz\n" -" xvcg - Generează grafice cu pachete pentru xvcg\n" -" policy - Arată configurațiile de politici\n" -"\n" -"Opțiuni:\n" -" -h Acest text de ajutor.\n" -" -p=? Cache-ul de pachete.\n" -" -s=? Cache-ul de surse.\n" -" -q Dezactivează indicatorul de progres.\n" -" -i Arată doar dependențele importante pentru comanda „unmet”.\n" -" -c=? Citește acest fișier de configurare\n" -" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -"Vedeți manualele apt-cache(8) și apt.conf(5) pentru mai multe informații.\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "important" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Furnizați un nume pentru acest disc, de exemplu „Debian 2.1r1 Disk 1”" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "cerut" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Introduceți un disc în unitate și apăsați Enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Eșec la redenumirea lui %s în %s" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opțional" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repetați această procedură pentru restul CD-urilor din set." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Tipul de fișier index '%s' nu este suportat" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentele nu sunt perechi" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Eroare de compilare expresie regulată - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Utilizare: apt-config [opțiuni] comanda\n" -"\n" -"apt-config este o unealtă simplă pentru citirea fișierului de configurare " -"APT\n" -"\n" -"Comenzi:\n" -" shell - Modul consolă\n" -" dump - Arată configurația\n" -"\n" -"Opțiuni:\n" -" -h Acest text de ajutor.\n" -" -c=? Citește acest fișier de configurare\n" -" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Cache are un versioning system incompatibil" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nu pot găsi pachetul %s" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Eroare apărută în timpul procesării %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nu pot găsi pachetul %s" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Mamăăă, ați depășit numărul de nume de pachete de care este capabil acest " +"APT." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nu pot găsi pachetul %s" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"Mamăăă, ați depășit numărul de versiuni de care este capabil acest APT." -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Nu pot determina starea listei surse de pachete %s" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Mamăăă, ați depășit numărul de descrieri de care este capabil acest APT." -#: cmdline/apt-get.cc:423 +#: apt-pkg/pkgcachegen.cc:266 +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:576 #, c-format -msgid "Can not find version '%s' of package '%s'" +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" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't find package %s" -msgstr "Nu pot găsi pachetul %s" +msgid "Couldn't stat source package list %s" +msgstr "Nu pot determina starea listei surse de pachete %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Citire liste de pachete" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Colectare furnizori fișier" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +msgid "Unable to write to %s" +msgstr "Nu s-a putut scrie în %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Eroare IO în timpul salvării sursei cache" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -"Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nu s-a putut bloca directorul de descărcare" - -#: cmdline/apt-get.cc:726 -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:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Nu s-a putut găsi o sursă pachet pentru %s" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Sar peste fișierul deja descărcat '%s'\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "redenumire eșuată, %s (%s -> %s)." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "N-am putut determina spațiul disponibil în %s" - -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Nu aveți suficient spațiu în %s" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Nepotrivire la suma de căutare" -#. 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:891 -#, 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" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Nepotrivire dimensiune" -#. 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:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Este nevoie să descărcați %sB din arhivele surselor.\n" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operațiune invalidă %s" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Fetch source %s\n" -msgstr "Aducere sursa %s\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Eșec la aducerea unor arhive." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Descărcare completă și în modul doar descărcare" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Nu există nici o cheie publică disponibilă pentru următoarele " +"identificatoare de chei:\n" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Sar peste despachetarea sursei deja despachetate în %s\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Comanda de despachetare '%s' eșuată.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:991 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Comanda de construire '%s' eșuată.\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Procesul copil a eșuat" +#: apt-pkg/acquire-item.cc:1859 +#, 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 "" +"N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea însemna " +"că aveți nevoie să reparați manual acest pachet (din pricina unui arch lipsă)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"Trebuie specificat cel puțin un pachet pentru a-i verifica dependențele " -"înglobate" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Fișierele index de pachete sunt deteriorate. Fără câmpul 'nume fișier:' la " +"pachetul %s." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nu pot prelua informațiile despre dependențele înglobate ale lui %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Blocul vânzător %s nu conține amprentă" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s nu are dependențe înglobate.\n" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Directorul de liste %spartial lipsește." -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " -"poate fi găsit" +msgid "Archives directory %spartial is missing." +msgstr "Directorul de arhive %spartial lipsește." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Nu pot încuia directorul cu lista" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Se descarcă fișierul %li din %li (%s rămas)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Se descarcă fișierul %li din %li" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Eșec la aducerea lui %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " -"poate fi găsit" +"Descărcarea unor fișiere index a eșuat, acestea fie au fost ignorate, fie au " +"fost folosite în loc unele vechi." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Trebuie să puneți niște 'surse' de URI în sources.list" + +#: apt-pkg/policy.cc:83 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Eșec la satisfacerea dependenței %s pentru %s: Pachetul instalat %s este " -"prea nou" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Înregistrare invalidă în fișierul de preferințe, fără antet de pachet" + +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Nu s-a înțeles tipul de pin %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Fără prioritate (sau zero) specificată pentru pin" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" 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:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nu s-a putut deschide fișierul %s" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " -"poate fi găsit" +"Aceasta instalare va avea nevoie de ștergerea temporară a pachetului " +"esențial %s din cauza unui bucle conflict/pre-dependență. Asta de multe ori " +"nu-i de bine, dar dacă vreți întradevăr s-o faceți, activați opțiunea APT::" +"Force-LoopBreak." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Eșec la satisfacerea dependenței %s pentru %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Linia %u prea lungă în lista sursă %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Se demontează CD-ul...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Dependențele înglobate pentru %s nu pot fi satisfăcute." +msgid "Using CD-ROM mount point %s\n" +msgstr "Utilizare punct de montare CD-ROM %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Eșec la prelucrarea dependențelor de compilare" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Aștept discul...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Conectare la %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montez CD-ROM...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Module suportate:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificare... " -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etichetă memorată: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Scanez discul de fișierele index...\n" + +# DEVELOPERS: please consider using somehow plural forms +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Utilizare: apt-get [opțiuni] comanda\n" -" apt-get [opțiuni] install|remove pachet1 [pachet2 ...]\n" -" apt-get [opțiuni] source pachet1 [pachet2 ...]\n" -"\n" -"apt-get este o simplă interfață în linie de comandă pentru descărcarea și\n" -"instalarea pachetelor. Cele mai frecvent folosite comenzi sunt update\n" -"și install.\n" -"\n" -"Comenzi:\n" -" update - Aduce listele noi de pachete\n" -" upgrade - Realizează o înnoire\n" -" install - Instalează pachete noi (pachet este libc6, nu libc6.deb)\n" -" remove - Șterge pachete\n" -" autoremove - Șterge automat toate pachetele nefolosite\n" -" purge - Șterge și curăță pachete\n" -" source - Descarcă pachete-sursă\n" -" build-dep - Configurează dependențele de compilare pentru\n" -" pachetele-sursă\n" -" dist-upgrade - Înnoirea distribuției, a se vedea apt-get(8)\n" -" dselect-upgrade - Urmează selecțiile dselect\n" -" clean - Șterge fișierele-arhivă descărcate\n" -" autoclean - Șterge fișiere-arhivă descărcate învechite\n" -" check - Verifică dacă există dependențe neîndeplinite\n" -"\n" -"Opțiuni:\n" -" -h Acest text de ajutor.\n" -" -q Afișare jurnalizabilă - fără indicator de progres\n" -" -qq Fără afișare, cu excepția erorilor\n" -" -d Doar descărcare - NU instala sau despacheta arhive\n" -" -s Fără acțiune. Realizează o simulare\n" -" -y Presupune DA ca răspuns la toate întrebările și nu\n" -" solicita răspuns\n" -" -f Încearcă corectarea unui sistem cu dependențe corupte\n" -" -m Încearcă continuarea dacă arhivele nu pot fi găsite\n" -" -u Arată o listă de pachete ce pot fi înnoite\n" -" -b Construiește sursa pachetului după aducere\n" -" -V Arată versiunile în mod logoreic\n" -" -c=? Citește acest fișier de configurare\n" -" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -"Vedeți manualele apt-get(8), sources.list(5) și apt.conf(5)\n" -"pentru mai multe informații și opțiuni.\n" -" Acest APT are puterile unei Super Vaci.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Au fost găsite %zu indexuri de pachete, %zu indexuri de surse, %zu indexuri " +"de traduceri și %zu semnături\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "dar nu este instalat" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s este deja la cea mai nouă versiune.\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "A fost găsită eticheta „%s”\n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s este deja la cea mai nouă versiune.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Acesta nu este un nume valid, mai încercați.\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Așteptat %s, dar n-a fost acolo" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Acest disc este numit: \n" +"'%s'\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiez listele de pachete.." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Eșec la „open” pentru %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Scriere noua listă sursă\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Intrările listei surselor pentru acest disc sunt:\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " +"cauzată de pachete ținute." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nu s-a putut citi baza de date de CD %s" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Nu pot corecta problema, ați ținut pachete deteriorate." -#: 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 "" -"Folosiți apt-cdrom pentru a-l face pe APT să recunoască acest CD. „apt-get " -"update” nu poate fi folosit pentru adăugarea de noi CD-uri" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Se construiește arborele de dependență" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM necorespunzător" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versiuni candidat" -#: methods/cdrom.cc:249 +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generare dependențe" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Se citesc informațiile de stare" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nu se poate demonta CD-ul din %s, poate este încă utilizat." +msgid "Failed to open StateFile %s" +msgstr "Eșec la deschiderea fișierului de stare %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disc negăsit." +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Eșec la scrierea fișierului temporar de stare %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fișier negăsit" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Eșec la „stat”" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nu s-a putut analiza fișierul pachet %s (2)" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Eșec la ajustarea timpului de modificare" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' pentru '%s' n-a fost găsită" + +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versiunea '%s' pentru '%s' n-a fost găsită" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI invalid, URI-uile locale trebuie să nu înceapă cu //" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nu s-a putut localiza pachetul %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Se autentifică" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Nu s-a putut găsi sarcina %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nu se poate detecta numele perechii" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nu pot găsi pachetul %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nu s-a putut detecta numele local" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nu pot găsi pachetul %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Serverul a refuzat conexiunea și a spus: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "USER failed, server said: %s" -msgstr "„USER” a eșuat, serverul a spus: %s" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "PASS failed, server said: %s" -msgstr "„PASS” a eșuat, serverul a spus: %s" - -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Un server proxy a fost precizat, dar nu există nici un script de conectare, " -"Acquire::ftp::ProxyLogin este gol." -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Scriptul „%s” cu comenzile de conectare a eșuat, serverul a spus: %s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "„TYPE” a eșuat, serverul a spus: %s" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Timpul de conectare a expirat" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Serverul a închis conexiunea" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Notă, se selectează %s în locul lui %s\n" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Eroare de citire" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Un răspuns a depășit zona de tampon." +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Linie necorespunzătoare în fișierul-redirectare: %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocol corupt" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Eroare de scriere" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nu s-a putut crea un socket" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Nu s-a putut realiza conectarea la socket-ul de date, timpul de conectare a " -"expirat" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Linie greșită %lu în lista sursă %s (dist)" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Eșec" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nu s-a putut realiza conectarea la un socket pasiv" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "„getaddrinfo” n-a reușit să obțină un socket de ascultare" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nu s-a putut realiza asocierea la un socket" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Linie greșită %lu în lista sursă %s (URI)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nu s-a putut asculta pe socket" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Linie greșită %lu în lista sursă %s (dist)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nu s-a putut detecta numele socket-ului" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nu s-a putut trimite comanda PORT" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Linie greșită %lu în lista sursă %s (dist. absolută)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Familie de adrese necunoscută %u (AF_*)" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "„EPRT” a eșuat, serverul a spus: %s" +msgid "Opening %s" +msgstr "Deschidere %s" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Timpul de conectare la socket-ul de date expirat" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Linie greșită %u în lista sursă %s (tip)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nu s-a putut accepta conexiune" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problemă la calcularea dispersiei pentru fișierul" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nu s-a putut aduce fișierul, serverul a spus „%s”" +msgid "Installing %s" +msgstr "Se instalează %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Timp expirat pentru socket-ul de date" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Se configurează %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Transferul de date a eșuat, serverul a spus: '%s'" +msgid "Removing %s" +msgstr "Se șterge %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Interogare" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Șters complet %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nu s-a putut invoca" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectare la %s (%s)" +msgid "Running post-installation trigger %s" +msgstr "Se rulează declanșatorul post-instalare %s" -#: methods/connect.cc:87 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Directory '%s' missing" +msgstr "Directorul „%s” lipsește." -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Nu s-a putut deschide fișierul %s" + +#: apt-pkg/deb/dpkgpm.cc:989 #, 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)" +msgid "Preparing %s" +msgstr "Se pregătește %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nu s-a putut iniția conexiunea cu %s:%s (%s)." +msgid "Unpacking %s" +msgstr "Se despachetează %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:995 #, 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" +msgid "Preparing to configure %s" +msgstr "Se pregătește configurarea %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nu s-a putut realiza conexiunea cu %s:%s (%s)." +msgid "Installed %s" +msgstr "Instalat %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Connecting to %s" -msgstr "Conectare la %s" +msgid "Preparing for removal of %s" +msgstr "Se pregătește ștergerea lui %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nu s-a putut rezolva „%s”" +msgid "Removed %s" +msgstr "Șters %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Eșec temporar la rezolvarea lui „%s”" +msgid "Preparing to completely remove %s" +msgstr "Se pregătește ștergerea completă a %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Șters complet %s" -#: 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)" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nu s-a putut realiza conexiunea cu %s %s:" +msgid "Can not write log (%s)" +msgstr "Nu s-a putut scrie în %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -"Eroare internă: Semnătură corespunzătoare, dar nu s-a putut determina " -"amprenta digitale a cheii?!" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Cel puțin o semnătură nevalidă a fost întâlnită." - -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -"Nu s-a putut executa „%s” pentru verificarea semnăturii (gpgv este instalat?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Waited for %s but it wasn't there" +msgstr "Așteptat %s, dar n-a fost acolo" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Eroare necunoscută în timp ce se execută gpgv" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Următoarele semnături nu au fost valide:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Următoarele semnături n-au putut fi verificate, deoarece cheia publică nu " -"este disponibilă:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Eroare la scrierea în fișierul" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -"Eroare la citirea de la server. Conexiunea a fost închisă de la distanță" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Eroare la citirea de la server" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Eroare la scrierea în fișier" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Selecția a eșuat" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Timp de conectare expirat" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Eroare la scrierea fișierului de rezultat" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "În așteptarea antetelor" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Linie de antet necorespunzătoare" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Serverul HTTP a trimis un antet de răspuns necorespunzător" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Serverul HTTP a trimis un antet Content-Length necorespunzător" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Serverul HTTP a trimis un antet zonă de conținut necorespunzător" - -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Acest server HTTP are un suport defect de intervale" - -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Format dată necunoscut" - -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Antet de date necorespunzător" - -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Conectare eșuată" - -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Eroare internă" - -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculez înnoirea... " - -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Terminat" - -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corectez dependențele..." +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " eșec." +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nu pot încuia directorul cu lista" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nu s-au putut corecta dependențele" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nu s-a putut micșora mulțimea pachetelor de înnoit" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Terminat" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Ați putea să porniți 'apt-get -f install' pentru a corecta acestea." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependențe neîndeplinite. Încercați să folosiți -f." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalat]" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Selecția %s nu a fost găsită" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalat]" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Nu s-a folosit închiderea pentru fișierul disponibil doar-citire %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nu pot deschide fișierul blocat %s" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalat]" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Nu este folosit blocajul pentru fișierul montat nfs %s" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalat]" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Nu pot determina blocajul %s" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "[upgradable from: %s]" +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Următoarele pachete au dependențe neîndeplinite:" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "but %s is installed" -msgstr "dar %s este instalat" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "but %s is to be installed" -msgstr "dar %s este pe cale de a fi instalat" +msgid "Sub-process %s received a segmentation fault." +msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "dar nu este instalabil" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "dar este un pachet virtual" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Subprocesul %s a întors un cod de eroare (%u)" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "dar nu este instalat" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Subprocesul %s s-a terminat brusc" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "dar nu este pe cale să fie instalat" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Eroare de scriere" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " sau" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problemă la închiderea fișierului" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Următoarele pachete NOI vor fi instalate:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nu s-a putut deschide fișierul %s" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Următoarele pachete vor fi ȘTERSE:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Nu s-a putut deschide conexiunea pentru %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Următoarele pachete au fost reținute:" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Eșec la crearea IPC-ului pentru subproces" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Următoarele pachete vor fi ÎNNOITE:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Eșec la executarea compresorului" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Următoarele pachete vor fi DE-GRADATE:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Eroare de citire" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Următoarele pachete ținute vor fi schimbate:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic" -#: apt-private/private-output.cc:655 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (datorită %s) " +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "scriere, încă mai am %lu de scris dar nu pot" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"AVERTISMENT: Următoarele pachete esențiale vor fi șterse.\n" -"Aceasta NU ar trebui făcută decât dacă știți exact ce vreți!" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problemă la închiderea fișierului" -#: apt-private/private-output.cc:694 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu înnoite, %lu nou instalate, " +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problemă în timpul sincronizării fișierului" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalate, " +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Problemă la dezlegarea fișierului" -#: apt-private/private-output.cc:700 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu de-gradate, " +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problemă în timpul sincronizării fișierului" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu de șters și %lu neînnoite.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Eroare!" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu instalate sau șterse incomplet.\n" +msgid "%c%s... Done" +msgstr "%c%s... Terminat" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Terminat" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nu s-a putut executa „mmap” cu un fișier gol" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nu s-a putut deschide conexiunea pentru %s" + +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nu s-a putut face mmap cu %lu octeți" + +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Nu s-a putut deschide %s" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Nu s-a putut invoca" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Regex compilation error - %s" -msgstr "Eroare de compilare expresie regulată - %s" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nu s-a putut face mmap cu %lu octeți" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Comanda de actualizare nu are argumente" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Eșec la trunchierea fișierului" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Nu pot determina starea punctului de montare %s" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Eșec la „stat” pentru CD" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Eroare internă, Ordering nu s-a terminat" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviere de tip nerecunoscut: „%c”" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Ce ciudat... Dimensiunile nu se potrivesc, scrieți la apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Se deschide fișierul de configurare %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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Este nevoie să descărcați %sB/%sB de arhive.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Este nevoie să descărcați %sB de arhive.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Eroare de sintaxă %s:%u: etichetă greșită" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "După această operație vor fi folosiți din disc încă %sB.\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -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" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Nu aveți suficient spațiu în %s." +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Sunt unele probleme și -y a fost folosit fără --force-yes" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Eroare de sintaxă %s:%u: incluse de aici" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'" + +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"A fost specificat 'doar neimportant' dar nu este o operațiune neimportantă." +"Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Da, fă cum îți spun!" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare la sfârșitul fișierului" + +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Abandonez instalarea." -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Sunteți pe cale de a face ceva cu potențial distructiv.\n" -"Pentru a continua tastați fraza '%s'\n" -" ?] " +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opțiunea linie de comandă '%c' [din %s] este necunoscută." -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Renunțare." +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opțiunea linie de comandă %s nu este înțeleasă" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Vreți să continuați?" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opțiunea linie de comandă %s nu este booleană" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Descărcarea unor fișiere a eșuat" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Opțiunea %s necesită un argument" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." 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?" +"Opțiunea %s: Specificația configurării articolului trebuie să aibă o =<val>." -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing și schimbul de mediu nu este deocamdată suportat" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opțiunea %s necesită un argument integru, nu '%s'" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Nu pot corecta pachetele lipsă." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Opțiunea '%s' este prea lungă" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Abandonez instalarea." +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Sensul %s nu este înțeles, încercați adevărat (true) sau fals (false)." -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" -msgstr[2] "" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Operațiune invalidă %s" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pachetul %s versiunea %s are o dependență neîndeplinită:\n" -# XXX: orice sugestie este bine-venită -#: apt-private/private-install.cc:390 -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-cache.cc:277 +msgid "Total package names: " +msgstr "Total nume pachete : " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, se pare că AutoRemover a distrus ceva, lucru care n-ar trebui să se " -"întâmple. Sunteți rugat să trimiteți un raportați de defect pentru pachetul " -"apt." +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Total nume pachete : " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -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-cache.cc:319 +msgid " Normal packages: " +msgstr " Pachete normale: " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pachete virtuale pure: " -#: apt-private/private-install.cc:512 -#, fuzzy -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] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -msgstr[1] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -msgstr[2] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pachete virtuale singulare: " -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -msgstr[1] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -msgstr[2] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pachete virtuale mixte: " -#: apt-private/private-install.cc:518 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -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-cache.cc:323 +msgid " Missing: " +msgstr " Lipsă: " -#: apt-private/private-install.cc:612 -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-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Total versiuni distincte: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -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-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Numărul total de descrieri distincte: " -#: apt-private/private-install.cc:628 -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 "" -"Unele pachete n-au putut fi instalate. Aceasta ar putea însemna că ați " -"cerut\n" -"o situație imposibilă sau că folosiți distribuția instabilă în care unele " -"pachete\n" -"cerute n-au fost create încă sau au fost mutate din Incoming." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Total dependențe: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Pachete deteriorate" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Total relații versiune/fișier: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Următoarele extra pachete vor fi instalate:" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Total relații desc/fișier: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Pachete sugerate:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Total cartări Furnizează: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Pachete recomandate:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Total șiruri înglobate: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Total spațiu versiuni ale dependențelor: " -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Total spațiu intern: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Reinstalarea lui %s nu este posibilă, nu poate fi descărcat.\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Total spațiu contorizat pentru: " -#: apt-private/private-install.cc:836 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s este deja la cea mai nouă versiune.\n" +msgid "Package file %s is out of sync." +msgstr "Fișierul pachetului %s este desincronizat." -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versiune selectată %s (%s) pentru %s\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nu s-au găsit pachete" -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versiune selectată %s (%s) pentru %s\n" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Trebuie să dați exact un șablon" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Fișiere pachet: " -#: apt-private/private-main.cc:32 -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!" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" +"Cache-ul este desincronizat, nu se poate executa x-ref pe un fișier pachet" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pachete alese special:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avertisment de autentificare înlocuit.\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(negăsit)" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Unele pachete n-au putut fi autentificate" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalat: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalați aceste pachete fără verificare?" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidează: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Eșec la aducerea lui %s %s\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(niciunul)" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Eșec la redenumirea lui %s în %s" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pachet ales special: " -#: apt-private/private-sources.cc:70 +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabela de versiuni:" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pentru %s compilat la %s %s\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Utilizare: apt-cache [opțiuni] comanda\n" +" apt-cache [opțiuni] add fișier1 [fișier2 ...]\n" +" apt-cache [opțiuni] showpkg pachet1 [pachet2 ...]\n" +" apt-cache [opțiuni] showsrc pachet1 [pachet2 ...]\n" +"\n" +"apt-cache este o unealtă de nivel scăzut pentru manipularea fișierelor\n" +"binare din cache-ul APT, și de interogare a informațiilor din ele\n" +"\n" +"Comenzi:\n" +" add - Adaugă un fișier pachet la cache-ul sursă\n" +" gencaches - Generează cache-ul de pachete și cache-ul de surse\n" +" showpkg - Arată câteva informații generale pentru un pachet\n" +" showsrc - Arată înregistrările despre sursă\n" +" stats - Arată câteva statistici de bază\n" +" dump - Arată întregul fișier într-o formă concisă\n" +" dumpavail - Afișează un fișier disponibil la ieșirea standard\n" +" unmet - Arată dependențele neîndeplinite\n" +" search - Caută în lista de pachete folosind un șablon regex\n" +" show - Arată o înregistrare lizibilă pentru pachet\n" +" depends - Arată informații brute de dependențe pentru un pachet\n" +" rdepends - Arată dependențele inverse pentru un pachet\n" +" pkgnames - Afișează numele tuturor pachetelor din sistem\n" +" dotty - Generează grafice cu pachete pentru GraphViz\n" +" xvcg - Generează grafice cu pachete pentru xvcg\n" +" policy - Arată configurațiile de politici\n" +"\n" +"Opțiuni:\n" +" -h Acest text de ajutor.\n" +" -p=? Cache-ul de pachete.\n" +" -s=? Cache-ul de surse.\n" +" -q Dezactivează indicatorul de progres.\n" +" -i Arată doar dependențele importante pentru comanda „unmet”.\n" +" -c=? Citește acest fișier de configurare\n" +" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" +"Vedeți manualele apt-cache(8) și apt.conf(5) pentru mai multe informații.\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Atins " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Luat:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ignorat " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Eroare" - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Aduși: %sB în %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Furnizați un nume pentru acest disc, de exemplu „Debian 2.1r1 Disk 1”" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [În lucru]" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Introduceți un disc în unitate și apăsați Enter" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Eșec la redenumirea lui %s în %s" + +#: cmdline/apt-cdrom.cc:178 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Schimbare de mediu: introduceți discul numit\n" -" „%s”\n" -"în unitatea „%s” și apăsați Enter\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Nu s-a putut citi %s" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repetați această procedură pentru restul CD-urilor din set." -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Nu pot schimba la %s" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentele nu sunt perechi" -#. 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 " +#: cmdline/apt-config.cc:89 +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 "" +"Utilizare: apt-config [opțiuni] comanda\n" +"\n" +"apt-config este o unealtă simplă pentru citirea fișierului de configurare " +"APT\n" +"\n" +"Comenzi:\n" +" shell - Modul consolă\n" +" dump - Arată configurația\n" +"\n" +"Opțiuni:\n" +" -h Acest text de ajutor.\n" +" -c=? Citește acest fișier de configurare\n" +" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nu s-a putut deschide fișierul %s" +msgid "Can not find a package for architecture '%s'" +msgstr "Nu pot găsi pachetul %s" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nu s-a putut deschide fișierul %s" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Eșec la crearea conexiunii IPC către subproces" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Conexiune închisă prematur" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nu pot găsi pachetul %s" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configurări implicite necorespunzătoare!" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nu pot găsi pachetul %s" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Apăsați Enter pentru a continua." +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Nu pot determina starea listei surse de pachete %s" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Doriți să ștergeți eventualele fișiere .deb descărcate anterior?" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "S-au produs unele erori în timpul despachetării. Se vor configura" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Nu pot găsi pachetul %s" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "" -"pachetele care au fost instalate. Aceasta ar putea rezulta erori duplicate" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "sau erori cauzate de dependențe lipsă. Fiind normal, doar erorile de" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"deasupra acestui mesaj sunt importante. Corectați-le și reporniți " -"[I]nstalarea" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Se combină informațiile disponibile" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "S-a chemat DropNode pe un nod încă „legat”" - -# XXX: nu-mi place, fie e hash, fie „element de dispersie” -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Eșec la localizarea elementului de dispersie!" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Eșec la alocarea redirectării" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "" +"Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Eroare internă în „AddDiversion”" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nu s-a putut bloca directorul de descărcare" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Încercare de suprascriere a redirectării, %s -> %s și %s/%s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Adăugare dublă de redirectare %s -> %s" +msgid "Unable to find a source package for %s" +msgstr "Nu s-a putut găsi o sursă pachet pentru %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Fișier „conf” duplicat %s/%s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:791 #, c-format -msgid "The path %s is too long" -msgstr "Calea %s este prea lungă" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Unpacking %s more than once" -msgstr "Se despachetează %s de mai multe ori" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Sar peste fișierul deja descărcat '%s'\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "The directory %s is diverted" -msgstr "Directorul %s este redirectat" +msgid "Couldn't determine free space in %s" +msgstr "N-am putut determina spațiul disponibil în %s" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:882 #, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Calea de redirectare este prea lungă" +msgid "You don't have enough free space in %s" +msgstr "Nu aveți suficient spațiu în %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#. 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:891 #, c-format -msgid "Failed to stat %s" -msgstr "Eșec la „stat” pentru %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Este nevoie să descărcați %sB/%sB din arhivele surselor.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. 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:896 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Eșec la redenumirea lui %s în %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Este nevoie să descărcați %sB din arhivele surselor.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Directorul %s este înlocuit de un non-director" +msgid "Fetch source %s\n" +msgstr "Aducere sursa %s\n" -# XXX: nu-mi place, hash bucket ar trebui tradus mai elegant -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Eșec la localizarea nodului în clasa lui din tabela de dispersie" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Eșec la aducerea unor arhive." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Calea este prea lungă" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Descărcare completă și în modul doar descărcare" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Pachet suprascris fără nici o versiune pentru %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Sar peste despachetarea sursei deja despachetate în %s\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:962 #, 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" +msgid "Unpack command '%s' failed.\n" +msgstr "Comanda de despachetare '%s' eșuată.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to stat %s" -msgstr "Nu se poate executa „stat” pe %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Failed to write file %s" -msgstr "Eșec la scrierea fișierului %s" +msgid "Build command '%s' failed.\n" +msgstr "Comanda de construire '%s' eșuată.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Procesul copil a eșuat" + +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "Failed to close file %s" -msgstr "Eșec la închiderea fișierului %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Aceasta nu este o arhivă DEB validă, lipsește membrul „%s”" +msgid "Unable to get build-dependency information for %s" +msgstr "Nu pot prelua informațiile despre dependențele înglobate ale lui %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Eroare internă, nu pot localiza membrul %s" +msgid "%s has no build depends.\n" +msgstr "%s nu are dependențe înglobate.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Fișier de control neanalizabil" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " +"poate fi găsit" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Semnătură de arhivă necorespunzătoare" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " +"poate fi găsit" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Eroare la citirea antetului membrului arhivei" +#: cmdline/apt-get.cc:1312 +#, 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" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1351 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Antet de membru de arhivă necorespunzător" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +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" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Antet de membru de arhivă necorespunzător" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " +"poate fi găsit" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arhiva este prea scurtă" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Eșec la satisfacerea dependenței %s pentru %s: %s" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Eșec la citirea antetelor arhivei" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Dependențele înglobate pentru %s nu pot fi satisfăcute." -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Eșec la crearea conexiunilor" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Eșec la prelucrarea dependențelor de compilare" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Eșec la executarea lui gzip " +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Conectare la %s (%s)" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arhivă deteriorată" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Module suportate:" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" -"Suma de control a arhivei tar nu s-a verificat, arhiva este deteriorată" - -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tip antet TAR %u necunoscut, membrul %s" +"Utilizare: apt-get [opțiuni] comanda\n" +" apt-get [opțiuni] install|remove pachet1 [pachet2 ...]\n" +" apt-get [opțiuni] source pachet1 [pachet2 ...]\n" +"\n" +"apt-get este o simplă interfață în linie de comandă pentru descărcarea și\n" +"instalarea pachetelor. Cele mai frecvent folosite comenzi sunt update\n" +"și install.\n" +"\n" +"Comenzi:\n" +" update - Aduce listele noi de pachete\n" +" upgrade - Realizează o înnoire\n" +" install - Instalează pachete noi (pachet este libc6, nu libc6.deb)\n" +" remove - Șterge pachete\n" +" autoremove - Șterge automat toate pachetele nefolosite\n" +" purge - Șterge și curăță pachete\n" +" source - Descarcă pachete-sursă\n" +" build-dep - Configurează dependențele de compilare pentru\n" +" pachetele-sursă\n" +" dist-upgrade - Înnoirea distribuției, a se vedea apt-get(8)\n" +" dselect-upgrade - Urmează selecțiile dselect\n" +" clean - Șterge fișierele-arhivă descărcate\n" +" autoclean - Șterge fișiere-arhivă descărcate învechite\n" +" check - Verifică dacă există dependențe neîndeplinite\n" +"\n" +"Opțiuni:\n" +" -h Acest text de ajutor.\n" +" -q Afișare jurnalizabilă - fără indicator de progres\n" +" -qq Fără afișare, cu excepția erorilor\n" +" -d Doar descărcare - NU instala sau despacheta arhive\n" +" -s Fără acțiune. Realizează o simulare\n" +" -y Presupune DA ca răspuns la toate întrebările și nu\n" +" solicita răspuns\n" +" -f Încearcă corectarea unui sistem cu dependențe corupte\n" +" -m Încearcă continuarea dacă arhivele nu pot fi găsite\n" +" -u Arată o listă de pachete ce pot fi înnoite\n" +" -b Construiește sursa pachetului după aducere\n" +" -V Arată versiunile în mod logoreic\n" +" -c=? Citește acest fișier de configurare\n" +" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" +"Vedeți manualele apt-get(8), sources.list(5) și apt.conf(5)\n" +"pentru mai multe informații și opțiuni.\n" +" Acest APT are puterile unei Super Vaci.\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Nu pot determina starea %s." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Sistemul de pachete '%s' nu este suportat" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nu s-a putut determina un tip de sistem de împachetare potrivit" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "S-au scris %i înregistrări.\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, 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:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "S-au scris %i înregistrări cu %i fișiere nepotrivite\n" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "dar nu este instalat" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"S-au scris %i înregistrări cu %i fișiere lipsă și %i fișiere nepotrivite\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Nepotrivire la suma de căutare" +msgid "%s was already set on hold.\n" +msgstr "%s este deja la cea mai nouă versiune.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Metoda driver %s nu poate fi găsită." +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s este deja la cea mai nouă versiune.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" +msgid "%s set on hold.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoda %s nu s-a lansat corect" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Eșec la „open” pentru %s" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Vă rog introduceți discul numit: '%s' în unitatea '%s' și apăsați Enter." -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"Listele de pachete sau fișierul de stare n-au putut fi analizate sau " -"deschise." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Ați putea vrea să porniți 'apt-get update' pentru a corecta aceste probleme." -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Lista surselor nu poate fi citită." +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Nu s-a putut citi baza de date de CD %s" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache gol de pachet" +#: 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 "" +"Folosiți apt-cdrom pentru a-l face pe APT să recunoască acest CD. „apt-get " +"update” nu poate fi folosit pentru adăugarea de noi CD-uri" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Cache-ul fișierului pachet este deteriorat" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM necorespunzător" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Fișierul cache al pachetului este o versiune incompatibilă" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nu se poate demonta CD-ul din %s, poate este încă utilizat." -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Cache-ul fișierului pachet este deteriorat" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disc negăsit." -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Acest APT nu suportă versioning system '%s'" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fișier negăsit" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Eșec la „stat”" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depinde" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Eșec la ajustarea timpului de modificare" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pre-depinde" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI invalid, URI-uile locale trebuie să nu înceapă cu //" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugerează" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Se autentifică" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomandă" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nu se poate detecta numele perechii" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Este în conflict" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nu s-a putut detecta numele local" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Înlocuiește" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Serverul a refuzat conexiunea și a spus: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Învechit" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "„USER” a eșuat, serverul a spus: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Corupe" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "„PASS” a eșuat, serverul a spus: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"Un server proxy a fost precizat, dar nu există nici un script de conectare, " +"Acquire::ftp::ProxyLogin este gol." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "important" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "cerut" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Scriptul „%s” cu comenzile de conectare a eșuat, serverul a spus: %s" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "„TYPE” a eșuat, serverul a spus: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opțional" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Timpul de conectare a expirat" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Serverul a închis conexiunea" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Tipul de fișier index '%s' nu este suportat" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Un răspuns a depășit zona de tampon." -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cache are un versioning system incompatibil" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocol corupt" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Eroare apărută în timpul procesării %s (FindPkg)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nu s-a putut crea un socket" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -"Mamăăă, ați depășit numărul de nume de pachete de care este capabil acest " -"APT." +"Nu s-a putut realiza conectarea la socket-ul de date, timpul de conectare a " +"expirat" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Mamăăă, ați depășit numărul de versiuni de care este capabil acest APT." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Eșec" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Mamăăă, ați depășit numărul de descrieri de care este capabil acest APT." +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nu s-a putut realiza conectarea la un socket pasiv" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "„getaddrinfo” n-a reușit să obțină un socket de ascultare" -#: apt-pkg/pkgcachegen.cc:576 -#, 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" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nu s-a putut realiza asocierea la un socket" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nu pot determina starea listei surse de pachete %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nu s-a putut asculta pe socket" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Citire liste de pachete" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nu s-a putut detecta numele socket-ului" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Colectare furnizori fișier" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nu s-a putut trimite comanda PORT" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr "Nu s-a putut scrie în %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Familie de adrese necunoscută %u (AF_*)" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Eroare IO în timpul salvării sursei cache" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "„EPRT” a eșuat, serverul a spus: %s" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Timpul de conectare la socket-ul de date expirat" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nu s-a putut accepta conexiune" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problemă la calcularea dispersiei pentru fișierul" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Nu s-a putut aduce fișierul, serverul a spus „%s”" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Timp expirat pentru socket-ul de date" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:935 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "redenumire eșuată, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Nepotrivire la suma de căutare" +msgid "Data transfer failed, server said '%s'" +msgstr "Transferul de date a eșuat, serverul a spus: '%s'" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Nepotrivire dimensiune" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Interogare" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operațiune invalidă %s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nu s-a putut invoca" -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nu s-a putut analiza fișierul pachet %s (1)" - -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Nu există nici o cheie publică disponibilă pentru următoarele " -"identificatoare de chei:\n" +msgid "Connecting to %s (%s)" +msgstr "Conectare la %s (%s)" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:87 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:94 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +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)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:100 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nu s-a putut iniția conexiunea cu %s:%s (%s)." -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:108 #, c-format -msgid "GPG error: %s: %s" +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" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:126 #, 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 "" -"N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea însemna " -"că aveți nevoie să reparați manual acest pachet (din pricina unui arch lipsă)" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nu s-a putut realiza conexiunea cu %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "Conectare la %s" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Fișierele index de pachete sunt deteriorate. Fără câmpul 'nume fișier:' la " -"pachetul %s." +msgid "Could not resolve '%s'" +msgstr "Nu s-a putut rezolva „%s”" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Blocul vânzător %s nu conține amprentă" +msgid "Temporary failure resolving '%s'" +msgstr "Eșec temporar la rezolvarea lui „%s”" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Directorul de liste %spartial lipsește." +msgid "System error resolving '%s:%s'" +msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Directorul de arhive %spartial lipsește." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Nu pot încuia directorul cu lista" +msgid "Unable to connect to %s:%s:" +msgstr "Nu s-a putut realiza conexiunea cu %s %s:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Se descarcă fișierul %li din %li (%s rămas)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Eroare internă: Semnătură corespunzătoare, dar nu s-a putut determina " +"amprenta digitale a cheii?!" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Se descarcă fișierul %li din %li" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Cel puțin o semnătură nevalidă a fost întâlnită." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Descărcarea unor fișiere index a eșuat, acestea fie au fost ignorate, fie au " -"fost folosite în loc unele vechi." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Trebuie să puneți niște 'surse' de URI în sources.list" +"Nu s-a putut executa „%s” pentru verificarea semnăturii (gpgv este instalat?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Înregistrare invalidă în fișierul de preferințe, fără antet de pachet" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Nu s-a înțeles tipul de pin %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Eroare necunoscută în timp ce se execută gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Fără prioritate (sau zero) specificată pentru pin" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Următoarele semnături nu au fost valide:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"Următoarele semnături n-au putut fi verificate, deoarece cheia publică nu " +"este disponibilă:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Nu s-a putut deschide fișierul %s" - -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"Aceasta instalare va avea nevoie de ștergerea temporară a pachetului " -"esențial %s din cauza unui bucle conflict/pre-dependență. Asta de multe ori " -"nu-i de bine, dar dacă vreți întradevăr s-o faceți, activați opțiunea APT::" -"Force-LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Linia %u prea lungă în lista sursă %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Se demontează CD-ul...\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Utilizare punct de montare CD-ROM %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Eroare la scrierea în fișierul" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Aștept discul...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" +"Eroare la citirea de la server. Conexiunea a fost închisă de la distanță" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montez CD-ROM...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Eroare la citirea de la server" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificare... " +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Eroare la scrierea în fișier" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etichetă memorată: %s \n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Selecția a eșuat" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Scanez discul de fișierele index...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Timp de conectare expirat" -# DEVELOPERS: please consider using somehow plural forms -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Au fost găsite %zu indexuri de pachete, %zu indexuri de surse, %zu indexuri " -"de traduceri și %zu semnături\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Eroare la scrierea fișierului de rezultat" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "În așteptarea antetelor" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "A fost găsită eticheta „%s”\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Linie de antet necorespunzătoare" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Acesta nu este un nume valid, mai încercați.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Serverul HTTP a trimis un antet de răspuns necorespunzător" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Acest disc este numit: \n" -"'%s'\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Serverul HTTP a trimis un antet Content-Length necorespunzător" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiez listele de pachete.." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Serverul HTTP a trimis un antet zonă de conținut necorespunzător" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Scriere noua listă sursă\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Acest server HTTP are un suport defect de intervale" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Intrările listei surselor pentru acest disc sunt:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Format dată necunoscut" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Antet de date necorespunzător" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " -"cauzată de pachete ținute." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Conectare eșuată" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Nu pot corecta problema, ați ținut pachete deteriorate." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Eroare internă" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Se construiește arborele de dependență" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculez înnoirea... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versiuni candidat" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Terminat" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generare dependențe" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Se citesc informațiile de stare" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Eșec la deschiderea fișierului de stare %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Eșec la scrierea fișierului temporar de stare %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Corectez dependențele..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nu s-a putut analiza fișierul pachet %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " eșec." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nu s-a putut analiza fișierul pachet %s (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nu s-au putut corecta dependențele" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release '%s' pentru '%s' n-a fost găsită" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nu s-a putut micșora mulțimea pachetelor de înnoit" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versiunea '%s' pentru '%s' n-a fost găsită" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Terminat" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Nu s-a putut găsi sarcina %s" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Ați putea să porniți 'apt-get -f install' pentru a corecta acestea." -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nu pot găsi pachetul %s" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependențe neîndeplinite. Încercați să folosiți -f." -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nu pot găsi pachetul %s" +msgid "[installed,upgradable to: %s]" +msgstr " [Instalat]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalat]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalat]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalat]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "dar %s este instalat" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "dar %s este pe cale de a fi instalat" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Nu s-a putut analiza fișierul pachet %s (1)" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "dar nu este instalabil" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Notă, se selectează %s în locul lui %s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "dar este un pachet virtual" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "dar nu este instalat" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Linie necorespunzătoare în fișierul-redirectare: %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "dar nu este pe cale să fie instalat" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Nu s-a putut analiza fișierul pachet %s (1)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " sau" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Următoarele pachete au dependențe neîndeplinite:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Următoarele pachete NOI vor fi instalate:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Linie greșită %lu în lista sursă %s (dist)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Următoarele pachete vor fi ȘTERSE:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Următoarele pachete au fost reținute:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Următoarele pachete vor fi ÎNNOITE:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Următoarele pachete vor fi DE-GRADATE:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Linie greșită %lu în lista sursă %s (URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Următoarele pachete ținute vor fi schimbate:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Linie greșită %lu în lista sursă %s (dist)" +msgid "%s (due to %s) " +msgstr "%s (datorită %s) " -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"AVERTISMENT: Următoarele pachete esențiale vor fi șterse.\n" +"Aceasta NU ar trebui făcută decât dacă știți exact ce vreți!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Linie greșită %lu în lista sursă %s (dist. absolută)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu înnoite, %lu nou instalate, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +msgid "%lu reinstalled, " +msgstr "%lu reinstalate, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Deschidere %s" +msgid "%lu downgraded, " +msgstr "%lu de-gradate, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Linie greșită %u în lista sursă %s (tip)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu de șters și %lu neînnoite.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu instalate sau șterse incomplet.\n" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Se instalează %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Se configurează %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Se șterge %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Șters complet %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Comanda de actualizare nu are argumente" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Se rulează declanșatorul post-instalare %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Directorul „%s” lipsește." +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Nu s-a putut deschide fișierul %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Se pregătește %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Se despachetează %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Eroare internă, Ordering nu s-a terminat" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Se pregătește configurarea %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Ce ciudat... Dimensiunile nu se potrivesc, scrieți la apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "Instalat %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Este nevoie să descărcați %sB/%sB de arhive.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Se pregătește ștergerea lui %s" +msgid "Need to get %sB of archives.\n" +msgstr "Este nevoie să descărcați %sB de arhive.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "Șters %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "După această operație vor fi folosiți din disc încă %sB.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Se pregătește ștergerea completă a %s" +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" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "Șters complet %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "You don't have enough free space in %s." +msgstr "Nu aveți suficient spațiu în %s." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nu s-a putut scrie în %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Sunt unele probleme și -y a fost folosit fără --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" +"A fost specificat 'doar neimportant' dar nu este o operațiune neimportantă." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Da, fă cum îți spun!" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Sunteți pe cale de a face ceva cu potențial distructiv.\n" +"Pentru a continua tastați fraza '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Renunțare." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vreți să continuați?" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Descărcarea unor fișiere a eșuat" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" 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?" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing și schimbul de mediu nu este deocamdată suportat" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nu pot corecta pachetele lipsă." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Abandonez instalarea." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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] "" +msgstr[1] "" +msgstr[2] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +# XXX: orice sugestie este bine-venită +#: apt-private/private-install.cc:391 +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" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" +"Hmm, se pare că AutoRemover a distrus ceva, lucru care n-ar trebui să se " +"întâmple. Sunteți rugat să trimiteți un raportați de defect pentru pachetul " +"apt." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Următoarele informații ar putea să vă ajute la rezolvarea situației:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" + +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +msgstr[1] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +msgstr[2] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nu pot încuia directorul cu lista" +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] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +msgstr[1] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +msgstr[2] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +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." + +#: apt-private/private-install.cc:612 +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:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"Dependențe neîndeplinite. Încercați 'apt-get -f install' fără nici un pachet " +"(sau oferiți o altă soluție)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:638 +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 "" +"Unele pachete n-au putut fi instalate. Aceasta ar putea însemna că ați " +"cerut\n" +"o situație imposibilă sau că folosiți distribuția instabilă în care unele " +"pachete\n" +"cerute n-au fost create încă sau au fost mutate din Incoming." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pachete deteriorate" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Următoarele extra pachete vor fi instalate:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pachete sugerate:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pachete recomandate:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Selecția %s nu a fost găsită" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Nu s-a folosit închiderea pentru fișierul disponibil doar-citire %s" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Nu pot deschide fișierul blocat %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Reinstalarea lui %s nu este posibilă, nu poate fi descărcat.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nu este folosit blocajul pentru fișierul montat nfs %s" +msgid "%s is already the newest version.\n" +msgstr "%s este deja la cea mai nouă versiune.\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Nu pot determina blocajul %s" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versiune selectată %s (%s) pentru %s\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versiune selectată %s (%s) pentru %s\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Subprocesul %s a primit o eroare de segmentare." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Subprocesul %s a primit o eroare de segmentare." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Avertisment de autentificare înlocuit.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Subprocesul %s a întors un cod de eroare (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Unele pachete n-au putut fi autentificate" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Subprocesul %s s-a terminat brusc" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalați aceste pachete fără verificare?" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problemă la închiderea fișierului" +msgid "Failed to parse %s. Edit again? " +msgstr "Eșec la redenumirea lui %s în %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Nu s-a putut deschide fișierul %s" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Nu s-a putut deschide conexiunea pentru %s" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Eșec la crearea IPC-ului pentru subproces" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Eșec la executarea compresorului" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "scriere, încă mai am %lu de scris dar nu pot" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atins " -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Problemă la închiderea fișierului" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Luat:" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problemă în timpul sincronizării fișierului" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ignorat " -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Problemă la dezlegarea fișierului" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Eroare" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problemă în timpul sincronizării fișierului" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Aduși: %sB în %s (%sB/s)\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Eroare!" +msgid " [Working]" +msgstr " [În lucru]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Terminat" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Schimbare de mediu: introduceți discul numit\n" +" „%s”\n" +"în unitatea „%s” și apăsați Enter\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Terminat" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nu s-a putut executa „mmap” cu un fișier gol" +msgid "Can not read mirror file '%s'" +msgstr "Nu s-a putut deschide fișierul %s" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nu s-a putut deschide conexiunea pentru %s" +msgid "No entry found in mirror file '%s'" +msgstr "Nu s-a putut deschide fișierul %s" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nu s-a putut face mmap cu %lu octeți" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Eșec la crearea conexiunii IPC către subproces" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Conexiune închisă prematur" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configurări implicite necorespunzătoare!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Apăsați Enter pentru a continua." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Doriți să ștergeți eventualele fișiere .deb descărcate anterior?" -#: apt-pkg/contrib/mmap.cc:146 +#: dselect/install:102 #, fuzzy -msgid "Unable to close mmap" -msgstr "Nu s-a putut deschide %s" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "S-au produs unele erori în timpul despachetării. Se vor configura" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Nu s-a putut invoca" - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nu s-a putut face mmap cu %lu octeți" +msgid "will be configured. This may result in duplicate errors" +msgstr "" +"pachetele care au fost instalate. Aceasta ar putea rezulta erori duplicate" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Eșec la trunchierea fișierului" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "sau erori cauzate de dependențe lipsă. Fiind normal, doar erorile de" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"deasupra acestui mesaj sunt importante. Corectați-le și reporniți " +"[I]nstalarea" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Se combină informațiile disponibile" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "S-a chemat DropNode pe un nod încă „legat”" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nu pot determina starea punctului de montare %s" +# XXX: nu-mi place, fie e hash, fie „element de dispersie” +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Eșec la localizarea elementului de dispersie!" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Eșec la „stat” pentru CD" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Eșec la alocarea redirectării" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreviere de tip nerecunoscut: „%c”" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Eroare internă în „AddDiversion”" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "Se deschide fișierul de configurare %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Încercare de suprascriere a redirectării, %s -> %s și %s/%s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume" +msgid "Double add of diversion %s -> %s" +msgstr "Adăugare dublă de redirectare %s -> %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Eroare de sintaxă %s:%u: etichetă greșită" +msgid "Duplicate conf file %s/%s" +msgstr "Fișier „conf” duplicat %s/%s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare" +msgid "The path %s is too long" +msgstr "Calea %s este prea lungă" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior" +msgid "Unpacking %s more than once" +msgstr "Se despachetează %s de mai multe ori" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse" +msgid "The directory %s is diverted" +msgstr "Directorul %s este redirectat" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Eroare de sintaxă %s:%u: incluse de aici" +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-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Calea de redirectare este prea lungă" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'" +msgid "Failed to stat %s" +msgstr "Eșec la „stat” pentru %s" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Eșec la redenumirea lui %s în %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare la sfârșitul fișierului" +msgid "The directory %s is being replaced by a non-directory" +msgstr "Directorul %s este înlocuit de un non-director" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Abandonez instalarea." +# XXX: nu-mi place, hash bucket ar trebui tradus mai elegant +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Eșec la localizarea nodului în clasa lui din tabela de dispersie" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opțiunea linie de comandă '%c' [din %s] este necunoscută." +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Calea este prea lungă" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "Opțiunea linie de comandă %s nu este înțeleasă" +msgid "Overwrite package match with no version for %s" +msgstr "Pachet suprascris fără nici o versiune pentru %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Opțiunea linie de comandă %s nu este booleană" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Fișierul %s/%s îl suprascrie pe cel din pachetul %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "Opțiunea %s necesită un argument" +msgid "Unable to stat %s" +msgstr "Nu se poate executa „stat” pe %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Opțiunea %s: Specificația configurării articolului trebuie să aibă o =<val>." +msgid "Failed to write file %s" +msgstr "Eșec la scrierea fișierului %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opțiunea %s necesită un argument integru, nu '%s'" +msgid "Failed to close file %s" +msgstr "Eșec la închiderea fișierului %s" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "Opțiunea '%s' este prea lungă" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Aceasta nu este o arhivă DEB validă, lipsește membrul „%s”" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Sensul %s nu este înțeles, încercați adevărat (true) sau fals (false)." +msgid "Internal error, could not locate member %s" +msgstr "Eroare internă, nu pot localiza membrul %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Fișier de control neanalizabil" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Semnătură de arhivă necorespunzătoare" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Eroare la citirea antetului membrului arhivei" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Antet de membru de arhivă necorespunzător" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Antet de membru de arhivă necorespunzător" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arhiva este prea scurtă" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Eșec la citirea antetelor arhivei" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Eșec la crearea conexiunilor" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Eșec la executarea lui gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arhivă deteriorată" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "" +"Suma de control a arhivei tar nu s-a verificat, arhiva este deteriorată" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Operațiune invalidă %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Tip antet TAR %u necunoscut, membrul %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3553,7 +3557,7 @@ msgstr "Eșec la citire în timpul calculului sumei MD5" msgid "Problem unlinking %s" msgstr "Problemă la desfacerea %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3607,6 +3611,10 @@ msgstr "" " -o=? Ajustează o opțiune de configurare arbitrară, ex.: -o dir::cache=/" "tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s nu este un pachet DEB valid." diff --git a/po/ru.po b/po/ru.po index 5aabe0610..fa8bbdd7c 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-06-30 08:47+0400\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" @@ -24,3271 +24,3274 @@ msgstr "" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Не поддерживается индексный файл типа «%s»" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Пакет %s версии %s имеет неудовлетворённую зависимость:\n" +msgid "Unable to read %s" +msgstr "Невозможно прочитать %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Всего имён пакетов: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Невозможно сменить текущий каталог на %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Всего структур пакетов: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Невозможно получить атрибуты %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Обычных пакетов: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Полностью виртуальных пакетов: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Запускается dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Одиночных виртуальных пакетов: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Система пакетирования «%s» не поддерживается" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Смешанных виртуальных пакетов: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Невозможно определить подходящий тип системы пакетирования" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Отсутствует: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Сохранено %i записей.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Всего уникальных версий: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Сохранено %i записей с %i отсутствующими файлами.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Всего уникальных описаний: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Сохранено %i записей с %i несовпадающими файлами\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Всего зависимостей: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Сохранено %i записей с %i отсутствующими файлами и с %i несовпадающими " +"файлами\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Всего отношений Версия/Файл: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Не удалось найти аутентификационную запись для: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Всего отношений Описание/Файл: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Не совпадает хеш сумма для: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Всего отношений Provides: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Драйвер для метода %s не найден." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Всего развёрнутых строк: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Всего информации о зависимостях: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Метод %s запустился не корректно" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Пустого места в кэше: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Вставьте диск с меткой «%s» в устройство «%s» и нажмите ввод." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Полное учтённое пространство: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Списки пакетов или файл состояния не могут быть открыты или прочитаны." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Список пакетов %s рассинхронизирован." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Вы можете запустить «apt-get update» для исправления этих ошибок" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Не найдено ни одного пакета" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Не читается перечень источников." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Вы должны задать не менее одно шаблона поиска" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Кэш пакетов пуст" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Эта команда устарела. Используйте вместо неё «apt-mark showauto»." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Кэш пакетов повреждён" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Не поддерживаемая версия кэша пакетов" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Кэш пакетов повреждён, он слишком мал" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Не удалось найти пакет %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Эта версия APT не поддерживает систему версий «%s»" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Списки пакетов:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Кэш пакетов был собран для другой архитектуры" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Кэш рассинхронизирован, невозможно обнаружить ссылку на список пакетов" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Зависит" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Зафиксированные пакеты:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "ПредЗависит" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(не найдено)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Предлагает" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Установлен: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Рекомендует" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Кандидат: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Конфликтует" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(отсутствует)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Заменяет" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Фиксатор пакета: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Замещает" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Таблица версий:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ломает" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s для %s скомпилирован %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Улучшает" -#: cmdline/apt-cache.cc:1749 -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 "" -"Использование: apt-cache [параметры] команда\n" -" или: apt-cache [параметры] showpkg пакет1 [пакет2…]\n" -" или: apt-cache [параметры] showsrc пакет1 [пакет2…]\n" -"\n" -"apt-cache — низкоуровневый инструмент для поиска\n" -"информации в двоичных кэш-файлах APT\n" -"\n" -"Команды:\n" -" gencaches - построить кэш пакетов и кэш источников\n" -" showpkg - показать общую информацию о конкретном пакете\n" -" showsrc - показать записи об источниках\n" -" stats - показать общую статистику\n" -" dump - показать весь файл в сокращённой форме\n" -" dumpavail - выдать на stdout файл available\n" -" unmet - показать неудовлетворённые зависимости\n" -" search - найти пакеты, имя которых удовлетворяет регулярному выражению\n" -" show - показать информацию о пакете в удобочитаемой форме\n" -" depends - показать необработанную информацию о зависимостях пакета\n" -" rdepends - показать информацию об обратных зависимостях пакета\n" -" pkgnames - показать имена всех пакетов в системе\n" -" dotty - генерировать граф пакетов в формате GraphVis\n" -" xvcg - генерировать граф пакетов в формате xvcg\n" -" policy - показать текущую политику выбора пакетов\n" -"\n" -"Параметры:\n" -" -h Эта справка.\n" -" -p=? Кэш пакетов.\n" -" -s=? Кэш источников.\n" -" -q Не показывать индикатор хода выполнения.\n" -" -i Показывать только важные зависимости для команды unmet.\n" -" -c=? Читать указанный файл настройки.\n" -" -o=? Задать значение произвольной настройки, например, -o dir::cache=/tmp\n" -"Подробности в справочных страницах apt-cache(8) и apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "важный" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Задайте имя для этого диска, например «Debian 5.0.3 Disk 1»" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "необходимый" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Вставьте диск в устройство и нажмите ввод" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "стандартный" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "необязательный" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "дополнительный" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Не удалось примонтировать «%s» к «%s»" +msgid "Index file type '%s' is not supported" +msgstr "Не поддерживается индексный файл типа «%s»" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Ошибка компиляции регулярного выражения — %s" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Повторите этот процесс для всех имеющихся CD." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Кэш имеет несовместимую систему версий" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -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:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Произошла ошибка во время обработки %s (%s%d)" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Использование: apt-config [параметры] команда\n" -"\n" -"apt-config — простой инструмент для чтения файла настройки APT\n" -"\n" -"Команды:\n" -" shell - режим shell\n" -" dump - показать настройки\n" -"\n" -"Параметры:\n" -" -h Этот текст.\n" -" -с=? Читать указанный файл настройки.\n" -" -o=? Задать значение произвольной настройке, например, -o dir::cache=/" -"tmp\n" +"Превышено допустимое количество имён пакетов, которое способен обработать " +"APT." -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"Превышено допустимое количество версий, которое способен обработать APT." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Превышено допустимое количество описаний, которое способен обработать APT." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Превышено допустимое количество зависимостей, которое способен обработать " +"APT." -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Используется «%s» в качестве исходного пакета вместо «%s»\n" - -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Игнорируется недоступная версия «%s» пакета «%s»" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Во время обработки файла зависимостей не найден пакет %s %s" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't find package %s" -msgstr "Не удалось найти пакет %s" +msgid "Couldn't stat source package list %s" +msgstr "Не удалось получить атрибуты списка пакетов исходного кода %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s установлен вручную.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Чтение списков пакетов" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Сбор информации о Provides" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s выбран для автоматической установки.\n" +msgid "Unable to write to %s" +msgstr "Невозможно записать в %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Эта команда устарела. Используйте вместо неё «apt-mark auto» и «apt-mark " -"manual»." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Внутренняя ошибка, решатель проблем всё поломал" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Отправка сценария решателю" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Невозможно заблокировать каталог, куда складываются скачиваемые файлы" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Отправка запроса решателю" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"Укажите как минимум один пакет, исходный код которого необходимо получить" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Подготовка к приёму решения" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Невозможно найти пакет с исходным кодом для %s" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Внешний решатель завершился с ошибкой не передав сообщения об ошибке" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"ВНИМАНИЕ: упаковка «%s» поддерживается в системе контроля версий «%s»:\n" -"%s\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Запустить внешний решатель" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Используйте:\n" -"bzr branch %s\n" -"для получения последних (возможно не выпущенных) обновлений пакета.\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "переименовать не удалось, %s (%s -> %s)." -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Пропускаем уже скачанный файл «%s»\n" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Хеш сумма не совпадает" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Не удалось определить количество свободного места в %s" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Не совпадает размер" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Неверная операция %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Недостаточно места в %s" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Невозможно найти ожидаемый элемент «%s» в файле Release (некорректная запись " +"в sources.list или файл)" -#. 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:891 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Невозможно найти хеш-сумму «%s» в файле Release" -#. 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:896 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Недоступен открытый ключ для следующих ID ключей:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Необходимо получить %sб архивов исходного кода.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Файл Release для %s просрочен (недостоверный начиная с %s). Обновление этого " +"репозитория производиться не будет." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "Получение исходного кода %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Конфликт распространения: %s (ожидался %s, но получен %s)" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Некоторые архивы не удалось получить." +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Произошла ошибка при проверке подписи. Репозиторий не обновлён и будут " +"использованы предыдущие индексные файлы. Ошибка GPG: %s: %s\n" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Указан режим «только скачивание», и скачивание завершено" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Ошибка GPG: %s: %s" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Пропускается распаковка уже распакованного исходного кода в %s\n" +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. Это может означать, что вам придётся " +"вручную исправить этот пакет (возможно, пропущен arch)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Команда распаковки «%s» завершилась неудачно.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Невозможно найти источник для загрузки «%2$s» версии «%1$s»" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Некорректный перечень пакетов. Нет поля Filename: для пакета %s." -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Команда сборки «%s» завершилась неудачно.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Блок поставщика %s не содержит отпечатка (fingerprint)" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Порождённый процесс завершился неудачно" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Каталог списка %spartial отсутствует." -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Для проверки зависимостей для сборки необходимо указать как минимум один " -"пакет" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Архивный каталог %spartial отсутствует." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"У %s отсутствует информация об архитектуре. Для её настройки смотрите apt." -"conf(5) APT::Architectures" +msgid "Unable to lock directory %s" +msgstr "Невозможно заблокировать каталог %s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Невозможно получить информацию о зависимостях для сборки %s" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Скачивается файл %li из %li (осталось %s)" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s не имеет зависимостей для сборки.\n" +msgid "Retrieving file %li of %li" +msgstr "Скачивается файл %li из %li" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Не удалось получить %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как %s не " -"разрешён для пакетов «%s»" +"Некоторые индексные файлы не скачались. Они были проигнорированы или вместо " +"них были использованы старые версии." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Вы должны заполнить sources.list, поместив туда URI источников пакетов" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " -"найден" +"Значение «%s» недопустимо для APT::Default-Release, так как выпуск " +"недоступен в источниках" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " -"пакет %s новее, чем надо" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Неверная запись в файле параметров %s: отсутствует заголовок Package" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Неизвестный тип фиксации %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Для фиксации не указан приоритет (или указан нулевой)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как версия-" -"кандидат пакета %s не может удовлетворить требованиям по версии" +"Не удалось выполнить оперативную настройку «%s». Подробней, смотрите в man 5 " +"apt.conf о APT::Immediate-Configure. (%d)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Не удалось настроить «%s»." + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " -"имеет версии-кандидата" +"Вследствие возникновения циклических зависимостей типа Конфликтует/" +"ПредЗависит, для продолжения установки необходимо временно удалить " +"существенно важный пакет %s. Это может привести к фатальным последствиям. " +"Если вы действительно хотите продолжить, установите параметр APT::Force-" +"LoopBreak." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Строка %u в списке источников %s слишком длинна." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Размонтирование CD-ROM…\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Зависимости для сборки %s не могут быть удовлетворены." +msgid "Using CD-ROM mount point %s\n" +msgstr "Использование %s в качестве точки монтирования CD-ROM\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Обработка зависимостей для сборки завершилась неудачно" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Ожидание операции работы с диском…\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Монтирование CD-ROM…\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Идентификация... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog для %s (%s)" +msgid "Stored label: %s\n" +msgstr "Найдена метка: %s \n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Поддерживаемые модули:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Поиск на диске индексных файлов...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:734 +#, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Использование: apt-get [параметры] команда\n" -" apt-get [параметры] install|remove пакет1 [пакет2…]\n" -" apt-get [параметры] source пакет1 [пакет2…]\n" -"\n" -"apt-get — простая программа с интерфейсом командной строки\n" -"для скачивания и установки пакетов. Наиболее часто используемые\n" -"команды — update и install.\n" -"\n" -"Команды:\n" -" update - получить новые списки пакетов\n" -" upgrade - выполнить обновление\n" -" install - установить новые пакеты (на месте пакета указывается имя " -"пакета\n" -" (libc6, а не имя файла libc6.deb)\n" -" remove - удалить пакеты\n" -" autoremove - автоматически удалить все неиспользуемые пакеты\n" -" purge - удалить пакеты вместе с их файлами настройки\n" -" source - скачать архивы с исходным кодом\n" -" build-dep - настроить всё необходимое для сборки\n" -" пакета из исходного кода\n" -" dist-upgrade - обновить всю систему, подробнее в apt-get(8)\n" -" dselect-upgrade - руководствоваться выбором, сделанным в dselect\n" -" clean - удалить скачанные файлы архивов\n" -" autoclean - удалить старые скачанные файлы архивов\n" -" check - проверить наличие нарушенных зависимостей\n" -" changelog - скачать и показать файл изменений заданного пакета\n" -" download - скачать двоичный пакет в текущий каталог\n" -"\n" -"Параметры:\n" -" -h эта справка\n" -" -q показывать сообщения о работе, не выводить индикатор хода работы\n" -" -qq показывать только сообщения об ошибках\n" -" -d только скачать и НЕ устанавливать и не распаковывать архивы\n" -" -s не выполнять действия на самом деле, только имитация работы\n" -" -y отвечать «Да» на все вопросы, сами вопросы при этом не выводить\n" -" -f попытаться исправить систему, имеющую сломанные зависимости\n" -" -m попытаться продолжить, даже если архивы не найдены\n" -" -u показывать также список обновляемых пакетов\n" -" -b собрать пакет из исходного кода после его получения\n" -" -V показывать полные номера версий\n" -" -c=? читать указанный файл настройки\n" -" -o=? задать значение произвольному параметру настройки,\n" -" например, -o dir::cache=/tmp\n" -"В справочных страницах apt-get(8), sources.list(5) и apt.conf(5)\n" -"содержится подробная информация и описание параметров.\n" -" В APT есть коровья СУПЕРСИЛА.\n" +"Найдено индексов: %zu для пакетов, %zu для источников, %zu для переводов и " +"%zu для сигнатур\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Укажите как минимум один пакет, исходный код которого необходимо получить" +"Не удалось найти ни одного файла пакетов; возможно это не диск Debian или с " +"не той архитектурой?" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Найден ярлык «%s»\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Это неправильное имя, попробуйте ещё раз.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Название диска: \n" +"«%s»\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Копирование списков пакетов…" + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Запись нового списка источников\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Записи в списке источников для этого диска:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Пакет %s нуждается в переустановке, но найти архив для него не удалось." -#: cmdline/apt-mark.cc:68 +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Ошибка, pkgProblemResolver::Resolve сгенерировал повреждённые пакеты. Это " +"может быть вызвано отложенными (held) пакетами." + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Построение дерева зависимостей" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Версии-кандидаты" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Генерирование зависимостей" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Чтение информации о состоянии" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s не может быть помечен, так он не установлен.\n" +msgid "Failed to open StateFile %s" +msgstr "Не удалось открыть StateFile %s" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s уже помечен как установленный вручную.\n" +msgid "Failed to write temporary StateFile %s" +msgstr "Не удалось записать временный StateFile %s" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s уже помечен как установленный автоматически.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Невозможно разобрать содержимое пакета %s (1)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s уже помечен как зафиксированный.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Невозможно разобрать содержимое пакета %s (2)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s уже помечен как не зафиксированный.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Выпуск «%s» для «%s» не найден" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Ожидалось завершение процесса %s, но он не был запущен" +msgid "Version '%s' for '%s' was not found" +msgstr "Версия «%s» для «%s» не найдена" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "%s set on hold.\n" -msgstr "%s помечен как зафиксированный.\n" +msgid "Unable to locate package %s" +msgstr "Не удалось найти пакет %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Отмена фиксации для %s.\n" +msgid "Couldn't find task '%s'" +msgstr "Не удалось найти задачу «%s»" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" + +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" + +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -"Выполнение dpkg завершилось с ошибкой. У вас есть права суперпользователя?" +"Не удалось выбрать версии из пакета «%s», так как он полностью виртуальный" -#: cmdline/apt-mark.cc:392 -#, fuzzy +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Использование: apt-mark [параметры] {auto|manual} пакет1 [пакет2…]\n" -"\n" -"apt-mark — простая программа с интерфейсом командной строки\n" -"для отметки пакетов, что они установлены вручную или автоматически.\n" -"Также может показывать списки помеченных пакетов.\n" -"\n" -"Команды:\n" -" auto - пометить указанные пакеты, как установленные автоматически\n" -" manual - пометить указанные пакеты, как установленные вручную\n" -"\n" -"Параметры:\n" -" -h эта справка\n" -" -q показывать сообщения о работе, не выводить индикатор хода работы\n" -" -qq показывать только сообщения об ошибках\n" -" -s не выполнять действия на самом деле, только имитация работы\n" -" -f читать/писать данные о пометках в заданный файл\n" -" -c=? читать указанный файл настройки\n" -" -o=? задать значение произвольному параметру настройки,\n" -" например, -o dir::cache=/tmp\n" -"В справочных страницах apt-mark(8) и apt.conf(5)\n" -"содержится подробная информация и описание параметров." +"Не удалось выбрать ни установленную, ни версию кандидата из пакета «%s», так " +"как в нём нет ни той, ни другой" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" +"Не удалось выбрать самую новую версию из пакета «%s», так как он полностью " +"виртуальный" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Невозможно прочесть базу %s с CD" - -#: 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" +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Пожалуйста, используйте apt-cdrom, чтобы APT смог распознать данный CD. apt-" -"get update не используется для добавления нового CD" +"Не удалось выбрать самую версию кандидата из пакета %s, так как у него нет " +"кандидатов" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Ошибочный CD" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Не удалось выбрать установленную версию из пакета %s, так как он не " +"установлен" -#: methods/cdrom.cc:249 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Невозможно размонтировать CD-ROM в %s, возможно он ещё используется." +msgid "Unable to parse Release file %s" +msgstr "Невозможно разобрать содержимое файла Release (%s)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Диск не найден." +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Отсутствуют разделы в файле Release (%s)" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Файл не найден" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Отсутствуют элементы Hash в файле Release (%s)" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Не удалось получить атрибуты" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Неправильный элемент «Valid-Until» в файле Release %s" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Не удалось установить время модификации" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Неправильный элемент «Date» в файле Release %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Неправильный URI, локальный URI не должен начинаться с //" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Вход в систему" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Искажённая строка %lu в списке источников %s ([параметр] неразбираем)" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Невозможно определить имя удалённого сервера" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Искажённая строка %lu в списке источников %s ([параметр] слишком короткий)" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Невозможно определить локальное имя" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Искажённая строка %lu в списке источников %s (([%s] не назначаем)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Сервер разорвал соединение и сообщил: %s" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Искажённая строка %lu в списке источников %s ([%s] не имеет ключа)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "USER failed, server said: %s" -msgstr "Команда USER не выполнена, сервер сообщил: %s" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Искажённая строка %lu в списке источников %s (([%s] ключ %s не имеет " +"значения)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Команда PASS не выполнена, сервер сообщил: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Искажённая строка %lu в списке источников %s (проблема в URI)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -"Proxy-сервер указан, однако нет сценария входа в систему, Acquire::ftp::" -"ProxyLogin пуст." +"Искажённая строка %lu в списке источников %s (проблема в имени дистрибутива)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "" -"Команда «%s» сценария входа в систему завершилась неудачно, сервер сообщил: " -"%s" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Команда TYPE не выполнена, сервер сообщил: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Искажённая строка %lu в списке источников %s (absolute dist)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Допустимое время ожидания для соединения истекло" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Искажённая строка %lu в списке источников %s (dist parse)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Сервер прервал соединение" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Открытие %s" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Ошибка чтения" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Искажённая строка %u в списке источников %s (тип)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Ответ переполнил буфер." +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Искажение протокола" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Ошибка записи" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Устанавливается %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Не удалось создать сокет" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Настраивается %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Не удалось присоединиться к сокету данных, время на установление соединения " -"истекло" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Удаляется %s" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Неудачно" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Выполняется полное удаление %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Невозможно присоединить пассивный сокет" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Уведомление об исчезновении %s" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Вызов getaddrinfo не смог получить сокет" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Невозможно присоединиться к сокету" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Не удалось принимать соединения на сокете" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Не удалось определить имя сокета" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Невозможно послать команду PORT" - -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Неизвестное семейство адресов %u (AF_*)" - -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Команда EPRT не выполнена, сервер сообщил: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Время установления соединения для сокета данных истекло" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Невозможно принять соединение" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Проблема при хешировании файла" +msgid "Running post-installation trigger %s" +msgstr "Выполняется послеустановочный триггер %s" -#: methods/ftp.cc:890 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Невозможно получить файл, сервер сообщил: «%s»" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Время ожидания соединения для сокета данных истекло" +msgid "Directory '%s' missing" +msgstr "Отсутствует каталог «%s»" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Передача данных завершилась неудачно, сервер сообщил: «%s»" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Запрос" - -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Невозможно вызвать " +msgid "Could not open file '%s'" +msgstr "Не удалось открыть файл «%s»" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Соединение с %s (%s)" +msgid "Preparing %s" +msgstr "Подготавливается %s" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Unpacking %s" +msgstr "Распаковывается %s" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Не удаётся создать сокет для %s (f=%u t=%u p=%u)" +msgid "Preparing to configure %s" +msgstr "Подготавливается для настройки %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Невозможно инициализировать соединение с %s:%s (%s)." +msgid "Installed %s" +msgstr "Установлен %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Не удаётся соединиться с %s:%s (%s), connection timed out" +msgid "Preparing for removal of %s" +msgstr "Подготавливается для удаления %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Не удаётся соединиться с %s:%s (%s)." +msgid "Removed %s" +msgstr "Удалён %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Connecting to %s" -msgstr "Соединение с %s" +msgid "Preparing to completely remove %s" +msgstr "Подготовка к полному удалению %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Could not resolve '%s'" -msgstr "Не удалось найти IP-адрес для «%s»" +msgid "Completely removed %s" +msgstr "%s полностью удалён" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Временная ошибка при попытке получить IP-адрес «%s»" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" +msgid "Can not write log (%s)" +msgstr "Невозможно записать в %s" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Невозможно соединиться с %s: %s:" +msgid "Waited for %s but it wasn't there" +msgstr "Ожидалось завершение процесса %s, но он не был запущен" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Внутренняя ошибка: Правильная подпись, но не удалось определить отпечаток " -"ключа?!" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Действие прервано до его завершения" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Найдена как минимум одна неправильная подпись." +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Отчёты apport не записаны, так достигнут MaxReports" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Не удалось выполнить «gpgv» для проверки подписи (gpgv установлена?)" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "проблемы с зависимостями — оставляем ненастроенным" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" +"Отчёты apport не записаны, так как сообщение об ошибке указывает на " +"повторную ошибку от предыдущего отказа." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Неизвестная ошибка при выполнении gpgv" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " +"места на диске" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Следующие подписи неверные:\n" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " +"памяти" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -"Следующие подписи не могут быть проверены, так как недоступен открытый " -"ключ:\n" +"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " +"места на диске" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Пустые файлы не могут быть допустимыми архивами" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке об ошибке " +"ввода-выводы dpkg" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Ошибка записи в файл" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Не удалось выполнить блокировку управляющего каталога (%s); он уже " +"используется другим процессом?" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Ошибка чтения, удалённый сервер прервал соединение" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Не удалось выполнить блокировку управляющего каталога (%s); у вас есть права " +"суперпользователя?" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Ошибка чтения с сервера" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"Работа dpkg прервана, вы должны вручную запустить «%s» для устранения " +"проблемы. " -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Ошибка записи в файл" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Не заблокирован" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Ошибка в select" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Время ожидания для соединения истекло" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Ошибка записи в выходной файл" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Ожидание заголовков" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Неверный заголовок" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%liд %liч %liмин %liс" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Http-сервер послал неверный заголовок" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%liч %liмин %liс" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http сервер послал неверный заголовок Content-Length" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liмин %liс" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http-сервер послал неверный заголовок Content-Range" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liс" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Этот HTTP-сервер не поддерживает скачивание фрагментов файлов" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Не найдено: %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Неизвестный формат данных" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Блокировка не используется, так как файл блокировки %s доступен только для " +"чтения" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Неверный заголовок данных" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Не удалось открыть файл блокировки %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Соединение разорвано" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Блокировка не используется, так как файл блокировки %s находится на файловой " +"системе nfs" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Внутренняя ошибка" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Не удалось получить доступ к файлу блокировки %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Расчёт обновлений…" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Список файлов не может быть создан, так как «%s» не является каталогом" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Внутренняя ошибка, AllUpgrade всё поломал" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Файл «%s» в каталоге «%s» игнорируется, так как это необычный файл" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Готово" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Файл «%s» в каталоге «%s» игнорируется, так как он не имеет расширения" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" +"Файл «%s» в каталоге «%s» игнорируется, так как он не имеет неправильное " +"расширение" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." msgstr "" +"Нарушение защиты памяти (segmentation fault) в порождённом процессе %s." -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Исправление зависимостей…" +msgid "Sub-process %s received signal %u." +msgstr "Порождённый процесс %s получил сигнал %u." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " не удалось." +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Порождённый процесс %s вернул код ошибки (%u)" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Невозможно скорректировать зависимости" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Порождённый процесс %s неожиданно завершился" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Невозможно минимизировать набор обновлений" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Ошибка записи" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Готово" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Проблема закрытия gzip-файла %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "" -"Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" -"f install»." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Не удалось открыть файл %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Неудовлетворённые зависимости. Попытайтесь использовать -f." +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Не удалось открыть файловый дескриптор %d" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Не удалось создать IPC с порождённым процессом" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Установлен]" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Не удалось выполнить компрессор " -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Установлен]" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Ошибка чтения" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" msgstr "" +"ошибка при чтении; собирались прочесть ещё %llu байт, но ничего больше нет" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Установлен]" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "ошибка при записи; собирались записать ещё %llu байт, но не смогли" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Установлен]" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Проблема закрытия файла %s" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Problem renaming the file %s to %s" +msgstr "Проблема при переименовании файла %s в %s" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Проблема при удалении файла %s" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Пакеты, имеющие неудовлетворённые зависимости:" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Проблема при синхронизации файла" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is installed" -msgstr "но %s уже установлен" +msgid "%c%s... Error!" +msgstr "%c%s… Ошибка!" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "but %s is to be installed" -msgstr "но %s будет установлен" +msgid "%c%s... Done" +msgstr "%c%s… Готово" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "но он не может быть установлен" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "но это виртуальный пакет" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "но он не установлен" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Невозможно отобразить в память пустой файл" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "но он не будет установлен" - -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " или" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Не удалось сделать копию файлового дескриптора %i" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "НОВЫЕ пакеты, которые будут установлены:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Невозможно отобразить в память %llu байт" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Пакеты, которые будут УДАЛЕНЫ:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Не удалось закрыть mmap" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Пакеты, которые будут оставлены в неизменном виде:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Не удалось синхронизировать mmap" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Пакеты, которые будут обновлены:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Невозможно отобразить в память %lu байт" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Пакеты, будут заменены на более СТАРЫЕ версии:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Не удалось обрезать файл" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" +#: 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 "" -"Пакеты, которые должны были бы остаться без изменений, но будут заменены:" +"Не хватает места для Dynamic MMap. Увеличьте значение APT::Cache-Start. " +"Текущее значение: %lu. (man 5 apt.conf)" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (вследствие %s) " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Не удалось увеличить размер MMap, так как уже достигнут предел в %lu байт." -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"ВНИМАНИЕ: Эти существенно важные пакеты будут удалены.\n" -"НЕ ДЕЛАЙТЕ этого, если вы НЕ представляете себе все возможные последствия!" +"Не удалось увеличить размер MMap, так как автоматическое увеличение " +"отключено пользователем." -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "обновлено %lu, установлено %lu новых пакетов, " +msgid "Unable to stat the mount point %s" +msgstr "Невозможно прочитать атрибуты точки монтирования %s" + +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Невозможно получить атрибуты cdrom" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu reinstalled, " -msgstr "переустановлено %lu переустановлено, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Неизвестная аббревиатура типа: «%c»" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu downgraded, " -msgstr "%lu пакетов заменены на старые версии, " +msgid "Opening configuration file %s" +msgstr "Открытие файла настройки %s" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "для удаления отмечено %lu пакетов, и %lu пакетов не обновлено.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Синтаксическая ошибка %s:%u: в начале блока нет имени." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "не установлено до конца или удалено %lu пакетов.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Синтаксическая ошибка %s:%u: искажённый тег" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[Д/н]" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Синтаксическая ошибка %s:%u: лишние символы после значения" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" +"Синтаксическая ошибка %s:%u: директивы могут задаваться только на верхнем " +"уровне" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "д" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "н" - -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "Regex compilation error - %s" -msgstr "Ошибка компиляции регулярного выражения — %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Команде update не нужны аргументы" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Синтаксическая ошибка %s:%u: слишком много вложенных include" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Syntax error %s:%u: Included from here" +msgstr "Синтаксическая ошибка %s:%u вызвана include из этого места" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Синтаксическая ошибка %s:%u: не поддерживаемая директива «%s»" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Внутренняя ошибка, InstallPackages была вызвана с неработоспособными " -"пакетами!" - -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Пакеты необходимо удалить, но удаление запрещено." +"Синтаксическая ошибка %s:%u: для директивы clear требуется третий параметр в " +"качестве аргумента" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Внутренняя ошибка, Ordering не завершилась" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Синтаксическая ошибка %s:%u: лишние символы в конце файла" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "Странно. Несовпадение размеров, напишите на apt@packages.debian.org" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Необходимо скачать %sB/%sB архивов.\n" +msgid "Command line option '%c' [from %s] is not known." +msgstr "Неизвестный параметр командной строки «%c» [из %s]." -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Необходимо скачать %sБ архивов.\n" +msgid "Command line option %s is not understood" +msgstr "Не распознанный параметр командной строки %s" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"После данной операции, объём занятого дискового пространства возрастёт на " -"%sB.\n" +msgid "Command line option %s is not boolean" +msgstr "Параметр командной строки %s — не логический переключатель \"да/нет\"" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "" -"После данной операции, объём занятого дискового пространства уменьшится на " -"%sB.\n" +msgid "Option %s requires an argument." +msgstr "Для параметра %s требуется аргумент." -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Недостаточно свободного места в %s." +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Значение параметра %s должно иметь вид =<val>." -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Существуют проблемы, а параметр -y указан без --force-yes" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Для параметра %s требуется аргумент в виде целого числа, а не «%s»" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"Запрошено выполнение только тривиальных операций, но это не тривиальная " -"операция." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Параметр «%s» слишком длинный" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Да, делать, как я скажу!" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Смысл %s не ясен, используйте true или false." -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"То, что вы хотите сделать, может иметь нежелательные последствия.\n" -"Чтобы продолжить, введите фразу: «%s»\n" -" ?] " +msgid "Invalid operation %s" +msgstr "Неверная операция %s" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Аварийное завершение." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Пакет %s версии %s имеет неудовлетворённую зависимость:\n" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Хотите продолжить?" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Всего имён пакетов: " -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Некоторые файлы скачать не удалось" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Всего структур пакетов: " -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Невозможно получить некоторые архивы, вероятно надо запустить apt-get update " -"или попытаться повторить запуск с ключом --fix-missing" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Обычных пакетов: " -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing и смена носителя в данный момент не поддерживаются" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Полностью виртуальных пакетов: " -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Невозможно исправить ситуацию с пропущенными пакетами." +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Одиночных виртуальных пакетов: " -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Аварийное завершение установки." +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Смешанных виртуальных пакетов: " -#: apt-private/private-install.cc:365 -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] "" -"Следующий пакет исчез из системы, так как все их файлы\n" -"теперь берутся из других пакетов:" -msgstr[1] "" -"Следующие пакеты исчез из системы, так как все их файлы\n" -"теперь берутся из других пакетов:" -msgstr[2] "" -"Следующие пакеты исчез из системы, так как все их файлы\n" -"теперь берутся из других пакетов:" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Отсутствует: " -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Замечание: это сделано автоматически и специально программой dpkg." +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Всего уникальных версий: " -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Всего уникальных описаний: " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Хм, кажется, что AutoRemover был как-то удалён, чего не должно\n" -"было случиться. Пожалуйста, отправьте сообщение об ошибке в пакете apt." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Всего зависимостей: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Следующая информация, возможно, поможет вам:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Всего отношений Версия/Файл: " -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Внутренняя ошибка, AutoRemover всё поломал" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Всего отношений Описание/Файл: " -#: apt-private/private-install.cc:512 -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] "Следующий пакет устанавливался автоматически и больше не требуется:" -msgstr[1] "" -"Следующие пакеты устанавливались автоматически и больше не требуются:" -msgstr[2] "" -"Следующие пакеты устанавливались автоматически и больше не требуются:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Всего отношений Provides: " -#: apt-private/private-install.cc:516 -#, 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" -msgstr[1] "%lu пакета было установлено автоматически и больше не требуется.\n" -msgstr[2] "%lu пакетов было установлены автоматически и больше не требуются.\n" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Всего развёрнутых строк: " -#: apt-private/private-install.cc:518 -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-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Всего информации о зависимостях: " -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" -"f install»:" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Пустого места в кэше: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Неудовлетворённые зависимости. Попытайтесь выполнить «apt-get -f install», " -"не указывая имени пакета, (или найдите другое решение)." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Полное учтённое пространство: " -#: apt-private/private-install.cc:628 -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 "" -"Некоторые пакеты невозможно установить. Возможно, вы просите невозможного,\n" -"или же используете нестабильную версию дистрибутива, где запрошенные вами\n" -"пакеты ещё не созданы или были удалены из Incoming." +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Список пакетов %s рассинхронизирован." -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Сломанные пакеты" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Не найдено ни одного пакета" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Будут установлены следующие дополнительные пакеты:" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Вы должны задать не менее одно шаблона поиска" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Предлагаемые пакеты:" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Эта команда устарела. Используйте вместо неё «apt-mark showauto»." -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Рекомендуемые пакеты:" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Списки пакетов:" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Пропускается %s — пакет уже установлен и нет команды upgrade.\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Кэш рассинхронизирован, невозможно обнаружить ссылку на список пакетов" -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Пропускается %s — пакет не установлен, а запрошено только обновление.\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Зафиксированные пакеты:" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Переустановка %s невозможна, он не скачивается.\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(не найдено)" -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "Уже установлена самая новая версия %s.\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Установлен: " -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Выбрана версия «%s» (%s) для «%s»\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Кандидат: " -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Выбрана версия «%s» (%s) для «%s» из-за «%s»\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(отсутствует)" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Пакет «%s» не установлен, поэтому не может быть удалён. Возможно имелся в " -"виду «%s»?\n" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Фиксатор пакета: " + +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Таблица версий:" -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Пакет «%s» не установлен, поэтому не может быть удалён\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s для %s скомпилирован %s %s\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 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 "" -"ЗАМЕЧАНИЕ: Производить только имитация работы!\n" -" Для реальной работы apt-get требуются права суперпользователя.\n" -" Учтите, что блокировка не используется,\n" -" поэтому нет полного соответствия с текущей реальной ситуацией!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ВНИМАНИЕ: Следующие пакеты невозможно аутентифицировать!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Предупреждение об аутентификации не принято в внимание.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Некоторые пакеты невозможно аутентифицировать" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Установить эти пакеты без проверки?" +"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 "" +"Использование: apt-cache [параметры] команда\n" +" или: apt-cache [параметры] showpkg пакет1 [пакет2…]\n" +" или: apt-cache [параметры] showsrc пакет1 [пакет2…]\n" +"\n" +"apt-cache — низкоуровневый инструмент для поиска\n" +"информации в двоичных кэш-файлах APT\n" +"\n" +"Команды:\n" +" gencaches - построить кэш пакетов и кэш источников\n" +" showpkg - показать общую информацию о конкретном пакете\n" +" showsrc - показать записи об источниках\n" +" stats - показать общую статистику\n" +" dump - показать весь файл в сокращённой форме\n" +" dumpavail - выдать на stdout файл available\n" +" unmet - показать неудовлетворённые зависимости\n" +" search - найти пакеты, имя которых удовлетворяет регулярному выражению\n" +" show - показать информацию о пакете в удобочитаемой форме\n" +" depends - показать необработанную информацию о зависимостях пакета\n" +" rdepends - показать информацию об обратных зависимостях пакета\n" +" pkgnames - показать имена всех пакетов в системе\n" +" dotty - генерировать граф пакетов в формате GraphVis\n" +" xvcg - генерировать граф пакетов в формате xvcg\n" +" policy - показать текущую политику выбора пакетов\n" +"\n" +"Параметры:\n" +" -h Эта справка.\n" +" -p=? Кэш пакетов.\n" +" -s=? Кэш источников.\n" +" -q Не показывать индикатор хода выполнения.\n" +" -i Показывать только важные зависимости для команды unmet.\n" +" -c=? Читать указанный файл настройки.\n" +" -o=? Задать значение произвольной настройки, например, -o dir::cache=/tmp\n" +"Подробности в справочных страницах apt-cache(8) и apt.conf(5).\n" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Не удалось получить %s %s\n" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Задайте имя для этого диска, например «Debian 5.0.3 Disk 1»" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Не удалось переименовать %s в %s" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Вставьте диск в устройство и нажмите ввод" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "Failed to mount '%s' to '%s'" +msgstr "Не удалось примонтировать «%s» к «%s»" + +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Повторите этот процесс для всех имеющихся CD." + +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Непарные аргументы" + +#: cmdline/apt-config.cc:89 +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 "" +"Использование: apt-config [параметры] команда\n" +"\n" +"apt-config — простой инструмент для чтения файла настройки APT\n" +"\n" +"Команды:\n" +" shell - режим shell\n" +" dump - показать настройки\n" +"\n" +"Параметры:\n" +" -h Этот текст.\n" +" -с=? Читать указанный файл настройки.\n" +" -o=? Задать значение произвольной настройке, например, -o dir::cache=/" +"tmp\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "В кэше " +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Получено:" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Игн " +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Ош " +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Используется «%s» в качестве исходного пакета вместо «%s»\n" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Игнорируется недоступная версия «%s» пакета «%s»" + +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Получено %sБ за %s (%sБ/c)\n" +msgid "Couldn't find package %s" +msgstr "Не удалось найти пакет %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid " [Working]" -msgstr " [Обработка]" +msgid "%s set to manually installed.\n" +msgstr "%s установлен вручную.\n" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s выбран для автоматической установки.\n" + +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"Смена носителя: вставьте диск с меткой\n" -" «%s»\n" -"в устройство «%s» и нажмите ввод\n" +"Эта команда устарела. Используйте вместо неё «apt-mark auto» и «apt-mark " +"manual»." -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Невозможно прочитать %s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Внутренняя ошибка, решатель проблем всё поломал" + +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Невозможно заблокировать каталог, куда складываются скачиваемые файлы" + +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"Укажите как минимум один пакет, исходный код которого необходимо получить" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Unable to change to %s" -msgstr "Невозможно сменить текущий каталог на %s" +msgid "Unable to find a source package for %s" +msgstr "Невозможно найти пакет с исходным кодом для %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:786 #, c-format -msgid "No mirror file '%s' found " -msgstr "Файл «%s» не найден на зеркале" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"ВНИМАНИЕ: упаковка «%s» поддерживается в системе контроля версий «%s»:\n" +"%s\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Невозможно прочитать файл на зеркале «%s»" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Используйте:\n" +"bzr branch %s\n" +"для получения последних (возможно не выпущенных) обновлений пакета.\n" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Невозможно прочитать файл на зеркале «%s»" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Пропускаем уже скачанный файл «%s»\n" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "[Mirror: %s]" -msgstr "[Зеркало: %s]" +msgid "Couldn't determine free space in %s" +msgstr "Не удалось определить количество свободного места в %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Не удалось создать IPC-канал для порождённого процесса" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Соединение закрыто преждевременно" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Неправильное значение по умолчанию!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Для продолжения нажмите ввод." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Удалить все ранее скачанные .deb файлы?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Во время распаковки возникли ошибки. Пакеты, которые были установлены," - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "будут настроены. Это может привести к повторению ошибок" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"или возникновению новых из-за неудовлетворённых зависимостей. Это нормально, " -"важны" - -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"только ошибки, указанные в этом сообщении. Исправьте их и выполните " -"установку ещё раз" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Слияние доступной информации" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode вызван для узла, который ещё используется" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Не удалось найти элемент хеша!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Не удалось создать diversion" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Внутренняя ошибка в AddDiversion" - -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Попытка изменения diversion, %s -> %s и %s/%s" +msgid "You don't have enough free space in %s" +msgstr "Недостаточно места в %s" -#: apt-inst/filelist.cc:506 +#. 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:891 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Двойное добавление diversion %s -> %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" -#: apt-inst/filelist.cc:549 +#. 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:896 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Повторно указан файл настройки %s/%s" +msgid "Need to get %sB of source archives.\n" +msgstr "Необходимо получить %sб архивов исходного кода.\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The path %s is too long" -msgstr "Слишком длинный путь %s" +msgid "Fetch source %s\n" +msgstr "Получение исходного кода %s\n" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Повторная распаковка %s" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Некоторые архивы не удалось получить." -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Каталог %s входит в список diverted" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Указан режим «только скачивание», и скачивание завершено" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:950 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Пакет пытается писать в diversion %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Путь diversion слишком длинен" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Пропускается распаковка уже распакованного исходного кода в %s\n" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Failed to stat %s" -msgstr "Не удалось получить атрибуты %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Команда распаковки «%s» завершилась неудачно.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Не удалось переименовать %s в %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:991 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Каталог %s был заменён не-каталогом" +msgid "Build command '%s' failed.\n" +msgstr "Команда сборки «%s» завершилась неудачно.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Не удалось разместить узел в хеше" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Порождённый процесс завершился неудачно" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Путь слишком длинен" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Для проверки зависимостей для сборки необходимо указать как минимум один " +"пакет" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Файлы заменяются содержимым пакета %s без версии" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"У %s отсутствует информация об архитектуре. Для её настройки смотрите apt." +"conf(5) APT::Architectures" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Файл %s/%s переписывает файл в пакете %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Невозможно получить информацию о зависимостях для сборки %s" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Unable to stat %s" -msgstr "Невозможно получить атрибуты %s" +msgid "%s has no build depends.\n" +msgstr "%s не имеет зависимостей для сборки.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Failed to write file %s" -msgstr "Не удалось записать в файл %s" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Зависимость типа %s для %s не может быть удовлетворена, так как %s не " +"разрешён для пакетов «%s»" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Failed to close file %s" -msgstr "Не удалось закрыть файл %s" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " +"найден" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Это неправильный DEB-архив — отсутствует составная часть «%s»" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " +"пакет %s новее, чем надо" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Внутренняя ошибка, не удалось найти составную часть %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Не удалось прочесть содержимое control-файла" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Зависимость типа %s для %s не может быть удовлетворена, так как версия-" +"кандидат пакета %s не может удовлетворить требованиям по версии" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Неверная сигнатура архива" +#: cmdline/apt-get.cc:1357 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " +"имеет версии-кандидата" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Ошибка чтения заголовка элемента архива" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Invalid archive member header %s" -msgstr "Неправильный заголовок элемента архива %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Зависимости для сборки %s не могут быть удовлетворены." -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Неправильный заголовок элемента архива" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Обработка зависимостей для сборки завершилась неудачно" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Слишком короткий архив" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Changelog для %s (%s)" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Не удалось прочитать заголовки архива" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Поддерживаемые модули:" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Не удалось создать каналы" - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Не удалось выполнить gzip " - -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Повреждённый архив" - -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Неправильная контрольная сумма Tar, архив повреждён" - -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Неизвестный заголовок в архиве TAR. Тип %u, элемент %s" +#: cmdline/apt-get.cc:1632 +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 "" +"Использование: apt-get [параметры] команда\n" +" apt-get [параметры] install|remove пакет1 [пакет2…]\n" +" apt-get [параметры] source пакет1 [пакет2…]\n" +"\n" +"apt-get — простая программа с интерфейсом командной строки\n" +"для скачивания и установки пакетов. Наиболее часто используемые\n" +"команды — update и install.\n" +"\n" +"Команды:\n" +" update - получить новые списки пакетов\n" +" upgrade - выполнить обновление\n" +" install - установить новые пакеты (на месте пакета указывается имя " +"пакета\n" +" (libc6, а не имя файла libc6.deb)\n" +" remove - удалить пакеты\n" +" autoremove - автоматически удалить все неиспользуемые пакеты\n" +" purge - удалить пакеты вместе с их файлами настройки\n" +" source - скачать архивы с исходным кодом\n" +" build-dep - настроить всё необходимое для сборки\n" +" пакета из исходного кода\n" +" dist-upgrade - обновить всю систему, подробнее в apt-get(8)\n" +" dselect-upgrade - руководствоваться выбором, сделанным в dselect\n" +" clean - удалить скачанные файлы архивов\n" +" autoclean - удалить старые скачанные файлы архивов\n" +" check - проверить наличие нарушенных зависимостей\n" +" changelog - скачать и показать файл изменений заданного пакета\n" +" download - скачать двоичный пакет в текущий каталог\n" +"\n" +"Параметры:\n" +" -h эта справка\n" +" -q показывать сообщения о работе, не выводить индикатор хода работы\n" +" -qq показывать только сообщения об ошибках\n" +" -d только скачать и НЕ устанавливать и не распаковывать архивы\n" +" -s не выполнять действия на самом деле, только имитация работы\n" +" -y отвечать «Да» на все вопросы, сами вопросы при этом не выводить\n" +" -f попытаться исправить систему, имеющую сломанные зависимости\n" +" -m попытаться продолжить, даже если архивы не найдены\n" +" -u показывать также список обновляемых пакетов\n" +" -b собрать пакет из исходного кода после его получения\n" +" -V показывать полные номера версий\n" +" -c=? читать указанный файл настройки\n" +" -o=? задать значение произвольному параметру настройки,\n" +" например, -o dir::cache=/tmp\n" +"В справочных страницах apt-get(8), sources.list(5) и apt.conf(5)\n" +"содержится подробная информация и описание параметров.\n" +" В APT есть коровья СУПЕРСИЛА.\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Невозможно получить атрибуты %s." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Укажите как минимум один пакет, исходный код которого необходимо получить" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Запускается dpkg" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/init.cc:146 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Система пакетирования «%s» не поддерживается" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Невозможно определить подходящий тип системы пакетирования" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s не может быть помечен, так он не установлен.\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Wrote %i records.\n" -msgstr "Сохранено %i записей.\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s уже помечен как установленный вручную.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Сохранено %i записей с %i отсутствующими файлами.\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s уже помечен как установленный автоматически.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Сохранено %i записей с %i несовпадающими файлами\n" +msgid "%s was already set on hold.\n" +msgstr "%s уже помечен как зафиксированный.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Сохранено %i записей с %i отсутствующими файлами и с %i несовпадающими " -"файлами\n" +msgid "%s was already not hold.\n" +msgstr "%s уже помечен как не зафиксированный.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Не удалось найти аутентификационную запись для: %s" +msgid "%s set on hold.\n" +msgstr "%s помечен как зафиксированный.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Не совпадает хеш сумма для: %s" +msgid "Canceled hold on %s.\n" +msgstr "Отмена фиксации для %s.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Драйвер для метода %s не найден." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" +"Выполнение dpkg завершилось с ошибкой. У вас есть права суперпользователя?" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Использование: apt-mark [параметры] {auto|manual} пакет1 [пакет2…]\n" +"\n" +"apt-mark — простая программа с интерфейсом командной строки\n" +"для отметки пакетов, что они установлены вручную или автоматически.\n" +"Также может показывать списки помеченных пакетов.\n" +"\n" +"Команды:\n" +" auto - пометить указанные пакеты, как установленные автоматически\n" +" manual - пометить указанные пакеты, как установленные вручную\n" +"\n" +"Параметры:\n" +" -h эта справка\n" +" -q показывать сообщения о работе, не выводить индикатор хода работы\n" +" -qq показывать только сообщения об ошибках\n" +" -s не выполнять действия на самом деле, только имитация работы\n" +" -f читать/писать данные о пометках в заданный файл\n" +" -c=? читать указанный файл настройки\n" +" -o=? задать значение произвольному параметру настройки,\n" +" например, -o dir::cache=/tmp\n" +"В справочных страницах apt-mark(8) и apt.conf(5)\n" +"содержится подробная информация и описание параметров." -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Метод %s запустился не корректно" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/acquire-worker.cc:455 +#: methods/cdrom.cc:203 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Вставьте диск с меткой «%s» в устройство «%s» и нажмите ввод." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Списки пакетов или файл состояния не могут быть открыты или прочитаны." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Вы можете запустить «apt-get update» для исправления этих ошибок" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Не читается перечень источников." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Кэш пакетов пуст" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Кэш пакетов повреждён" +msgid "Unable to read the cdrom database %s" +msgstr "Невозможно прочесть базу %s с CD" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Не поддерживаемая версия кэша пакетов" +#: 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 "" +"Пожалуйста, используйте apt-cdrom, чтобы APT смог распознать данный CD. apt-" +"get update не используется для добавления нового CD" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Кэш пакетов повреждён, он слишком мал" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Ошибочный CD" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:249 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Эта версия APT не поддерживает систему версий «%s»" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Кэш пакетов был собран для другой архитектуры" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Зависит" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "ПредЗависит" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Предлагает" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Рекомендует" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Конфликтует" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Заменяет" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Замещает" - -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ломает" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Невозможно размонтировать CD-ROM в %s, возможно он ещё используется." -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Улучшает" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Диск не найден." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "важный" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Файл не найден" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "необходимый" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Не удалось получить атрибуты" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "стандартный" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Не удалось установить время модификации" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "необязательный" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Неправильный URI, локальный URI не должен начинаться с //" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "дополнительный" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Вход в систему" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Не поддерживается индексный файл типа «%s»" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Невозможно определить имя удалённого сервера" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Кэш имеет несовместимую систему версий" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +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:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Произошла ошибка во время обработки %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Превышено допустимое количество имён пакетов, которое способен обработать " -"APT." - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Превышено допустимое количество версий, которое способен обработать APT." +msgid "The server refused the connection and said: %s" +msgstr "Сервер разорвал соединение и сообщил: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Превышено допустимое количество описаний, которое способен обработать APT." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Команда USER не выполнена, сервер сообщил: %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Команда PASS не выполнена, сервер сообщил: %s" + +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Превышено допустимое количество зависимостей, которое способен обработать " -"APT." +"Proxy-сервер указан, однако нет сценария входа в систему, Acquire::ftp::" +"ProxyLogin пуст." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Во время обработки файла зависимостей не найден пакет %s %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "" +"Команда «%s» сценария входа в систему завершилась неудачно, сервер сообщил: " +"%s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Не удалось получить атрибуты списка пакетов исходного кода %s" +msgid "TYPE failed, server said: %s" +msgstr "Команда TYPE не выполнена, сервер сообщил: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Чтение списков пакетов" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Допустимое время ожидания для соединения истекло" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Сбор информации о Provides" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Сервер прервал соединение" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Невозможно записать в %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Ответ переполнил буфер." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Искажение протокола" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Отправка сценария решателю" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Не удалось создать сокет" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Отправка запроса решателю" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Не удалось присоединиться к сокету данных, время на установление соединения " +"истекло" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Подготовка к приёму решения" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Неудачно" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "Внешний решатель завершился с ошибкой не передав сообщения об ошибке" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Невозможно присоединить пассивный сокет" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Запустить внешний решатель" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Вызов getaddrinfo не смог получить сокет" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "переименовать не удалось, %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Невозможно присоединиться к сокету" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Хеш сумма не совпадает" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Не удалось принимать соединения на сокете" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Не совпадает размер" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Не удалось определить имя сокета" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Неверная операция %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Невозможно послать команду PORT" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Невозможно найти ожидаемый элемент «%s» в файле Release (некорректная запись " -"в sources.list или файл)" +msgid "Unknown address family %u (AF_*)" +msgstr "Неизвестное семейство адресов %u (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Невозможно найти хеш-сумму «%s» в файле Release" +msgid "EPRT failed, server said: %s" +msgstr "Команда EPRT не выполнена, сервер сообщил: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Недоступен открытый ключ для следующих ID ключей:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Время установления соединения для сокета данных истекло" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Файл Release для %s просрочен (недостоверный начиная с %s). Обновление этого " -"репозитория производиться не будет." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Невозможно принять соединение" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Конфликт распространения: %s (ожидался %s, но получен %s)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Проблема при хешировании файла" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Произошла ошибка при проверке подписи. Репозиторий не обновлён и будут " -"использованы предыдущие индексные файлы. Ошибка GPG: %s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Невозможно получить файл, сервер сообщил: «%s»" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Время ожидания соединения для сокета данных истекло" + +#: methods/ftp.cc:935 #, c-format -msgid "GPG error: %s: %s" -msgstr "Ошибка GPG: %s: %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Передача данных завершилась неудачно, сервер сообщил: «%s»" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Запрос" -#: apt-pkg/acquire-item.cc:1867 +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Невозможно вызвать " + +#: methods/connect.cc:76 #, 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. Это может означать, что вам придётся " -"вручную исправить этот пакет (возможно, пропущен arch)" +msgid "Connecting to %s (%s)" +msgstr "Соединение с %s (%s)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:87 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Невозможно найти источник для загрузки «%2$s» версии «%1$s»" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:94 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Некорректный перечень пакетов. Нет поля Filename: для пакета %s." +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Не удаётся создать сокет для %s (f=%u t=%u p=%u)" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:100 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Блок поставщика %s не содержит отпечатка (fingerprint)" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Невозможно инициализировать соединение с %s:%s (%s)." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:108 #, c-format -msgid "List directory %spartial is missing." -msgstr "Каталог списка %spartial отсутствует." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Не удаётся соединиться с %s:%s (%s), connection timed out" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:126 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Архивный каталог %spartial отсутствует." +msgid "Could not connect to %s:%s (%s)." +msgstr "Не удаётся соединиться с %s:%s (%s)." -#: apt-pkg/acquire.cc:99 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Unable to lock directory %s" -msgstr "Невозможно заблокировать каталог %s" +msgid "Connecting to %s" +msgstr "Соединение с %s" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Скачивается файл %li из %li (осталось %s)" +msgid "Could not resolve '%s'" +msgstr "Не удалось найти IP-адрес для «%s»" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:205 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Скачивается файл %li из %li" +msgid "Temporary failure resolving '%s'" +msgstr "Временная ошибка при попытке получить IP-адрес «%s»" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Некоторые индексные файлы не скачались. Они были проигнорированы или вместо " -"них были использованы старые версии." +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Вы должны заполнить sources.list, поместив туда URI источников пакетов" +#: methods/connect.cc:211 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Невозможно соединиться с %s: %s:" + +#: methods/gpgv.cc:168 msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Значение «%s» недопустимо для APT::Default-Release, так как выпуск " -"недоступен в источниках" - -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Неверная запись в файле параметров %s: отсутствует заголовок Package" +"Внутренняя ошибка: Правильная подпись, но не удалось определить отпечаток " +"ключа?!" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Неизвестный тип фиксации %s" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Найдена как минимум одна неправильная подпись." -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Для фиксации не указан приоритет (или указан нулевой)" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Не удалось выполнить «gpgv» для проверки подписи (gpgv установлена?)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Не удалось выполнить оперативную настройку «%s». Подробней, смотрите в man 5 " -"apt.conf о APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Не удалось настроить «%s»." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Неизвестная ошибка при выполнении gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Следующие подписи неверные:\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Вследствие возникновения циклических зависимостей типа Конфликтует/" -"ПредЗависит, для продолжения установки необходимо временно удалить " -"существенно важный пакет %s. Это может привести к фатальным последствиям. " -"Если вы действительно хотите продолжить, установите параметр APT::Force-" -"LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Строка %u в списке источников %s слишком длинна." +"Следующие подписи не могут быть проверены, так как недоступен открытый " +"ключ:\n" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Размонтирование CD-ROM…\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Пустые файлы не могут быть допустимыми архивами" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Использование %s в качестве точки монтирования CD-ROM\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Ошибка записи в файл" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Ожидание операции работы с диском…\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Ошибка чтения, удалённый сервер прервал соединение" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Монтирование CD-ROM…\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Ошибка чтения с сервера" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Идентификация... " +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Ошибка записи в файл" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Найдена метка: %s \n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Ошибка в select" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Поиск на диске индексных файлов...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Время ожидания для соединения истекло" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Найдено индексов: %zu для пакетов, %zu для источников, %zu для переводов и " -"%zu для сигнатур\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Ошибка записи в выходной файл" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Не удалось найти ни одного файла пакетов; возможно это не диск Debian или с " -"не той архитектурой?" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Ожидание заголовков" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Найден ярлык «%s»\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Неверный заголовок" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Это неправильное имя, попробуйте ещё раз.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Http-сервер послал неверный заголовок" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Название диска: \n" -"«%s»\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Http сервер послал неверный заголовок Content-Length" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Копирование списков пакетов…" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Http-сервер послал неверный заголовок Content-Range" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Запись нового списка источников\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Этот HTTP-сервер не поддерживает скачивание фрагментов файлов" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Записи в списке источников для этого диска:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Неизвестный формат данных" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Пакет %s нуждается в переустановке, но найти архив для него не удалось." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Неверный заголовок данных" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Ошибка, pkgProblemResolver::Resolve сгенерировал повреждённые пакеты. Это " -"может быть вызвано отложенными (held) пакетами." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Соединение разорвано" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Внутренняя ошибка" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Построение дерева зависимостей" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Расчёт обновлений…" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Версии-кандидаты" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Готово" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Генерирование зависимостей" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Чтение информации о состоянии" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Не удалось открыть StateFile %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Не удалось записать временный StateFile %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Исправление зависимостей…" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Невозможно разобрать содержимое пакета %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " не удалось." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Невозможно разобрать содержимое пакета %s (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Невозможно скорректировать зависимости" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Выпуск «%s» для «%s» не найден" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Невозможно минимизировать набор обновлений" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Версия «%s» для «%s» не найдена" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Готово" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Не удалось найти задачу «%s»" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" +"f install»." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Неудовлетворённые зависимости. Попытайтесь использовать -f." -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +msgid "[installed,upgradable to: %s]" +msgstr " [Установлен]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Не удалось выбрать версии из пакета «%s», так как он полностью виртуальный" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Установлен]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Не удалось выбрать ни установленную, ни версию кандидата из пакета «%s», так " -"как в нём нет ни той, ни другой" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Не удалось выбрать самую новую версию из пакета «%s», так как он полностью " -"виртуальный" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Установлен]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Установлен]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Не удалось выбрать самую версию кандидата из пакета %s, так как у него нет " -"кандидатов" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Не удалось выбрать установленную версию из пакета %s, так как он не " -"установлен" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Невозможно разобрать содержимое файла Release (%s)" +msgid "but %s is installed" +msgstr "но %s уже установлен" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Отсутствуют разделы в файле Release (%s)" +msgid "but %s is to be installed" +msgstr "но %s будет установлен" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Отсутствуют элементы Hash в файле Release (%s)" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "но он не может быть установлен" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Неправильный элемент «Valid-Until» в файле Release %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "но это виртуальный пакет" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Неправильный элемент «Date» в файле Release %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "но он не установлен" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "но он не будет установлен" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Искажённая строка %lu в списке источников %s ([параметр] неразбираем)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " или" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Искажённая строка %lu в списке источников %s ([параметр] слишком короткий)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Пакеты, имеющие неудовлетворённые зависимости:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Искажённая строка %lu в списке источников %s (([%s] не назначаем)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "НОВЫЕ пакеты, которые будут установлены:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Искажённая строка %lu в списке источников %s ([%s] не имеет ключа)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Пакеты, которые будут УДАЛЕНЫ:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Пакеты, которые будут оставлены в неизменном виде:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Пакеты, которые будут обновлены:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Пакеты, будут заменены на более СТАРЫЕ версии:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" msgstr "" -"Искажённая строка %lu в списке источников %s (([%s] ключ %s не имеет " -"значения)" +"Пакеты, которые должны были бы остаться без изменений, но будут заменены:" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Искажённая строка %lu в списке источников %s (проблема в URI)" +msgid "%s (due to %s) " +msgstr "%s (вследствие %s) " -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Искажённая строка %lu в списке источников %s (проблема в имени дистрибутива)" +"ВНИМАНИЕ: Эти существенно важные пакеты будут удалены.\n" +"НЕ ДЕЛАЙТЕ этого, если вы НЕ представляете себе все возможные последствия!" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "обновлено %lu, установлено %lu новых пакетов, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Искажённая строка %lu в списке источников %s (absolute dist)" +msgid "%lu reinstalled, " +msgstr "переустановлено %lu переустановлено, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Искажённая строка %lu в списке источников %s (dist parse)" +msgid "%lu downgraded, " +msgstr "%lu пакетов заменены на старые версии, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:715 #, c-format -msgid "Opening %s" -msgstr "Открытие %s" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "для удаления отмечено %lu пакетов, и %lu пакетов не обновлено.\n" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Искажённая строка %u в списке источников %s (тип)" +msgid "%lu not fully installed or removed.\n" +msgstr "не установлено до конца или удалено %lu пакетов.\n" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Д/н]" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Устанавливается %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "д" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Настраивается %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "н" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Удаляется %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Команде update не нужны аргументы" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-update.cc:90 #, c-format -msgid "Completely removing %s" -msgstr "Выполняется полное удаление %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 #, c-format -msgid "Noting disappearance of %s" -msgstr "Уведомление об исчезновении %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Выполняется послеустановочный триггер %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Отсутствует каталог «%s»" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"Внутренняя ошибка, InstallPackages была вызвана с неработоспособными " +"пакетами!" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Не удалось открыть файл «%s»" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Пакеты необходимо удалить, но удаление запрещено." -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Подготавливается %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Внутренняя ошибка, Ordering не завершилась" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Распаковывается %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "Странно. Несовпадение размеров, напишите на apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Preparing to configure %s" -msgstr "Подготавливается для настройки %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Необходимо скачать %sB/%sB архивов.\n" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Installed %s" -msgstr "Установлен %s" +msgid "Need to get %sB of archives.\n" +msgstr "Необходимо скачать %sБ архивов.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Preparing for removal of %s" -msgstr "Подготавливается для удаления %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"После данной операции, объём занятого дискового пространства возрастёт на " +"%sB.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Removed %s" -msgstr "Удалён %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "" +"После данной операции, объём занятого дискового пространства уменьшится на " +"%sB.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Подготовка к полному удалению %s" +msgid "You don't have enough free space in %s." +msgstr "Недостаточно свободного места в %s." -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s полностью удалён" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Существуют проблемы, а параметр -y указан без --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" +"Запрошено выполнение только тривиальных операций, но это не тривиальная " +"операция." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Невозможно записать в %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Да, делать, как я скажу!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"То, что вы хотите сделать, может иметь нежелательные последствия.\n" +"Чтобы продолжить, введите фразу: «%s»\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Действие прервано до его завершения" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Аварийное завершение." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Отчёты apport не записаны, так достигнут MaxReports" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Хотите продолжить?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "проблемы с зависимостями — оставляем ненастроенным" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Некоторые файлы скачать не удалось" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Отчёты apport не записаны, так как сообщение об ошибке указывает на " -"повторную ошибку от предыдущего отказа." +"Невозможно получить некоторые архивы, вероятно надо запустить apt-get update " +"или попытаться повторить запуск с ключом --fix-missing" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " -"места на диске" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing и смена носителя в данный момент не поддерживаются" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Невозможно исправить ситуацию с пропущенными пакетами." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Аварийное завершение установки." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " -"памяти" +"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] "" +"Следующий пакет исчез из системы, так как все их файлы\n" +"теперь берутся из других пакетов:" +msgstr[1] "" +"Следующие пакеты исчез из системы, так как все их файлы\n" +"теперь берутся из других пакетов:" +msgstr[2] "" +"Следующие пакеты исчез из системы, так как все их файлы\n" +"теперь берутся из других пакетов:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Замечание: это сделано автоматически и специально программой dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " -"места на диске" +"Хм, кажется, что AutoRemover был как-то удалён, чего не должно\n" +"было случиться. Пожалуйста, отправьте сообщение об ошибке в пакете apt." -#: apt-pkg/deb/dpkgpm.cc:1685 +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Следующая информация, возможно, поможет вам:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Внутренняя ошибка, AutoRemover всё поломал" + +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Отчёты apport не записаны, так как получено сообщение об ошибке об ошибке " -"ввода-выводы dpkg" +"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] "Следующий пакет устанавливался автоматически и больше не требуется:" +msgstr[1] "" +"Следующие пакеты устанавливались автоматически и больше не требуются:" +msgstr[2] "" +"Следующие пакеты устанавливались автоматически и больше не требуются:" -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:517 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +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" +msgstr[1] "%lu пакета было установлено автоматически и больше не требуется.\n" +msgstr[2] "%lu пакетов было установлены автоматически и больше не требуются.\n" + +#: apt-private/private-install.cc:519 +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»." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Не удалось выполнить блокировку управляющего каталога (%s); он уже " -"используется другим процессом?" +"Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" +"f install»:" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Не удалось выполнить блокировку управляющего каталога (%s); у вас есть права " -"суперпользователя?" +"Неудовлетворённые зависимости. Попытайтесь выполнить «apt-get -f install», " +"не указывая имени пакета, (или найдите другое решение)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"Работа dpkg прервана, вы должны вручную запустить «%s» для устранения " -"проблемы. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Не заблокирован" +"Некоторые пакеты невозможно установить. Возможно, вы просите невозможного,\n" +"или же используете нестабильную версию дистрибутива, где запрошенные вами\n" +"пакеты ещё не созданы или были удалены из Incoming." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%liд %liч %liмин %liс" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Сломанные пакеты" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%liч %liмин %liс" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Будут установлены следующие дополнительные пакеты:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%liмин %liс" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Предлагаемые пакеты:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%liс" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Рекомендуемые пакеты:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Не найдено: %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Пропускается %s — пакет уже установлен и нет команды upgrade.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Блокировка не используется, так как файл блокировки %s доступен только для " -"чтения" +"Пропускается %s — пакет не установлен, а запрошено только обновление.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Не удалось открыть файл блокировки %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Переустановка %s невозможна, он не скачивается.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Блокировка не используется, так как файл блокировки %s находится на файловой " -"системе nfs" +msgid "%s is already the newest version.\n" +msgstr "Уже установлена самая новая версия %s.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Не удалось получить доступ к файлу блокировки %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Выбрана версия «%s» (%s) для «%s»\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Список файлов не может быть создан, так как «%s» не является каталогом" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Выбрана версия «%s» (%s) для «%s» из-за «%s»\n" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Файл «%s» в каталоге «%s» игнорируется, так как это необычный файл" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Пакет «%s» не установлен, поэтому не может быть удалён. Возможно имелся в " +"виду «%s»?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Файл «%s» в каталоге «%s» игнорируется, так как он не имеет расширения" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Пакет «%s» не установлен, поэтому не может быть удалён\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"Файл «%s» в каталоге «%s» игнорируется, так как он не имеет неправильное " -"расширение" +"ЗАМЕЧАНИЕ: Производить только имитация работы!\n" +" Для реальной работы apt-get требуются права суперпользователя.\n" +" Учтите, что блокировка не используется,\n" +" поэтому нет полного соответствия с текущей реальной ситуацией!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "" -"Нарушение защиты памяти (segmentation fault) в порождённом процессе %s." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ВНИМАНИЕ: Следующие пакеты невозможно аутентифицировать!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Порождённый процесс %s получил сигнал %u." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Предупреждение об аутентификации не принято в внимание.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Порождённый процесс %s вернул код ошибки (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Некоторые пакеты невозможно аутентифицировать" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Порождённый процесс %s неожиданно завершился" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Установить эти пакеты без проверки?" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Проблема закрытия gzip-файла %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Не удалось переименовать %s в %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Не удалось открыть файл %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Не удалось открыть файловый дескриптор %d" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Не удалось создать IPC с порождённым процессом" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "В кэше " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Не удалось выполнить компрессор " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Получено:" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "" -"ошибка при чтении; собирались прочесть ещё %llu байт, но ничего больше нет" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Игн " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "ошибка при записи; собирались записать ещё %llu байт, но не смогли" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Ош " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the file %s" -msgstr "Проблема закрытия файла %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Получено %sБ за %s (%sБ/c)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Проблема при переименовании файла %s в %s" +msgid " [Working]" +msgstr " [Обработка]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Проблема при удалении файла %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Проблема при синхронизации файла" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Смена носителя: вставьте диск с меткой\n" +" «%s»\n" +"в устройство «%s» и нажмите ввод\n" -#: apt-pkg/contrib/progress.cc:148 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s… Ошибка!" +msgid "No mirror file '%s' found " +msgstr "Файл «%s» не найден на зеркале" -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... Done" -msgstr "%c%s… Готово" +msgid "Can not read mirror file '%s'" +msgstr "Невозможно прочитать файл на зеркале «%s»" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "…" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Невозможно прочитать файл на зеркале «%s»" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… %u%%" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Невозможно отобразить в память пустой файл" +msgid "[Mirror: %s]" +msgstr "[Зеркало: %s]" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Не удалось сделать копию файлового дескриптора %i" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Не удалось создать IPC-канал для порождённого процесса" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Невозможно отобразить в память %llu байт" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Соединение закрыто преждевременно" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Не удалось закрыть mmap" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Неправильное значение по умолчанию!" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Не удалось синхронизировать mmap" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Для продолжения нажмите ввод." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Невозможно отобразить в память %lu байт" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Удалить все ранее скачанные .deb файлы?" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Не удалось обрезать файл" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Во время распаковки возникли ошибки. Пакеты, которые были установлены," -#: 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 "" -"Не хватает места для Dynamic MMap. Увеличьте значение APT::Cache-Start. " -"Текущее значение: %lu. (man 5 apt.conf)" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "будут настроены. Это может привести к повторению ошибок" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Не удалось увеличить размер MMap, так как уже достигнут предел в %lu байт." +"или возникновению новых из-за неудовлетворённых зависимостей. Это нормально, " +"важны" -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Не удалось увеличить размер MMap, так как автоматическое увеличение " -"отключено пользователем." +"только ошибки, указанные в этом сообщении. Исправьте их и выполните " +"установку ещё раз" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Невозможно прочитать атрибуты точки монтирования %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Слияние доступной информации" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Невозможно получить атрибуты cdrom" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode вызван для узла, который ещё используется" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Неизвестная аббревиатура типа: «%c»" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Не удалось найти элемент хеша!" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Открытие файла настройки %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Не удалось создать diversion" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Внутренняя ошибка в AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Синтаксическая ошибка %s:%u: в начале блока нет имени." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Попытка изменения diversion, %s -> %s и %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Синтаксическая ошибка %s:%u: искажённый тег" +msgid "Double add of diversion %s -> %s" +msgstr "Двойное добавление diversion %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Синтаксическая ошибка %s:%u: лишние символы после значения" +msgid "Duplicate conf file %s/%s" +msgstr "Повторно указан файл настройки %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Синтаксическая ошибка %s:%u: директивы могут задаваться только на верхнем " -"уровне" +msgid "The path %s is too long" +msgstr "Слишком длинный путь %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Синтаксическая ошибка %s:%u: слишком много вложенных include" +msgid "Unpacking %s more than once" +msgstr "Повторная распаковка %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Синтаксическая ошибка %s:%u вызвана include из этого места" +msgid "The directory %s is diverted" +msgstr "Каталог %s входит в список diverted" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Синтаксическая ошибка %s:%u: не поддерживаемая директива «%s»" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Пакет пытается писать в diversion %s/%s" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Путь diversion слишком длинен" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Синтаксическая ошибка %s:%u: для директивы clear требуется третий параметр в " -"качестве аргумента" +msgid "Failed to stat %s" +msgstr "Не удалось получить атрибуты %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Синтаксическая ошибка %s:%u: лишние символы в конце файла" +msgid "Failed to rename %s to %s" +msgstr "Не удалось переименовать %s в %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "Связка ключей в %s не установлена." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Каталог %s был заменён не-каталогом" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Не удалось разместить узел в хеше" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Путь слишком длинен" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Неизвестный параметр командной строки «%c» [из %s]." +msgid "Overwrite package match with no version for %s" +msgstr "Файлы заменяются содержимым пакета %s без версии" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Не распознанный параметр командной строки %s" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Файл %s/%s переписывает файл в пакете %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Параметр командной строки %s — не логический переключатель \"да/нет\"" +msgid "Unable to stat %s" +msgstr "Невозможно получить атрибуты %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Для параметра %s требуется аргумент." +msgid "Failed to write file %s" +msgstr "Не удалось записать в файл %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Значение параметра %s должно иметь вид =<val>." +msgid "Failed to close file %s" +msgstr "Не удалось закрыть файл %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Для параметра %s требуется аргумент в виде целого числа, а не «%s»" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Это неправильный DEB-архив — отсутствует составная часть «%s»" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Параметр «%s» слишком длинный" +msgid "Internal error, could not locate member %s" +msgstr "Внутренняя ошибка, не удалось найти составную часть %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Не удалось прочесть содержимое control-файла" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Неверная сигнатура архива" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Ошибка чтения заголовка элемента архива" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Смысл %s не ясен, используйте true или false." +msgid "Invalid archive member header %s" +msgstr "Неправильный заголовок элемента архива %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Неправильный заголовок элемента архива" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Слишком короткий архив" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Не удалось прочитать заголовки архива" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Не удалось создать каналы" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Не удалось выполнить gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Повреждённый архив" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Неправильная контрольная сумма Tar, архив повреждён" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Неверная операция %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Неизвестный заголовок в архиве TAR. Тип %u, элемент %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3640,7 +3643,7 @@ msgstr "Ошибка чтения во время вычисления MD5" msgid "Problem unlinking %s" msgstr "Не удалось удалить %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3693,6 +3696,10 @@ msgstr "" " -c=? читать указанный файл настройки\n" " -o=? Задать значение произвольной настройке, например, -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Внутренняя ошибка, AllUpgrade всё поломал" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s не является правильным DEB-пакетом." diff --git a/po/sk.po b/po/sk.po index 6e9f85197..5595bb83c 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-06-28 20:49+0100\n" "Last-Translator: Ivan Masár <helix84@centrum.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" @@ -20,3216 +20,3220 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indexový súbor typu „%s“ nie je podporovaný" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Balík %s verzie %s má nesplnené závislosti:\n" +msgid "Unable to read %s" +msgstr "Nedá sa načítať %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Celkom názvov balíkov: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Nedá sa prejsť do %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Celkom štruktúr balíkov: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Nie je možné vykonať stat %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normálnych balíkov: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Čisto virtuálnych balíkov: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Spúšťa sa dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Jednoduchých virtuálnych balíkov: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Systém balíkov „%s“ nie je podporovaný" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Zmiešaných virtuálnych balíkov: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nedá sa určiť vhodný typ systému balíkov" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Chýbajúcich: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Zapísaných %i záznamov.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Celkom rôznych verzií: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, 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" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Celkom rôznych popisov: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, 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" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Celkom závislostí: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Celkom vzťahov ver/súbor: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Nebolo možné nájsť autentifikačný záznam pre: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Celkom vzťahov popis/súbor: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Nezhoda kontrolných haš súčtov: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Celkom poskytnutých mapovaní: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Nedá sa nájsť ovládač spôsobu %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Celkom globovaných reťazcov: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Celkom miesta závislých verzií: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Spôsob %s nebol správne spustený" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Celkom jalového miesta: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Vložte disk nazvaný „%s“ do mechaniky „%s“ a stlačte Enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Celkom priradeného miesta: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Zoznamy balíkov alebo stavový súbor sa nedajú spracovať alebo otvoriť." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Súbor balíkov %s je neaktuálny." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Na opravu týchto problémov môžete skúsiť spustiť apt-get update" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Neboli nájdené žiadne balíky" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nedá sa načítať zoznam zdrojov." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Musíte zadať aspoň jeden vyhľadávací vzor" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Vyrovnávacia pamäť balíkov je prázdna" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark " -"showauto“." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Súbor vyrovnávacej pamäti balíkov je nezlučiteľnej verzie" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený, je príliš malý" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Nedá sa nájsť balík %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Tento APT nepodporuje systém na správu verzií „%s“" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Súbory balíka:" +#: apt-pkg/pkgcache.cc:179 +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" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Vyrovnávacia pamäť je neaktuálna, nedá sa odvolať na súbor balíka" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Závisí na" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pripevnené balíky:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Predzávisí na" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nenájdené)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Navrhuje" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Nainštalovaná verzia: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Odporúča" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidát: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Koliduje s" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(žiadna)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Nahrádza" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pripevnený balík:" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zneplatňuje" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabuľka verzií:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Kazí" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pre %s skompilovaný %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Rozširuje" -#: cmdline/apt-cache.cc:1749 -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 "" -"Použitie: apt-cache [voľby] príkaz\n" -" apt-cache [voľby] showpkg balík1 [balík2 ...]\n" -" apt-cache [voľby] showsrc balík1 [balík2 ...]\n" -"\n" -"apt-cache je nízkoúrovňový nástroj na zisťovanie informácií\n" -"z binárnych súborov vyrovnávacej pamäti APT\n" -"\n" -"Príkazy:\n" -" gencaches - Zostaví vyrovnávaciu pamäť balíkov a zdrojov\n" -" showpkg - Zobrazí všeobecné údaje o balíku\n" -" showsrc - Zobrazí zdrojové záznamy\n" -" stats - Zobrazí základné štatistiky\n" -" dump - Zobrazí celý súbor v zhustenej podobe\n" -" dumpavail - Vypíše súbor dostupných balíkov na štandardný výstup\n" -" unmet - Zobrazí nesplnené závislosti\n" -" search - Prehľadá zoznam balíkov podľa regulárneho výrazu\n" -" show - Zobrazí prehľadné informácie o balíku\n" -" depends - Zobrazí základné údaje o závislostiach balíka\n" -" rdepends - Zobrazí údaje o spätných závislostiach balíka\n" -" pkgnames - Vypíše zoznam názvov všetkých balíkov v systéme\n" -" dotty - Vytvorí diagramy balíka pre GraphViz\n" -" xvcg - Vytvorí diagramy balíka pre xvcg\n" -" policy - Zobrazí nastavenia zásad\n" -"\n" -"Voľby:\n" -" -h Tento pomocník.\n" -" -p=? Vyrovnávacia pamäť balíkov.\n" -" -s=? Vyrovnávacia pamäť zdrojov.\n" -" -q Nezobrazí indikátor priebehu.\n" -" -i Pri príkaze unmet zobrazí iba dôležité závislosti.\n" -" -c=? Načíta tento konfiguračný súbor\n" -" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -"Ďalšie informácie nájdete v manuálových stránkach apt-cache(8)\n" -"a apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "dôležitý" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Prosím, zadajte názov tohto disku, napríklad „Debian 5.0.3 Disk 1“" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "požadovaný" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Vložte disk do mechaniky a stlačte Enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "štandardný" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "voliteľný" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Pripojenie „%s“ na „%s“ zlyhalo" +msgid "Index file type '%s' is not supported" +msgstr "Indexový súbor typu „%s“ nie je podporovaný" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Chyba pri preklade regulárneho výrazu - %s" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Zopakujte tento postup pre všetky CD v sade diskov." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenty nie sú vo dvojiciach" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Vyskytla sa chyba pri spracovávaní %s (%s%d)" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Použitie: apt-config [voľby] príkaz\n" -"\n" -"apt-config je jednoduchý nástroj na čítanie konfiguračného súboru APT\n" -"\n" -"Príkazy:\n" -" shell - Režim shell\n" -" dump - Zobrazí nastavenie\n" -"\n" -"Voľby:\n" -" -h Tento pomocník.\n" -" -c=? Načíta tento konfiguračný súbor\n" -" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" +"Fíha, prekročili ste počet názvov balíkov, ktoré toto APT zvládne spracovať." -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Fíha, prekročili ste počet popisov, ktoré toto APT zvládne spracovať." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" +#: apt-pkg/pkgcachegen.cc:266 +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ť." -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Vyberá sa „%s“ ako zdrojový balík namiesto „%s“\n" - -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorovať nedostupnú verziu „%s“ balíka „%s“" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Pri spracovaní závislostí nebol nájdený balík %s %s" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't find package %s" -msgstr "Balík %s sa nedá nájsť" +msgid "Couldn't stat source package list %s" +msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s je označený ako manuálne nainštalovaný.\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Načítavajú sa zoznamy balíkov" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Collecting File poskytuje" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s je označený ako automaticky nainštalovaný.\n" +msgid "Unable to write to %s" +msgstr "Do %s sa nedá zapisovať" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark auto“ a " -"„apt-mark manual“." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Vnútorná chyba, „problem resolver“ niečo pokazil" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Poslať scénár riešiteľovi" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Adresár pre sťahovanie sa nedá zamknúť" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Poslať požiadavku riešiteľovi" -#: cmdline/apt-get.cc:726 -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" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Pripraviť sa na prijatie riešenia" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Nedá sa nájsť zdrojový balík pre %s" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Externý riešiteľ zlyhal bez uvedenia chybovej správy" -#: cmdline/apt-get.cc:786 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Spustiť externého riešiteľa" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"POZN.: tvorba balíka „%s“ sa spravuje v sytéme na riadenie revízií „%s“ na " -"adrese:\n" -"%s\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "premenovanie zlyhalo, %s (%s -> %s)." -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Nezhoda kontrolných haš súčtov" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Veľkosti sa nezhodujú" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Neplatná operácia %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Prosím, použite:\n" -"bzr branch %s\n" -"ak chcete získať najnovšie (a pravdepodobne zatiaľ nevydané) aktualizácie " -"balíka.\n" +"Nepodarilo sa nájsť očakávanú položku „%s“ v súbore Release (Nesprávna " +"položka sources.list alebo chybný formát súboru)" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nepodarilo sa nájsť haš „%s“ v súbore Release" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Nie sú dostupné žiadne verejné kľúče ku kľúčom s nasledovnými ID:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Na %s sa nedá zistiť veľkosť voľného miesta" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Súbor Release pre %s vypršal (neplatný od %s). Aktualizácie tohto zdroja " +"softvéru sa nepoužijú." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Na %s nemáte dostatok voľného miesta" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "V konflikte s distribúciou: %s (očakávalo sa %s ale dostali sme %s)" -#. 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:891 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Počas overovania podpisu sa vyskytla chyba. Repozitár nie je aktualizovaný a " +"použijú sa predošlé indexové súbory. Chyba GPG: %s: %s\n" -#. 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:896 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n" +msgid "GPG error: %s: %s" +msgstr "Chyba GPG: %s: %s" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Fetch source %s\n" -msgstr "Stiahnuť zdroj %s\n" +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 "" +"Nedá sa nájsť súbor s balíkom %s. To by mohlo znamenať, že tento balík je " +"potrebné opraviť manuálne (kvôli chýbajúcej architektúre)." -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Zlyhalo stiahnutie niektorých archívov." +#: apt-pkg/acquire-item.cc:1925 +#, 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:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Sťahovanie ukončené v režime „iba stiahnuť“" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Indexové súbory balíka sú narušené. Chýba pole Filename: pre balík %s." -#: cmdline/apt-get.cc:950 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Blok výrobcu %s neobsahuje otlačok (fingerprint)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n" +msgid "List directory %spartial is missing." +msgstr "Adresár zoznamov %spartial chýba." -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" +msgid "Archives directory %spartial is missing." +msgstr "Archívny adresár %spartial chýba." -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Príkaz na zostavenie „%s“ zlyhal.\n" +msgid "Unable to lock directory %s" +msgstr "Adresár %s sa nedá zamknúť" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Proces potomka zlyhal" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Sťahuje sa %li. súbor z %li (zostáva %s)" -#: cmdline/apt-get.cc:1029 -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" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Sťahuje sa %li. súbor z %li" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Zlyhalo stiahnutie %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." 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:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nedajú sa získať závislosti na zostavenie %s" +"Niektoré indexové súbory sa nepodarilo stiahnuť. Boli ignorované alebo sa " +"použili staršie verzie." -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s nemá žiadne závislosti na zostavenie.\n" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Do sources.list musíte zadať nejaký „source“ (zdrojový) URI" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"%s závislosť pre %s nemožno splniť, pretože %s nie je povolené na balíkoch " -"„%s“" +"„%s“ nie je platná hodnota pre APT::Default-Release, pretože také vydanie " +"nie je dostupné v zdrojoch" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/policy.cc:422 #, 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" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Neplatný záznam v súbore nastavení %s, chýba hlavička Package" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:444 #, 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ý" +msgid "Did not understand pin type %s" +msgstr "Nezrozumiteľné pridržanie typu %s" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"%s závislosť pre %s nemožno splniť, pretože kandidátska verzia balíka %s, " -"nedokáže splniť požiadavky na verziu" +"Nebolo možné vykonať okamžitú konfiguráciu „%s“. Pozri prosím podrobnosti v " +"man 5 apt.conf pod APT::Immediate-Configure (%d)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Nedá sa nakonfigurovať „%s“." + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"%s závislosť pre %s nemožno splniť, pretože balík %s nemá kandidátsku verziu" +"Tento beh inštalácie si vyžiada dočasné odstránenie kľúčového balíka %s " +"kvôli slučke v Conflicts/Pre-Depends. Často je to nevhodné, ale ak to chcete " +"naozaj urobiť, aktivujte možnosť APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Riadok %u v zozname zdrojov %s je príliš dlhý." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM sa odpája...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Závislosti na zostavenie %s nemožno splniť." +msgid "Using CD-ROM mount point %s\n" +msgstr "Použije sa prípojný bod CD-ROM %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Spracovanie závislostí na zostavenie zlyhalo" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Čaká sa na disk...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Pripája sa CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifikuje sa..." + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Záznam zmien %s (%s)" +msgid "Stored label: %s\n" +msgstr "Uložená menovka: %s \n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podporované moduly:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Na disku sa hľadajú indexové súbory...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Použitie: apt-get [voľby] príkaz\n" -" apt-get [voľby] install|remove balík1 [balík2 ...]\n" -" apt-get [voľby] source balík1 [balík2 ...]\n" -"\n" -"apt-get je jednoduché rozhranie na príkazovom riadku na sťahovanie\n" -"a inštaláciu balíkov. Najpoužívanejšími príkazmi sú update a install.\n" -"\n" -"Príkazy:\n" -" update - Získa nové zoznamy balíkov\n" -" upgrade - Vykoná aktualizáciu\n" -" install - Nainštaluje nové balíky (balík je libc6, nie libc6." -"deb)\n" -" remove - Odstráni balíky\n" -" autoremove - Automaticky odstráni všetky nepoužité balíky\n" -" purge - Odstráni a balíky a ich konfiguračné súbory\n" -" source - Stiahne zdrojové archívy\n" -" build-dep - Nastaví závislosti kompilácie pre zdrojové balíky\n" -" dist-upgrade - Aktualizácia distribúcie, pozri apt-get(8)\n" -" dselect-upgrade - Riadi sa podľa výberu v dselect\n" -" clean - Zmaže stiahnuté archívy\n" -" autoclean - Zmaže staré stiahnuté archívy\n" -" check - Overí, či neexistujú poškodené závislosti\n" -" markauto - Označí zadané balíky ako automaticky nainštalované\n" -" unmarkauto - Označí zadané balíky ako manuálne nainštalované\n" -"\n" -"Voľby:\n" -" -h Tento pomocník\n" -" -q Nezobrazí indikátor priebehu - pre záznam\n" -" -qq Zobrazí iba chyby\n" -" -d Iba stiahne - neinštaluje ani nerozbaľuje archívy\n" -" -s Žiadna akcia. Iba simuluje postupnosť pripravených akcií\n" -" -y Na všetky otázky odpovedá Áno\n" -" -f Pokúsi sa opraviť systém s poškodenými závislosťami\n" -" -m Skúsi pokračovať, aj keď sa nepodarí nájsť archívy\n" -" -u Zobrazí tiež zoznam aktualizovaných balíkov\n" -" -b Po stiahnutí zdrojového balíka ho aj skompiluje\n" -" -V Zobrazí čísla verzií\n" -" -c=? Načíta tento konfiguračný súbor\n" -" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -"Viac volieb nájdete v manuálových stránkach apt-get(8), sources.list(5)\n" -"a apt.conf(5).\n" -" Tento APT má schopnosti posvätnej kravy.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Nájdených %zu indexov balíkov, %zu indexov zdrojových balíkov, %zu indexov " +"prekladov a %zu signatúr\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Nepodarilo sa nájsť žiadne súbory balíkov, možno toto nie je disk s Debianom " +"alebo je pre nesprávnu architektúru?" -#: cmdline/apt-mark.cc:68 -#, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s nemožno označiť, pretože nie je nainštalovaný.\n" - -#: cmdline/apt-mark.cc:74 -#, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s už bol označený ako manuálne nainštalovaný.\n" - -#: cmdline/apt-mark.cc:76 -#, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s už bol označený ako automaticky nainštalovaný.\n" - -#: cmdline/apt-mark.cc:241 -#, c-format -msgid "%s was already set on hold.\n" -msgstr "%s bol už nastavený na podržanie.\n" - -#: cmdline/apt-mark.cc:243 -#, c-format -msgid "%s was already not hold.\n" -msgstr "%s bol už nastavený na nepodržanie.\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Čakalo sa na %s, ale nebolo to tam" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, c-format -msgid "%s set on hold.\n" -msgstr "%s je označený na podržanie.\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Zrušené podržanie %s.\n" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Vykonanie dpkg zlyhalo. Ste root?" - -#: cmdline/apt-mark.cc:392 -#, fuzzy -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" -"Použitie: apt-mark [voľby] {auto|manual} balík1 [balík2 ...]\n" -"\n" -"apt-mark je jednoduché rozhranie príkazového riadka na označovanie\n" -"balíkov ako manuálne alebo automaticky nainštalované.\n" -"Tiež dokáže označenia vypisovať.\n" -"\n" -"Príkazy:\n" -" auto - Označí uvedené balíky ako automaticky nainštalované\n" -" manual - Označí uvedené balíky ako manuálne nainštalované\n" -"\n" -"Voľby:\n" -" -h Tento text pomocníka.\n" -" -q Výstup vhodný do záznamu - bez indikátora priebehu\n" -" -qq Nevypisovať nič, len chyby\n" -" -s Nevykonávať zmeny. Iba vypísať, čo by sa urobilo.\n" -" -f čítanie/zápis označenia auto/manálne v uvedenom súbore\n" -" -c=? Načítať tento konfiguračný súbor\n" -" -o=? Nastaviť ľubovoľný konfiguračnú voľbu, napr. -o dir::cache=/tmp\n" -"Ďalšie informácie nájdete na manuálových stránkach apt-mark(8) a apt.conf(5)." +msgid "Found label '%s'\n" +msgstr "Nájdená menovka: „%s“\n" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Neplatný názov, skúste znova.\n" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nedá sa čítať databáza na CD-ROM %s" - -#: 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" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Pre pridanie CD do APT použije apt-cdrom. apt-get update sa nedá využiť na " -"pridávanie nových CD." - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Chybné CD" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nedá sa odpojiť CD-ROM v %s - možno sa ešte používa." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk sa nenašiel." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Súbor sa nenašiel" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Vyhodnotenie zlyhalo" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Zlyhalo nastavenie času zmeny" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Neplatné URI, lokálne URI nesmie začínať s //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Prihlasovanie" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nedá sa zistiť názov druhej strany" +"Názov tohto disku je: \n" +"„%s“\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nedá sa zistiť lokálny názov" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopírujú sa zoznamy balíkov..." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Server zamietol naše spojenie s chybou: %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Zapisuje sa nový zoznam zdrojov\n" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "Zlyhalo zadanie používateľa, server odpovedal: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Položky zoznamu zdrojov pre tento disk sú:\n" -#: methods/ftp.cc:232 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Zlyhalo zadanie hesla, server odpovedal: %s" +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." -#: methods/ftp.cc:252 +#: apt-pkg/algorithms.cc:1086 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Bol zadaný proxy server, ale nie prihlasovací skript. Acquire::ftp::" -"ProxyLogin je prázdny." - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Príkaz „%s“ prihlasovacieho skriptu zlyhal, server odpovedal: %s" - -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "Zlyhalo zadanie typu, server odpovedal: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Uplynul čas spojenia" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Server ukončil spojenie" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Chyba pri čítaní" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odpoveď preplnila zásobník." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Narušenie protokolu" - -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Chyba pri zápise" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nedá sa vytvoriť socket" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Nedá sa pripojiť dátový socket, uplynul čas spojenia" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Chyba" +"Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené " +"pridržanými balíkmi." -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nedá sa pripojiť pasívny socket." +#: apt-pkg/algorithms.cc:1088 +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." -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nezískal počúvajúci socket" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Vytvára sa strom závislostí" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nedá sa nadviazať socket" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidátske verzie" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Na sockete sa nedá počúvať" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generovanie závislostí" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Názov socketu sa nedá zistiť" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Načítavajú sa stavové informácie" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Príkaz PORT sa nedá odoslať" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Nie je možné otvoriť StateFile %s" -#: methods/ftp.cc:802 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Neznáma rodina adries %u (AF_*)" +msgid "Failed to write temporary StateFile %s" +msgstr "Nie je možné zapísať dočasný StateFile %s" -#: methods/ftp.cc:811 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Zlyhalo zadanie EPRT, server odpovedal: %s" +msgid "Unable to parse package file %s (1)" +msgstr "Súbor %s sa nedá spracovať (1)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Uplynulo spojenie dátového socketu" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Súbor %s sa nedá spracovať (2)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Spojenie sa nedá prijať" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Nebolo nájdené vydanie „%s“ pre „%s“" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problém s hašovaním súboru" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Nebola nájdená verzia „%s“ pre „%s“" -#: methods/ftp.cc:890 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Súbor sa nedá stiahnuť, server odpovedal „%s“" +msgid "Unable to locate package %s" +msgstr "Nedá sa nájsť balík %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Uplynula doba dátového socketu" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Nebolo možné nájsť úlohu „%s“" -#: methods/ftp.cc:935 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Prenos dát zlyhal, server odpovedal „%s“" +msgid "Couldn't find any package by regex '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Dotaz" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nedá sa vyvolať " +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Nie je možné vybrať verzie z balíka „%s“, pretože je čisto virtuálny" -#: methods/connect.cc:76 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Pripája sa k %s (%s)" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Nie je možné vybrať nainštalované ani kandidátske verzie z balíka „%s“, " +"pretože nemá žiadnu z nich" -#: methods/connect.cc:87 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Nie je možné vybrať najnovšiu verziu z balíka „%s“, pretože je čisto " +"virtuálny" -#: methods/connect.cc:94 +#: apt-pkg/cacheset.cc:655 #, 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)" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Nie je možné vybrať kandidátsku verziu z balíka „%s“, pretože nemá kandidáta" -#: methods/connect.cc:100 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nedá sa nadviazať spojenie na %s:%s (%s)." +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Nie je možné vybrať nainštalovanú verziu z balíka „%s“, pretože nie je " +"nainštalovaný" -#: methods/connect.cc:108 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Nedá sa pripojiť k %s:%s (%s), uplynul čas spojenia" +msgid "Unable to parse Release file %s" +msgstr "Nedá spracovať súbor Release %s" -#: methods/connect.cc:126 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nedá sa pripojiť k %s:%s (%s)." +msgid "No sections in Release file %s" +msgstr "Žiadne sekcie v Release súbore %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Connecting to %s" -msgstr "Pripája sa k %s" +msgid "No Hash entry in Release file %s" +msgstr "Chýba položka „Hash“ v súbore Release %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/indexrecords.cc:130 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nie je možné preložiť „%s“" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Chýba položka „Valid-Until“ v súbore Release %s" -#: methods/connect.cc:205 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Dočasné zlyhanie pri preklade „%s“" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Chýba položka „Date“ v súbore Release %s" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:170 #, 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)" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Skomolený riadok %lu v zozname zdrojov %s (nie je možné spracovať [option])" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nedá sa pripojiť k %s:%s:" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s ([option] je príliš krátke)" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Vnútorná chyba: Správna signatúra, ale sa nedá zistiť odtlačok kľúča?!" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nie je priradenie)" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Bola zistená aspoň jedna nesprávna signatúra." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nemá kľúč)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Nedá sa spustiť „gpgv“ kvôli overeniu podpisu (je nainštalované gpgv?)" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] kľúč %s nemá hodnotu)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (URI)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Neznáma chyba pri spustení gpgv" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (dist)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Nasledovné signatúry sú neplatné:\n" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Nasledovné signatúry sa nedajú overiť, pretože nie je dostupný verejný " -"kľúč:\n" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (absolútny dist)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Prázdne súbory nemôžu byť platné archívy" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie dist)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Chyba zápisu do tohto súboru" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Otvára sa %s" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)" + +#: apt-pkg/sourcelist.cc:375 +#, 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" + +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Chyba pri čítaní zo servera" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Inštaluje sa %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Chyba zápisu do súboru" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Nastavuje sa %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Výber zlyhal" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Odstraňuje sa %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Uplynul čas spojenia" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Úplne sa odstraňuje %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Chyba zápisu do výstupného súboru" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Zaznamenali sme zmiznutie %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čaká sa na hlavičky" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Vykonáva sa spúšťač post-installation %s" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Chybná hlavička" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Adresár „%s“ chýba" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP server poslal neplatnú hlavičku odpovede" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Nedá sa otvoriť súbor „%s“" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP server poslal neplatnú hlavičku Content-Length" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Pripravuje sa %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP server poslal neplatnú hlavičku Content-Range" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Rozbaľuje sa %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Tento HTTP server má poškodenú podporu rozsahov" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Pripravuje sa nastavenie %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Neznámy formát dátumu" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Nainštalovaný balík %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Zlé dátové záhlavie" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Pripravuje sa odstránenie %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Spojenie zlyhalo" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Odstránený balík %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Vnútorná chyba" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Pripravuje sa úplné odstránenie %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Prepočítava sa aktualizácia... " +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Balík „%s“ je úplne odstránený" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Vnútorná chyba, AllUpgrade pokazil veci" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Hotovo" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Do %s sa nedá zapisovať" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Opravujú sa závislosti..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " zlyhalo." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Závislosti sa nedajú opraviť" - -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Sada na aktualizáciu sa nedá minimalizovať" +msgid "Waited for %s but it wasn't there" +msgstr "Čakalo sa na %s, ale nebolo to tam" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Hotovo" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Operácia bola prerušená predtým, než sa stihla dokončiť" -#: apt-private/private-cachefile.cc:108 -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“." +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Nezapíše sa správa apport, pretože už bol dosiahnutý limit MaxReports" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nesplnené závislosti. Skúste použiť -f." +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problém so závislosťami - ponecháva sa nenakonfigurované" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje, že je to chyba v " +"nadväznosti na predošlé zlyhanie." -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Nainštalovaný]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Nainštalovaný]" - -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk " +"zaplnený" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Nainštalovaný]" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje chybu nedostatku " +"pamäte" -#: apt-private/private-output.cc:244 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 #, fuzzy -msgid "[installed]" -msgstr " [Nainštalovaný]" - -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk " +"zaplnený" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje V/V chybu dpkg" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Nasledovné balíky majú nesplnené závislosti:" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "Nedá sa zamknúť adresár na správu (%s), používa ho iný proces?" -#: apt-private/private-output.cc:442 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "but %s is installed" -msgstr "ale nainštalovaný je %s" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nedá sa zamknúť adresár na správu (%s), ste root?" -#: apt-private/private-output.cc:444 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "but %s is to be installed" -msgstr "ale inštalovať sa bude %s" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg bol prerušený, musíte ručne opraviť problém spustením „%s“. " -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ale sa nedá nainštalovať" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Nie je zamknuté" + +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li d %li h %li min %li s" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ale je to virtuálny balík" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li h %li min %li s" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ale nie je nainštalovaný" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li min %li s" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "ale sa nebude inštalovať" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li s" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " alebo" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Voľba %s nenájdená" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Nainštalujú sa nasledovné NOVÉ balíky:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Zamykanie pre súbor zámku %s, ktorý je iba na čítanie, sa nepoužíva" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Nasledovné balíky sa ODSTRÁNIA:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Súbor zámku %s sa nedá otvoriť" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Nasledovné balíky sa ponechajú v súčasnej verzii:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Zamykanie pre súbor zámku %s pripojený cez NFS sa nepoužíva" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Nasledovné balíky sa aktualizujú:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Zámok %s sa nedá získať" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Nasledovné balíky sa DEGRADUJÚ:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Zoznam súborov nemožno vytvoriť, pretože „%s“ nie je adresár" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Nasledovné pridržané balíky sa zmenia:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože to nie je obyčajný súbor" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "%s (due to %s) " -msgstr "%s (kvôli %s) " +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože nemá príponu názvu súboru" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"UPOZORNENIE: Nasledovné dôležité balíky sa odstránia.\n" -"Ak presne neviete, čo robíte, tak to NEROBTE!" +"Ignoruje sa „%s“ v adresári „%s“, pretože má neplatnú príponu názvu súboru" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualizovaných, %lu nových nainštalovaných, " +msgid "Sub-process %s received a segmentation fault." +msgstr "Podproces %s obdržal chybu segmentácie." -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinštalovaných, " +msgid "Sub-process %s received signal %u." +msgstr "Podproces %s dostal signál %u." -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%lu downgraded, " -msgstr "%lu degradovaných, " +msgid "Sub-process %s returned an error code (%u)" +msgstr "Podproces %s vrátil chybový kód (%u)" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu na odstránenie a %lu neaktualizovaných.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Podproces %s neočakávane skončil" + +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Chyba pri zápise" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu iba čiastočne nainštalovaných alebo odstránených.\n" +msgid "Problem closing the gzip file %s" +msgstr "Problém pri zatváraní gzip súboru %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nedá sa otvoriť súbor %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nedá sa otvoriť popisovač súboru %d" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nedá sa vytvoriť podproces IPC" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nepodarilo sa spustiť kompresor " + +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Chyba pri čítaní" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "Regex compilation error - %s" -msgstr "Chyba pri preklade regulárneho výrazu - %s" +msgid "read, still have %llu to read but none left" +msgstr "čítanie, treba prečítať ešte %llu, ale už nič neostáva" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Príkaz update neprijíma žiadne argumenty" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "zápis, treba zapísať ešte %llu, no nedá sa to" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Problem closing the file %s" +msgstr "Problém pri zatváraní súboru %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Problem renaming the file %s to %s" +msgstr "Problém pri synchronizovaní súboru %s na %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problém pri odstraňovaní súboru %s" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Vnútorná chyba, InstallPackages bolo volané s poškodenými balíkmi!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problém pri synchronizovaní súboru" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá." +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Chyba!" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Vnútorná chyba, Triedenie sa neukončilo" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Hotovo" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"Nezvyčajná udalosť... Veľkosti nesúhlasia, pošlite e-mail na apt@packages." -"debian.org" -#. 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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hotovo" -#. 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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Je potrebné stiahnuť %sB archívov.\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nedá sa vykonať mmap prázdneho súboru" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po tejto operácii sa na disku použije ďalších %sB.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nedá sa duplikovať popisovač súboru %i" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Po tejto operácii sa na disku uvoľní %sB.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nedá sa urobiť mmap %llu bajtov" -#: apt-private/private-install.cc:199 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Na %s nemáte dostatok voľného miesta." +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nedá sa zatvoriť mmap" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Nastali problémy a -y bolo použité bez --force-yes" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nedá sa synchronizovať mmap" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia." +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nedá sa urobiť mmap %lu bajtov" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Áno, urob to, čo vravím!" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Nepodarilo sa skrátiť súbor" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Možno sa chystáte vykonať niečo škodlivé.\n" -"Ak chcete pokračovať, opíšte frázu „%s“\n" -" ?]" - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Prerušené." - -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Chcete pokračovať?" - -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Niektoré súbory sa nedajú stiahnuť" +"Nedostatok miesta pre dynamický MMap. Prosím, zväčšite veľkosť APT::Cache-" +"Start. Aktuálna hodnota: %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:319 +#: apt-pkg/contrib/mmap.cc:446 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --" -"fix-missing" - -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing a výmena nosiča nie sú momentálne podporované" +"Napodarilo sa zväčšiť veľkosť MMap, pretože limit %lu už bol dosiahnutý." -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Chýbajúce balíky sa nedajú opraviť." +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Napodarilo sa zväčšiť veľkosť MMap, pretože automatické zväčovanie vypol " +"používateľ." -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Inštalácia sa prerušuje." +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Prípojný bod %s sa nedá vyhodnotiť" -#: apt-private/private-install.cc:365 -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] "" -"Nasledovný balík zmizol z vášho systému, pretože\n" -"všetky súbory boli prepísané inými balíkmi:" -msgstr[1] "" -"Nasledovné balíky zmizli z vášho systému, pretože\n" -"všetky súbory boli prepísané inými balíkmi:" -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:" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nedá sa vykonať stat() CD-ROM" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Pozn.: Toto robí dpkg automaticky a zámerne." +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nerozpoznaná skratka typu: „%c“" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nemajú sa odstraňovať veci, nespustí sa AutoRemover" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Otvára sa konfiguračný súbor %s" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, zdá sa, že AutoRemover niečo zničil, čo sa naozaj nemalo stať.\n" -"Prosím, pošlite hlásenie o chybe balíka apt." +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu." -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -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:" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaktická chyba %s:%u: Skomolená značka" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Vnútorná chyba, AutoRemover niečo pokazil" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje" -#: apt-private/private-install.cc:512 -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] "" -"Nasledovný balík bol nainštalovaný automaticky a už viac nie je potrebný:" -msgstr[1] "" -"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" -msgstr[2] "" -"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Syntaktická chyba %s:%u: Direktívy sa dajú vykonať len na najvyššej úrovni" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:884 #, 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 balík bol nainštalovaný automaticky a už viac nie je potrebný.\n" -msgstr[1] "" -"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n" -msgstr[2] "" -"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)" -#: apt-private/private-install.cc:518 -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“." +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ" -#: apt-private/private-install.cc:612 -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“:" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva „%s“" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo " -"navrhnite riešenie)." +"Syntaktická chyba %s:%u: direktíva clear vyžaduje ako argument strom volieb" -#: apt-private/private-install.cc:628 -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 "" -"Niektoré balíky sa nedajú nainštalovať. To môže znamenať, že požadujete\n" -"nemožnú situáciu, alebo ak používate nestabilnú distribúciu, že\n" -"požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n" -"Novoprichádzajúcich (Incoming) balíkov." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaktická chyba %s:%u: Na konci súboru sú chybné údaje" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Poškodené balíky" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "V %s nie je nainštalovaný žiaden zväzok kľúčov." -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Nainštalujú sa nasledovné extra balíky:" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Parameter príkazového riadka „%c“ [z %s] je neznámy" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Navrhované balíky:" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Nezrozumiteľný parameter %s na príkazovom riadku" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Odporúčané balíky:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota" -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Preskakuje sa %s, pretože je už nainštalovaný.\n" +msgid "Option %s requires an argument." +msgstr "Voľba %s vyžaduje argument." -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Preskakuje sa %s, nie je nainštalovaný a bola vy6iadan8 iba aktualizácia.\n" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Parameter %s: Zadanie konfiguračnej položky musí obsahovať =<hodn>." -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Nie je možná reinštalácia %s, pretože sa nedá stiahnuť.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Voľba %s vyžaduje ako argument celé číslo (integer), nie „%s“" -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s je už najnovšej verzie.\n" +msgid "Option '%s' is too long" +msgstr "Voľba „%s“ je príliš dlhá" -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Vybraná verzia „%s“ (%s) pre „%s“\n" +msgid "Sense %s is not understood, try true or false." +msgstr "Nezrozumiteľný význam %s, skúste true alebo false. " -#: apt-private/private-install.cc:889 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Vybraná verzia „%s“ (%s) pre „%s“ kvôli „%s“\n" +msgid "Invalid operation %s" +msgstr "Neplatná operácia %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť. Mali ste na mysli " -"„%s“?\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Balík %s verzie %s má nesplnené závislosti:\n" + +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Celkom názvov balíkov: " + +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Celkom štruktúr balíkov: " + +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normálnych balíkov: " -#: apt-private/private-install.cc:937 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Čisto virtuálnych balíkov: " -#: apt-private/private-main.cc:32 -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 "" -"POZN.: Toto je iba simulácia!\n" -" apt-get potrebuje na skutočné spustenie práva používateľa root.\n" -" Tiež pamätajte, že zamykanie je deaktivované, takže\n" -" sa nespoliehajte na to že to bude platiť v reálnej situácii!" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Jednoduchých virtuálnych balíkov: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Zmiešaných virtuálnych balíkov: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Upozornenie o vierohodnosti bolo potlačené.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Chýbajúcich: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Celkom rôznych verzií: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Nainštalovať tieto nekontrolované balíky?" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Celkom rôznych popisov: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Zlyhalo stiahnutie %s %s\n" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Celkom závislostí: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Premenovanie %s na %s zlyhalo" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Celkom vzťahov ver/súbor: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Celkom vzťahov popis/súbor: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Celkom poskytnutých mapovaní: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Už existuje " +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Celkom globovaných reťazcov: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Získava sa:" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Celkom miesta závislých verzií: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Celkom jalového miesta: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Chyba " +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Celkom priradeného miesta: " -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%sB sa stiahlo za %s (%sB/s)\n" +msgid "Package file %s is out of sync." +msgstr "Súbor balíkov %s je neaktuálny." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Prebieha spracovanie]" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Neboli nájdené žiadne balíky" -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Musíte zadať aspoň jeden vyhľadávací vzor" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Výmena nosiča: Vložte disk s názvom\n" -" „%s“\n" -"do mechaniky „%s“ a stlačte Enter\n" +"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark " +"showauto“." -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Nedá sa načítať %s" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Súbory balíka:" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Nedá sa prejsť do %s" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Vyrovnávacia pamäť je neaktuálna, nedá sa odvolať na súbor balíka" -#. 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 "Na zrkadle nebol nájdený súbor „%s“" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pripevnené balíky:" -#. 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 "Nepodarilo sa prečítať súbor „%s“ na zrkadle" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nenájdené)" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Nainštalovaná verzia: " -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Zrkadlo: %s]" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidát: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Zlyhalo vytvorenie IPC rúry k podprocesu" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(žiadna)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Spojenie bolo predčasne ukončené" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pripevnený balík:" + +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabuľka verzií:" + +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pre %s skompilovaný %s %s\n" + +#: cmdline/apt-cache.cc:1749 +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 "" +"Použitie: apt-cache [voľby] príkaz\n" +" apt-cache [voľby] showpkg balík1 [balík2 ...]\n" +" apt-cache [voľby] showsrc balík1 [balík2 ...]\n" +"\n" +"apt-cache je nízkoúrovňový nástroj na zisťovanie informácií\n" +"z binárnych súborov vyrovnávacej pamäti APT\n" +"\n" +"Príkazy:\n" +" gencaches - Zostaví vyrovnávaciu pamäť balíkov a zdrojov\n" +" showpkg - Zobrazí všeobecné údaje o balíku\n" +" showsrc - Zobrazí zdrojové záznamy\n" +" stats - Zobrazí základné štatistiky\n" +" dump - Zobrazí celý súbor v zhustenej podobe\n" +" dumpavail - Vypíše súbor dostupných balíkov na štandardný výstup\n" +" unmet - Zobrazí nesplnené závislosti\n" +" search - Prehľadá zoznam balíkov podľa regulárneho výrazu\n" +" show - Zobrazí prehľadné informácie o balíku\n" +" depends - Zobrazí základné údaje o závislostiach balíka\n" +" rdepends - Zobrazí údaje o spätných závislostiach balíka\n" +" pkgnames - Vypíše zoznam názvov všetkých balíkov v systéme\n" +" dotty - Vytvorí diagramy balíka pre GraphViz\n" +" xvcg - Vytvorí diagramy balíka pre xvcg\n" +" policy - Zobrazí nastavenia zásad\n" +"\n" +"Voľby:\n" +" -h Tento pomocník.\n" +" -p=? Vyrovnávacia pamäť balíkov.\n" +" -s=? Vyrovnávacia pamäť zdrojov.\n" +" -q Nezobrazí indikátor priebehu.\n" +" -i Pri príkaze unmet zobrazí iba dôležité závislosti.\n" +" -c=? Načíta tento konfiguračný súbor\n" +" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" +"Ďalšie informácie nájdete v manuálových stránkach apt-cache(8)\n" +"a apt.conf(5).\n" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Chybné predvolené nastavenie!" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Prosím, zadajte názov tohto disku, napríklad „Debian 5.0.3 Disk 1“" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Stlačte Enter, ak chcete pokračovať." +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Vložte disk do mechaniky a stlačte Enter" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Chcete odstrániť všetky doteraz stiahnuté .deb súbory?" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Pripojenie „%s“ na „%s“ zlyhalo" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Pri rozbaľovaní došlo k nejakým chybám. Balíky, ktoré boli nainštalované" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "budú nakonfigurované. Môže to spôsobiť opakované chybové správy" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Zopakujte tento postup pre všetky CD v sade diskov." -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "o nesplnených závislostiach. Je to v poriadku, dôležité sú iba" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenty nie sú vo dvojiciach" -#: dselect/install:105 +#: cmdline/apt-config.cc:89 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"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 "" -"chyby nad touto správou. Opravte ich a potom znovu spusťte [I]nštalovať" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Zlučujú sa dostupné informácie" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Pokus o uvoľnenie uzla (DropNode) na stále prepojenom uzle" +"Použitie: apt-config [voľby] príkaz\n" +"\n" +"apt-config je jednoduchý nástroj na čítanie konfiguračného súboru APT\n" +"\n" +"Príkazy:\n" +" shell - Režim shell\n" +" dump - Zobrazí nastavenie\n" +"\n" +"Voľby:\n" +" -h Tento pomocník.\n" +" -c=? Načíta tento konfiguračný súbor\n" +" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Hašovací prvok sa nedá nájsť!" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nedá sa alokovať diverzia" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Vnútorná chyba pri AddDiversion" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Pokus o prepísanie diverzie, %s -> %s a %s/%s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Vyberá sa „%s“ ako zdrojový balík namiesto „%s“\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dvojité pridanie diverzie %s -> %s" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorovať nedostupnú verziu „%s“ balíka „%s“" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Duplicitný konfiguračný súbor %s/%s" +msgid "Couldn't find package %s" +msgstr "Balík %s sa nedá nájsť" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "The path %s is too long" -msgstr "Cesta %s je príliš dlhá" +msgid "%s set to manually installed.\n" +msgstr "%s je označený ako manuálne nainštalovaný.\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s sa rozbaľuje viackrát" +msgid "%s set to automatically installed.\n" +msgstr "%s je označený ako automaticky nainštalovaný.\n" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Adresár %s je divertovaný" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark auto“ a " +"„apt-mark manual“." -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Vnútorná chyba, „problem resolver“ niečo pokazil" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Diverzná cesta je príliš dlhá" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Adresár pre sťahovanie sa nedá zamknúť" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "%s sa nedá vyhodnotiť" +#: cmdline/apt-get.cc:726 +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" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Premenovanie %s na %s zlyhalo" +msgid "Unable to find a source package for %s" +msgstr "Nedá sa nájsť zdrojový balík pre %s" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:786 #, 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:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Nedá sa nájsť uzol na adrese jeho hašu" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Cesta je príliš dlhá" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"POZN.: tvorba balíka „%s“ sa spravuje v sytéme na riadenie revízií „%s“ na " +"adrese:\n" +"%s\n" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Prepísať zodpovedajúci balík bez udania verzie pre %s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Prosím, použite:\n" +"bzr branch %s\n" +"ak chcete získať najnovšie (a pravdepodobne zatiaľ nevydané) aktualizácie " +"balíka.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:843 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Súbor %s/%s prepisuje ten z balíka %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Unable to stat %s" -msgstr "Nedá sa vyhodnotiť %s" +msgid "Couldn't determine free space in %s" +msgstr "Na %s sa nedá zistiť veľkosť voľného miesta" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Failed to write file %s" -msgstr "Zápis súboru %s zlyhal" +msgid "You don't have enough free space in %s" +msgstr "Na %s nemáte dostatok voľného miesta" -#: apt-inst/dirstream.cc:105 +#. 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:891 #, c-format -msgid "Failed to close file %s" -msgstr "Zatvorenie súboru %s zlyhalo" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#. 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:896 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Toto nie je platný DEB archív, chýba časť „%s“" +msgid "Need to get %sB of source archives.\n" +msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Vnútorná chyba, nedá sa nájsť časť %s" +msgid "Fetch source %s\n" +msgstr "Stiahnuť zdroj %s\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Nespracovateľný riadiaci súbor" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Zlyhalo stiahnutie niektorých archívov." -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Neplatný podpis archívu" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Sťahovanie ukončené v režime „iba stiahnuť“" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Chyba pri čítaní záhlavia prvku archívu" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Invalid archive member header %s" -msgstr "Neplatná hlavička prvku archívu %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Neplatné záhlavie prvku archívu" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archív je príliš krátky" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Príkaz na zostavenie „%s“ zlyhal.\n" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Chyba pri čítaní hlavičiek archívu" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Proces potomka zlyhal" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Vytvorenie rúry zlyhalo" +#: cmdline/apt-get.cc:1029 +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" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Spustenie gzip zlyhalo " +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Informácie o architektúre nie sú dostupné pre %s. Informácie o nastavení " +"nájdete v apt.conf(5) APT::Architectures" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Porušený archív" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Nedajú sa získať závislosti na zostavenie %s" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Kontrolný súčet pre tar zlyhal, archív je poškodený" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s nemá žiadne závislosti na zostavenie.\n" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Neznáma TAR hlavička typu %u, člen %s" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"%s závislosť pre %s nemožno splniť, pretože %s nie je povolené na balíkoch " +"„%s“" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Unable to stat %s." -msgstr "Nie je možné vykonať stat %s." +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" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Progress: [%3i%%]" +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ý" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Spúšťa sa dpkg" +#: cmdline/apt-get.cc:1351 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%s závislosť pre %s nemožno splniť, pretože kandidátska verzia balíka %s, " +"nedokáže splniť požiadavky na verziu" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Systém balíkov „%s“ nie je podporovaný" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"%s závislosť pre %s nemožno splniť, pretože balík %s nemá kandidátsku verziu" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nedá sa určiť vhodný typ systému balíkov" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Wrote %i records.\n" -msgstr "Zapísaných %i záznamov.\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Závislosti na zostavenie %s nemožno splniť." -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Spracovanie závislostí na zostavenie zlyhalo" + +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, 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" +msgid "Changelog for %s (%s)" +msgstr "Záznam zmien %s (%s)" + +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Podporované moduly:" + +#: cmdline/apt-get.cc:1632 +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 "" +"Použitie: apt-get [voľby] príkaz\n" +" apt-get [voľby] install|remove balík1 [balík2 ...]\n" +" apt-get [voľby] source balík1 [balík2 ...]\n" +"\n" +"apt-get je jednoduché rozhranie na príkazovom riadku na sťahovanie\n" +"a inštaláciu balíkov. Najpoužívanejšími príkazmi sú update a install.\n" +"\n" +"Príkazy:\n" +" update - Získa nové zoznamy balíkov\n" +" upgrade - Vykoná aktualizáciu\n" +" install - Nainštaluje nové balíky (balík je libc6, nie libc6." +"deb)\n" +" remove - Odstráni balíky\n" +" autoremove - Automaticky odstráni všetky nepoužité balíky\n" +" purge - Odstráni a balíky a ich konfiguračné súbory\n" +" source - Stiahne zdrojové archívy\n" +" build-dep - Nastaví závislosti kompilácie pre zdrojové balíky\n" +" dist-upgrade - Aktualizácia distribúcie, pozri apt-get(8)\n" +" dselect-upgrade - Riadi sa podľa výberu v dselect\n" +" clean - Zmaže stiahnuté archívy\n" +" autoclean - Zmaže staré stiahnuté archívy\n" +" check - Overí, či neexistujú poškodené závislosti\n" +" markauto - Označí zadané balíky ako automaticky nainštalované\n" +" unmarkauto - Označí zadané balíky ako manuálne nainštalované\n" +"\n" +"Voľby:\n" +" -h Tento pomocník\n" +" -q Nezobrazí indikátor priebehu - pre záznam\n" +" -qq Zobrazí iba chyby\n" +" -d Iba stiahne - neinštaluje ani nerozbaľuje archívy\n" +" -s Žiadna akcia. Iba simuluje postupnosť pripravených akcií\n" +" -y Na všetky otázky odpovedá Áno\n" +" -f Pokúsi sa opraviť systém s poškodenými závislosťami\n" +" -m Skúsi pokračovať, aj keď sa nepodarí nájsť archívy\n" +" -u Zobrazí tiež zoznam aktualizovaných balíkov\n" +" -b Po stiahnutí zdrojového balíka ho aj skompiluje\n" +" -V Zobrazí čísla verzií\n" +" -c=? Načíta tento konfiguračný súbor\n" +" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" +"Viac volieb nájdete v manuálových stránkach apt-get(8), sources.list(5)\n" +"a apt.conf(5).\n" +" Tento APT má schopnosti posvätnej kravy.\n" + +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-mark.cc:68 #, 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" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s nemožno označiť, pretože nie je nainštalovaný.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-mark.cc:74 #, 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" +msgid "%s was already set to manually installed.\n" +msgstr "%s už bol označený ako manuálne nainštalovaný.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Nebolo možné nájsť autentifikačný záznam pre: %s" +msgid "%s was already set to automatically installed.\n" +msgstr "%s už bol označený ako automaticky nainštalovaný.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Nezhoda kontrolných haš súčtov: %s" +msgid "%s was already set on hold.\n" +msgstr "%s bol už nastavený na podržanie.\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "The method driver %s could not be found." -msgstr "Nedá sa nájsť ovládač spôsobu %s." - -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" +msgid "%s was already not hold.\n" +msgstr "%s bol už nastavený na nepodržanie.\n" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Method %s did not start correctly" -msgstr "Spôsob %s nebol správne spustený" +msgid "%s set on hold.\n" +msgstr "%s je označený na podržanie.\n" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Vložte disk nazvaný „%s“ do mechaniky „%s“ a stlačte Enter." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Zoznamy balíkov alebo stavový súbor sa nedajú spracovať alebo otvoriť." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Na opravu týchto problémov môžete skúsiť spustiť apt-get update" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nedá sa načítať zoznam zdrojov." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Vyrovnávacia pamäť balíkov je prázdna" +msgid "Canceled hold on %s.\n" +msgstr "Zrušené podržanie %s.\n" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Vykonanie dpkg zlyhalo. Ste root?" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Súbor vyrovnávacej pamäti balíkov je nezlučiteľnej verzie" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Použitie: apt-mark [voľby] {auto|manual} balík1 [balík2 ...]\n" +"\n" +"apt-mark je jednoduché rozhranie príkazového riadka na označovanie\n" +"balíkov ako manuálne alebo automaticky nainštalované.\n" +"Tiež dokáže označenia vypisovať.\n" +"\n" +"Príkazy:\n" +" auto - Označí uvedené balíky ako automaticky nainštalované\n" +" manual - Označí uvedené balíky ako manuálne nainštalované\n" +"\n" +"Voľby:\n" +" -h Tento text pomocníka.\n" +" -q Výstup vhodný do záznamu - bez indikátora priebehu\n" +" -qq Nevypisovať nič, len chyby\n" +" -s Nevykonávať zmeny. Iba vypísať, čo by sa urobilo.\n" +" -f čítanie/zápis označenia auto/manálne v uvedenom súbore\n" +" -c=? Načítať tento konfiguračný súbor\n" +" -o=? Nastaviť ľubovoľný konfiguračnú voľbu, napr. -o dir::cache=/tmp\n" +"Ďalšie informácie nájdete na manuálových stránkach apt-mark(8) a apt.conf(5)." -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený, je príliš malý" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Tento APT nepodporuje systém na správu verzií „%s“" - -#: apt-pkg/pkgcache.cc:179 -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:321 -msgid "Depends" -msgstr "Závisí na" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Predzávisí na" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Navrhuje" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Odporúča" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Koliduje s" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Nahrádza" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zneplatňuje" - -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Kazí" +msgid "Unable to read the cdrom database %s" +msgstr "Nedá sa čítať databáza na CD-ROM %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Rozširuje" +#: 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 "" +"Pre pridanie CD do APT použije apt-cdrom. apt-get update sa nedá využiť na " +"pridávanie nových CD." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "dôležitý" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Chybné CD" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "požadovaný" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nedá sa odpojiť CD-ROM v %s - možno sa ešte používa." -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "štandardný" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk sa nenašiel." -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "voliteľný" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Súbor sa nenašiel" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Vyhodnotenie zlyhalo" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexový súbor typu „%s“ nie je podporovaný" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Zlyhalo nastavenie času zmeny" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Neplatné URI, lokálne URI nesmie začínať s //" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Vyskytla sa chyba pri spracovávaní %s (%s%d)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Prihlasovanie" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Fíha, prekročili ste počet názvov balíkov, ktoré toto APT zvládne spracovať." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nedá sa zistiť názov druhej strany" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nedá sa zistiť lokálny názov" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Fíha, prekročili ste počet popisov, ktoré toto APT zvládne spracovať." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Server zamietol naše spojenie s chybou: %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Zlyhalo zadanie používateľa, server odpovedal: %s" + +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Zlyhalo zadanie hesla, server odpovedal: %s" + +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Fíha, prekročili ste počet závislostí, ktoré toto APT zvládne spracovať." +"Bol zadaný proxy server, ale nie prihlasovací skript. Acquire::ftp::" +"ProxyLogin je prázdny." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, 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" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Príkaz „%s“ prihlasovacieho skriptu zlyhal, server odpovedal: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s" +msgid "TYPE failed, server said: %s" +msgstr "Zlyhalo zadanie typu, server odpovedal: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Načítavajú sa zoznamy balíkov" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Uplynul čas spojenia" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Collecting File poskytuje" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Server ukončil spojenie" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Do %s sa nedá zapisovať" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Odpoveď preplnila zásobník." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Narušenie protokolu" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Poslať scénár riešiteľovi" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nedá sa vytvoriť socket" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Poslať požiadavku riešiteľovi" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Nedá sa pripojiť dátový socket, uplynul čas spojenia" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Pripraviť sa na prijatie riešenia" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Chyba" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "Externý riešiteľ zlyhal bez uvedenia chybovej správy" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nedá sa pripojiť pasívny socket." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Spustiť externého riešiteľa" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo nezískal počúvajúci socket" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "premenovanie zlyhalo, %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nedá sa nadviazať socket" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Nezhoda kontrolných haš súčtov" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Na sockete sa nedá počúvať" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Veľkosti sa nezhodujú" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Názov socketu sa nedá zistiť" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Neplatná operácia %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Príkaz PORT sa nedá odoslať" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Nepodarilo sa nájsť očakávanú položku „%s“ v súbore Release (Nesprávna " -"položka sources.list alebo chybný formát súboru)" +msgid "Unknown address family %u (AF_*)" +msgstr "Neznáma rodina adries %u (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nepodarilo sa nájsť haš „%s“ v súbore Release" +msgid "EPRT failed, server said: %s" +msgstr "Zlyhalo zadanie EPRT, server odpovedal: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Nie sú dostupné žiadne verejné kľúče ku kľúčom s nasledovnými ID:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Uplynulo spojenie dátového socketu" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Súbor Release pre %s vypršal (neplatný od %s). Aktualizácie tohto zdroja " -"softvéru sa nepoužijú." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Spojenie sa nedá prijať" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "V konflikte s distribúciou: %s (očakávalo sa %s ale dostali sme %s)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problém s hašovaním súboru" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Počas overovania podpisu sa vyskytla chyba. Repozitár nie je aktualizovaný a " -"použijú sa predošlé indexové súbory. Chyba GPG: %s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Súbor sa nedá stiahnuť, server odpovedal „%s“" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "Chyba GPG: %s: %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Uplynula doba dátového socketu" -#: apt-pkg/acquire-item.cc:1867 +#: methods/ftp.cc:935 #, 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 "" -"Nedá sa nájsť súbor s balíkom %s. To by mohlo znamenať, že tento balík je " -"potrebné opraviť manuálne (kvôli chýbajúcej architektúre)." +msgid "Data transfer failed, server said '%s'" +msgstr "Prenos dát zlyhal, server odpovedal „%s“" -#: apt-pkg/acquire-item.cc:1933 -#, 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“" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Dotaz" -#: apt-pkg/acquire-item.cc:1991 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Indexové súbory balíka sú narušené. Chýba pole Filename: pre balík %s." +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nedá sa vyvolať " -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:76 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Blok výrobcu %s neobsahuje otlačok (fingerprint)" +msgid "Connecting to %s (%s)" +msgstr "Pripája sa k %s (%s)" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:87 #, c-format -msgid "List directory %spartial is missing." -msgstr "Adresár zoznamov %spartial chýba." +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:94 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archívny adresár %spartial chýba." +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)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:100 #, c-format -msgid "Unable to lock directory %s" -msgstr "Adresár %s sa nedá zamknúť" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nedá sa nadviazať spojenie na %s:%s (%s)." -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:108 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Sťahuje sa %li. súbor z %li (zostáva %s)" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Nedá sa pripojiť k %s:%s (%s), uplynul čas spojenia" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:126 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Sťahuje sa %li. súbor z %li" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Niektoré indexové súbory sa nepodarilo stiahnuť. Boli ignorované alebo sa " -"použili staršie verzie." +msgid "Could not connect to %s:%s (%s)." +msgstr "Nedá sa pripojiť k %s:%s (%s)." -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Do sources.list musíte zadať nejaký „source“ (zdrojový) URI" +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 +#, c-format +msgid "Connecting to %s" +msgstr "Pripája sa k %s" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" -"„%s“ nie je platná hodnota pre APT::Default-Release, pretože také vydanie " -"nie je dostupné v zdrojoch" +msgid "Could not resolve '%s'" +msgstr "Nie je možné preložiť „%s“" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:205 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Neplatný záznam v súbore nastavení %s, chýba hlavička Package" +msgid "Temporary failure resolving '%s'" +msgstr "Dočasné zlyhanie pri preklade „%s“" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Nezrozumiteľné pridržanie typu %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie" +#: 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)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: methods/connect.cc:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Nedá sa pripojiť k %s:%s:" + +#: methods/gpgv.cc:168 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" -"Nebolo možné vykonať okamžitú konfiguráciu „%s“. Pozri prosím podrobnosti v " -"man 5 apt.conf pod APT::Immediate-Configure (%d)" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Vnútorná chyba: Správna signatúra, ale sa nedá zistiť odtlačok kľúča?!" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Nedá sa nakonfigurovať „%s“." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Bola zistená aspoň jedna nesprávna signatúra." -#: apt-pkg/packagemanager.cc:583 +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Nedá sa spustiť „gpgv“ kvôli overeniu podpisu (je nainštalované gpgv?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, 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." +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Tento beh inštalácie si vyžiada dočasné odstránenie kľúčového balíka %s " -"kvôli slučke v Conflicts/Pre-Depends. Často je to nevhodné, ale ak to chcete " -"naozaj urobiť, aktivujte možnosť APT::Force-LoopBreak." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Riadok %u v zozname zdrojov %s je príliš dlhý." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Neznáma chyba pri spustení gpgv" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM sa odpája...\n" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Nasledovné signatúry sú neplatné:\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Použije sa prípojný bod CD-ROM %s\n" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Nasledovné signatúry sa nedajú overiť, pretože nie je dostupný verejný " +"kľúč:\n" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Čaká sa na disk...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Prázdne súbory nemôžu byť platné archívy" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Pripája sa CD-ROM...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Chyba zápisu do tohto súboru" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifikuje sa..." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Uložená menovka: %s \n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Chyba pri čítaní zo servera" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Na disku sa hľadajú indexové súbory...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Chyba zápisu do súboru" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Nájdených %zu indexov balíkov, %zu indexov zdrojových balíkov, %zu indexov " -"prekladov a %zu signatúr\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Výber zlyhal" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Nepodarilo sa nájsť žiadne súbory balíkov, možno toto nie je disk s Debianom " -"alebo je pre nesprávnu architektúru?" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Uplynul čas spojenia" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Nájdená menovka: „%s“\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Chyba zápisu do výstupného súboru" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Neplatný názov, skúste znova.\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Čaká sa na hlavičky" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Názov tohto disku je: \n" -"„%s“\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Chybná hlavička" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopírujú sa zoznamy balíkov..." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP server poslal neplatnú hlavičku odpovede" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Zapisuje sa nový zoznam zdrojov\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP server poslal neplatnú hlavičku Content-Length" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Položky zoznamu zdrojov pre tento disk sú:\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP server poslal neplatnú hlavičku Content-Range" -#: apt-pkg/algorithms.cc:265 -#, c-format -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." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Tento HTTP server má poškodenú podporu rozsahov" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené " -"pridržanými balíkmi." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Neznámy formát dátumu" -#: apt-pkg/algorithms.cc:1088 -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." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Zlé dátové záhlavie" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Vytvára sa strom závislostí" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Spojenie zlyhalo" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidátske verzie" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Vnútorná chyba" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generovanie závislostí" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Prepočítava sa aktualizácia... " -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Načítavajú sa stavové informácie" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Hotovo" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Nie je možné otvoriť StateFile %s" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" + +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Nie je možné zapísať dočasný StateFile %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Opravujú sa závislosti..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Súbor %s sa nedá spracovať (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " zlyhalo." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Súbor %s sa nedá spracovať (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Závislosti sa nedajú opraviť" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Nebolo nájdené vydanie „%s“ pre „%s“" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Sada na aktualizáciu sa nedá minimalizovať" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Nebola nájdená verzia „%s“ pre „%s“" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Hotovo" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Nebolo možné nájsť úlohu „%s“" +#: apt-private/private-cachefile.cc:108 +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“." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nesplnené závislosti. Skúste použiť -f." -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" +msgid "[installed,upgradable to: %s]" +msgstr " [Nainštalovaný]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Nie je možné vybrať verzie z balíka „%s“, pretože je čisto virtuálny" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Nainštalovaný]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Nie je možné vybrať nainštalované ani kandidátske verzie z balíka „%s“, " -"pretože nemá žiadnu z nich" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Nie je možné vybrať najnovšiu verziu z balíka „%s“, pretože je čisto " -"virtuálny" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Nainštalovaný]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Nainštalovaný]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Nie je možné vybrať kandidátsku verziu z balíka „%s“, pretože nemá kandidáta" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Nie je možné vybrať nainštalovanú verziu z balíka „%s“, pretože nie je " -"nainštalovaný" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Nedá spracovať súbor Release %s" +msgid "but %s is installed" +msgstr "ale nainštalovaný je %s" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Žiadne sekcie v Release súbore %s" +msgid "but %s is to be installed" +msgstr "ale inštalovať sa bude %s" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Chýba položka „Hash“ v súbore Release %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ale sa nedá nainštalovať" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Chýba položka „Valid-Until“ v súbore Release %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ale je to virtuálny balík" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Chýba položka „Date“ v súbore Release %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ale nie je nainštalovaný" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ale sa nebude inštalovať" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Skomolený riadok %lu v zozname zdrojov %s (nie je možné spracovať [option])" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " alebo" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s ([option] je príliš krátke)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Nasledovné balíky majú nesplnené závislosti:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nie je priradenie)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Nainštalujú sa nasledovné NOVÉ balíky:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nemá kľúč)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Nasledovné balíky sa ODSTRÁNIA:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] kľúč %s nemá hodnotu)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Nasledovné balíky sa ponechajú v súčasnej verzii:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (URI)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Nasledovné balíky sa aktualizujú:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (dist)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Nasledovné balíky sa DEGRADUJÚ:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Nasledovné pridržané balíky sa zmenia:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)" +msgid "%s (due to %s) " +msgstr "%s (kvôli %s) " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"UPOZORNENIE: Nasledovné dôležité balíky sa odstránia.\n" +"Ak presne neviete, čo robíte, tak to NEROBTE!" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (absolútny dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualizovaných, %lu nových nainštalovaných, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie dist)" +msgid "%lu reinstalled, " +msgstr "%lu reinštalovaných, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Otvára sa %s" +msgid "%lu downgraded, " +msgstr "%lu degradovaných, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu na odstránenie a %lu neaktualizovaných.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu iba čiastočne nainštalovaných alebo odstránených.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Inštaluje sa %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Nastavuje sa %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Odstraňuje sa %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Príkaz update neprijíma žiadne argumenty" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Completely removing %s" -msgstr "Úplne sa odstraňuje %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Zaznamenali sme zmiznutie %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Vykonáva sa spúšťač post-installation %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Adresár „%s“ chýba" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Nedá sa otvoriť súbor „%s“" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Vnútorná chyba, InstallPackages bolo volané s poškodenými balíkmi!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Pripravuje sa %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Rozbaľuje sa %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Vnútorná chyba, Triedenie sa neukončilo" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Pripravuje sa nastavenie %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Nezvyčajná udalosť... Veľkosti nesúhlasia, pošlite e-mail na apt@packages." +"debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "Nainštalovaný balík %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Pripravuje sa odstránenie %s" +msgid "Need to get %sB of archives.\n" +msgstr "Je potrebné stiahnuť %sB archívov.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "Odstránený balík %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po tejto operácii sa na disku použije ďalších %sB.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Pripravuje sa úplné odstránenie %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po tejto operácii sa na disku uvoľní %sB.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "Balík „%s“ je úplne odstránený" +msgid "You don't have enough free space in %s." +msgstr "Na %s nemáte dostatok voľného miesta." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Nastali problémy a -y bolo použité bez --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Do %s sa nedá zapisovať" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Áno, urob to, čo vravím!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Možno sa chystáte vykonať niečo škodlivé.\n" +"Ak chcete pokračovať, opíšte frázu „%s“\n" +" ?]" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Operácia bola prerušená predtým, než sa stihla dokončiť" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Prerušené." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Nezapíše sa správa apport, pretože už bol dosiahnutý limit MaxReports" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Chcete pokračovať?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problém so závislosťami - ponecháva sa nenakonfigurované" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Niektoré súbory sa nedajú stiahnuť" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje, že je to chyba v " -"nadväznosti na predošlé zlyhanie." +"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --" +"fix-missing" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk " -"zaplnený" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing a výmena nosiča nie sú momentálne podporované" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje chybu nedostatku " -"pamäte" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Chýbajúce balíky sa nedajú opraviť." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Inštalácia sa prerušuje." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk " -"zaplnený" +"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] "" +"Nasledovný balík zmizol z vášho systému, pretože\n" +"všetky súbory boli prepísané inými balíkmi:" +msgstr[1] "" +"Nasledovné balíky zmizli z vášho systému, pretože\n" +"všetky súbory boli prepísané inými balíkmi:" +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:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Pozn.: Toto robí dpkg automaticky a zámerne." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nemajú sa odstraňovať veci, nespustí sa AutoRemover" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje V/V chybu dpkg" +"Hmm, zdá sa, že AutoRemover niečo zničil, čo sa naozaj nemalo stať.\n" +"Prosím, pošlite hlásenie o chybe balíka apt." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +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:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Vnútorná chyba, AutoRemover niečo pokazil" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "Nedá sa zamknúť adresár na správu (%s), používa ho iný proces?" +"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] "" +"Nasledovný balík bol nainštalovaný automaticky a už viac nie je potrebný:" +msgstr[1] "" +"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" +msgstr[2] "" +"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nedá sa zamknúť adresár na správu (%s), ste root?" +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 balík bol nainštalovaný automaticky a už viac nie je potrebný.\n" +msgstr[1] "" +"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n" +msgstr[2] "" +"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +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“." + +#: apt-private/private-install.cc:612 +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“:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg bol prerušený, musíte ručne opraviť problém spustením „%s“. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo " +"navrhnite riešenie)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Nie je zamknuté" +#: apt-private/private-install.cc:638 +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 "" +"Niektoré balíky sa nedajú nainštalovať. To môže znamenať, že požadujete\n" +"nemožnú situáciu, alebo ak používate nestabilnú distribúciu, že\n" +"požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n" +"Novoprichádzajúcich (Incoming) balíkov." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li d %li h %li min %li s" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Poškodené balíky" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%li h %li min %li s" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Nainštalujú sa nasledovné extra balíky:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%li min %li s" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Navrhované balíky:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%li s" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Odporúčané balíky:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Voľba %s nenájdená" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Preskakuje sa %s, pretože je už nainštalovaný.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Zamykanie pre súbor zámku %s, ktorý je iba na čítanie, sa nepoužíva" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Preskakuje sa %s, nie je nainštalovaný a bola vy6iadan8 iba aktualizácia.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Súbor zámku %s sa nedá otvoriť" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Nie je možná reinštalácia %s, pretože sa nedá stiahnuť.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Zamykanie pre súbor zámku %s pripojený cez NFS sa nepoužíva" +msgid "%s is already the newest version.\n" +msgstr "%s je už najnovšej verzie.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Zámok %s sa nedá získať" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Vybraná verzia „%s“ (%s) pre „%s“\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Zoznam súborov nemožno vytvoriť, pretože „%s“ nie je adresár" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Vybraná verzia „%s“ (%s) pre „%s“ kvôli „%s“\n" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože to nie je obyčajný súbor" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť. Mali ste na mysli " +"„%s“?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože nemá príponu názvu súboru" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"Ignoruje sa „%s“ v adresári „%s“, pretože má neplatnú príponu názvu súboru" +"POZN.: Toto je iba simulácia!\n" +" apt-get potrebuje na skutočné spustenie práva používateľa root.\n" +" Tiež pamätajte, že zamykanie je deaktivované, takže\n" +" sa nespoliehajte na to že to bude platiť v reálnej situácii!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Podproces %s obdržal chybu segmentácie." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Podproces %s dostal signál %u." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Upozornenie o vierohodnosti bolo potlačené.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Podproces %s vrátil chybový kód (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Podproces %s neočakávane skončil" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Nainštalovať tieto nekontrolované balíky?" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problém pri zatváraní gzip súboru %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Premenovanie %s na %s zlyhalo" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Nedá sa otvoriť súbor %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Nedá sa otvoriť popisovač súboru %d" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nedá sa vytvoriť podproces IPC" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Už existuje " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nepodarilo sa spustiť kompresor " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Získava sa:" -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Chyba " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "čítanie, treba prečítať ešte %llu, ale už nič neostáva" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%sB sa stiahlo za %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "zápis, treba zapísať ešte %llu, no nedá sa to" +msgid " [Working]" +msgstr " [Prebieha spracovanie]" -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem closing the file %s" -msgstr "Problém pri zatváraní súboru %s" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Výmena nosiča: Vložte disk s názvom\n" +" „%s“\n" +"do mechaniky „%s“ a stlačte Enter\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problém pri synchronizovaní súboru %s na %s" +msgid "No mirror file '%s' found " +msgstr "Na zrkadle nebol nájdený súbor „%s“" -#: apt-pkg/contrib/fileutl.cc:1938 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Problém pri odstraňovaní súboru %s" +msgid "Can not read mirror file '%s'" +msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problém pri synchronizovaní súboru" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" -#: apt-pkg/contrib/progress.cc:148 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Chyba!" +msgid "[Mirror: %s]" +msgstr "[Zrkadlo: %s]" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Hotovo" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Zlyhalo vytvorenie IPC rúry k podprocesu" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Spojenie bolo predčasne ukončené" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Chybné predvolené nastavenie!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Stlačte Enter, ak chcete pokračovať." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Chcete odstrániť všetky doteraz stiahnuté .deb súbory?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Pri rozbaľovaní došlo k nejakým chybám. Balíky, ktoré boli nainštalované" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "budú nakonfigurované. Môže to spôsobiť opakované chybové správy" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "o nesplnených závislostiach. Je to v poriadku, dôležité sú iba" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"chyby nad touto správou. Opravte ich a potom znovu spusťte [I]nštalovať" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Hotovo" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Zlučujú sa dostupné informácie" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nedá sa vykonať mmap prázdneho súboru" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Pokus o uvoľnenie uzla (DropNode) na stále prepojenom uzle" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nedá sa duplikovať popisovač súboru %i" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Hašovací prvok sa nedá nájsť!" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nedá sa urobiť mmap %llu bajtov" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nedá sa alokovať diverzia" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nedá sa zatvoriť mmap" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Vnútorná chyba pri AddDiversion" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nedá sa synchronizovať mmap" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Pokus o prepísanie diverzie, %s -> %s a %s/%s" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nedá sa urobiť mmap %lu bajtov" +msgid "Double add of diversion %s -> %s" +msgstr "Dvojité pridanie diverzie %s -> %s" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Nepodarilo sa skrátiť súbor" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Duplicitný konfiguračný súbor %s/%s" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, 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 "" -"Nedostatok miesta pre dynamický MMap. Prosím, zväčšite veľkosť APT::Cache-" -"Start. Aktuálna hodnota: %lu. (man 5 apt.conf)" +msgid "The path %s is too long" +msgstr "Cesta %s je príliš dlhá" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Napodarilo sa zväčšiť veľkosť MMap, pretože limit %lu už bol dosiahnutý." +msgid "Unpacking %s more than once" +msgstr "%s sa rozbaľuje viackrát" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Napodarilo sa zväčšiť veľkosť MMap, pretože automatické zväčovanie vypol " -"používateľ." +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Adresár %s je divertovaný" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Prípojný bod %s sa nedá vyhodnotiť" +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-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nedá sa vykonať stat() CD-ROM" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Diverzná cesta je príliš dlhá" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nerozpoznaná skratka typu: „%c“" +msgid "Failed to stat %s" +msgstr "%s sa nedá vyhodnotiť" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Opening configuration file %s" -msgstr "Otvára sa konfiguračný súbor %s" +msgid "Failed to rename %s to %s" +msgstr "Premenovanie %s na %s zlyhalo" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Adresár %s sa nahradí neadresárom" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaktická chyba %s:%u: Skomolená značka" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Nedá sa nájsť uzol na adrese jeho hašu" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Cesta je príliš dlhá" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Syntaktická chyba %s:%u: Direktívy sa dajú vykonať len na najvyššej úrovni" +msgid "Overwrite package match with no version for %s" +msgstr "Prepísať zodpovedajúci balík bez udania verzie pre %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Súbor %s/%s prepisuje ten z balíka %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ" +msgid "Unable to stat %s" +msgstr "Nedá sa vyhodnotiť %s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva „%s“" +msgid "Failed to write file %s" +msgstr "Zápis súboru %s zlyhal" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Syntaktická chyba %s:%u: direktíva clear vyžaduje ako argument strom volieb" +msgid "Failed to close file %s" +msgstr "Zatvorenie súboru %s zlyhalo" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaktická chyba %s:%u: Na konci súboru sú chybné údaje" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Toto nie je platný DEB archív, chýba časť „%s“" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "No keyring installed in %s." -msgstr "V %s nie je nainštalovaný žiaden zväzok kľúčov." +msgid "Internal error, could not locate member %s" +msgstr "Vnútorná chyba, nedá sa nájsť časť %s" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Parameter príkazového riadka „%c“ [z %s] je neznámy" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Nespracovateľný riadiaci súbor" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Nezrozumiteľný parameter %s na príkazovom riadku" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Neplatný podpis archívu" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Chyba pri čítaní záhlavia prvku archívu" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Option %s requires an argument." -msgstr "Voľba %s vyžaduje argument." +msgid "Invalid archive member header %s" +msgstr "Neplatná hlavička prvku archívu %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Parameter %s: Zadanie konfiguračnej položky musí obsahovať =<hodn>." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Neplatné záhlavie prvku archívu" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Voľba %s vyžaduje ako argument celé číslo (integer), nie „%s“" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archív je príliš krátky" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Voľba „%s“ je príliš dlhá" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Chyba pri čítaní hlavičiek archívu" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Nezrozumiteľný význam %s, skúste true alebo false. " +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Vytvorenie rúry zlyhalo" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Spustenie gzip zlyhalo " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Porušený archív" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Kontrolný súčet pre tar zlyhal, archív je poškodený" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Neplatná operácia %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Neznáma TAR hlavička typu %u, člen %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3574,7 +3578,7 @@ msgstr "Chyba čítania pri výpočte MD5" msgid "Problem unlinking %s" msgstr "Problém s odlinkovaním %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3626,6 +3630,10 @@ msgstr "" " -c=? Načíta tento konfiguračný súbor\n" " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Vnútorná chyba, AllUpgrade pokazil veci" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s nie je platný balík DEB." diff --git a/po/sl.po b/po/sl.po index eec59f42f..5dba5f9f6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-06-27 21:29+0000\n" "Last-Translator: Andrej Znidarsic <andrej.znidarsic@gmail.com>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -20,3223 +20,3227 @@ msgstr "" "X-Poedit-Language: Slovenian\n" "X-Poedit-SourceCharset: utf-8\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Vrsta datoteke s kazalom '%s' ni podprta" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paket %s različica %s ima nerešene odvisnosti:\n" +msgid "Unable to read %s" +msgstr "Ni mogoče brati %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Vseh imen paketov: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Ni mogoče spremeniti v %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Skupno struktur paketov : " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Ni mogoče določiti %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Običajni paketi: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Čisti navidezni paketi: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Poganjanje dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Posamezni navidezni paketi: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Paketni sistem '%s' ni podprt" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Mešani navidezni paketi: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Ni mogoče določiti ustrezne vrste paketnega sistema" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Manjka: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Zapisanih je bilo %i zapisov.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Vseh različic: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Skupno različnih opisov: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Zapisanih je bilo %i zapisov z %i neujemajočimi datotekami.\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Vseh odvisnosti: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami in %i " +"neujemajočimi datotekami.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Vseh povezav Raz/Dat: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Ni mogoče najti zapisa overitve za: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Skupno razmerij opisov/datotek: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Neujemanje razpršila za: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Vseh dobljenih preslikav: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Gonilnika načinov %s ni mogoče najti." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Vseh razširjenih nizov: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Celotna velikost z odvisnostmi različice: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Način %s se ni začel pravilno" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Celotna ohlapna velikost: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Vstavite disk z oznako '%s' v pogon '%s' in pritisnite vnosno tipko." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Celotna velikost, izračunana za: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Ni mogoče odprti ali razčleniti seznama paketov ali datoteke stanja." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Datoteka paketa %s ni usklajena." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Za odpravljanje težav poskusite zagnati apt-get update." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Noben paket ni bil najden" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Seznama virov ni mogoče brati." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Podati morate vsaj en iskalni vzorec" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Prazen predpomnilnik paketov" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark showauto'." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Datoteka s predpomnilnikom paketov je pokvarjena" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Različica datoteke s predpomnilnikom paketov ni združljiva" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Datoteka predpomnilnika paketa je okvarjena. Je premajhna" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Ni mogoče najti paketa %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Ta APT ne podpira sistema različic '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Datoteke paketa:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Predpomnilnik paketov je bil izgrajen za drugačno arhitekturo" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Predpomnilnik ni usklajen, x-ref datoteke paketa ni mogoč" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Odvisen od" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pripeti paketi:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Predodvisen od" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ni najdeno)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Priporoča" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Nameščen: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Priporoča" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "V sporu z" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(brez)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Zamenja" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Bucika paketa: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zastara" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Preglednica različic:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Pokvari" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s za %s kodno preveden na %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Izboljša" -#: cmdline/apt-cache.cc:1749 -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 "" -"Uporaba: apt-cache [možnosti] ukaz\n" -" apt-cache [možnosti] showpkg paket1 [paket2 ...]\n" -" apt-cache [možnosti] showsrc paket1 [paket2 ...]\n" -"\n" -"apt-cache je orodje nizke ravni za poizvedbo podatkov\n" -"iz binarni datotek predpomnilnika APT\n" -"\n" -"Ukazi:\n" -" gencaches - Izgradi tako predpomnilnik paketa in izvorne kode\n" -" showpkg - Prikaže nekaj splošnih podatkov o posameznem paketu\n" -" showsrc - Prikaže zapise izvorne kode\n" -" stats - Prikaže nekaj osnovne statistike\n" -" dump - Prikaže celotno datoteko v skrajšani obliki\n" -" dumpavail - Izpiše razpoložljivo datoteko na stdout\n" -" unmet - Prikaže nezadoščene odvisnosti\n" -" search - Išče seznam paketov z vzorcem logičnega izraza\n" -" show - Show a readable record for the package\n" -" depends - Prikaže surove podatke odvisnosti za paket\n" -" rdepends - Pokaže obratne podatke odvisnosti za paket\n" -" pkgnames - Izpiše imena vseh paketov na sistemu\n" -" dotty - Ustvari grafe paketa za GraphViz\n" -" xvcg - Ustvari grafe paketa za xvcg\n" -" policy - Prikaže nastavitve pravil\n" -"\n" -"Možnosti:\n" -" -h To besedilo pomoči.\n" -" -p=? Predpomnilnik paketov.\n" -" -s=? Predpomnilnik izvorne kode.\n" -" -q Onemogoči kazalnik napredka.\n" -" -i Pokaže le pomembne odvisnosti za neujemajoč ukaz.\n" -" -c=? Prebere to nastavitveno datoteko\n" -" -o=? Nastavi poljubno možnost nastavitve, na primer -o dir::cache=/tmp\n" -"Za več podrobnosti si oglejte strani priročnikov apt-cache(8) in apt." -"conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "pomembno" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Navedite ime tega diska, kot je naprimer 'Debian 5.0.3 disk 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "obvezno" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Vstavite disk v pogon in pritisnite vnosno tipko" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "običajni" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Priklapljanje '%s' na '%s' je spodletelo" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "izbirno" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "dodatno" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Ponovi to opravilo za preostanek CD-jev v vaši zbirki." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Vrsta datoteke s kazalom '%s' ni podprta" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenti niso v parih" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Napaka med prevajanjem logičnega izraza - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Uporaba: apt-config [možnosti] ukaz\n" -"\n" -"apt-config je preprosto orodje za branje nastavitvene datoteke APT\n" -"\n" -"Ukazi:\n" -" shell - Lupinski način\n" -" dump - Prikaže nastavitve\n" -"\n" -"Možnosti:\n" -" -h To besedilo pomoči.\n" -" -c=? Prebere podano datoteko z nastavitvami\n" -" -o=? Nastavi poljubno nastavitveno možnost, na primer. -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Predpomnilnik ima neustrezen sistem različic" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Med obdelovanjem %s je prišlo do napake (%s%d)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Čestitamo, presegli ste število imen paketov, ki jih zmore APT." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Čestitamo, presegli ste število različic, ki jih zmore APT." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Izbiranje '%s' kot vir paketa namesto '%s'\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Čestitamo, presegli ste število opisov, ki jih je zmožen APT." -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Prezri nerazpoložljivo različico '%s' paketa '%s'" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Čestitamo, presegli ste število odvisnosti, ki jih zmore APT." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Ni mogoče najti paketa %s" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Paketa %s %s ni bilo mogoče najti med obdelavo odvisnosti datotek" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s je bil nastavljen na ročno nameščen.\n" +msgid "Couldn't stat source package list %s" +msgstr "Ni mogoče določiti seznama izvornih paketov %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Branje seznama paketov" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Zbiranje dobaviteljev datotek" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s je nastavljen na samodejno nameščen.\n" +msgid "Unable to write to %s" +msgstr "Ni mogoče pisati na %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark auto' in 'apt-mark " -"manual'." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Napaka VI med shranjevanjem predpomnilnika virov" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Notranja napaka, reševalnik težav je pokvaril stvari" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Pošlji scenarij reševalniku" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Ni mogoče zakleniti mape prejemov" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Pošlji zahtevo reševalniku" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Priprava za rešitev prejemanja" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Izvornega paketa za %s ni mogoče najti" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Zunanji reševalnik je spodletel brez pravega sporočila o napakah" -#: cmdline/apt-get.cc:786 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Izvedi zunanji reševalnik" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"OPOMBA: pakiranje '%s' vzdrževano v sistemu nadzora različice '%s' na:\n" -"%s\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "preimenovanje je spodletelo, %s (%s -> %s)." -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Neujemanje vsote razpršil" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Neujemanje velikosti" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Neveljavno opravilo %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Uporabite:\n" -"bzr branch %s\n" -"za pridobitev zadnjih (morda še neizdanih) posodobitev paketa.\n" +"Ni mogoče najti pričakovanega vnosa '%s' v datoteki Release (napačen vnos " +"sources.list ali slabo oblikovana datoteka)" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Preskok že prejete datoteke '%s'\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ni mogoče najti vsote razprševanja za '%s' v datoteki Release" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Za naslednje ID-je ključa ni na voljo javnih ključev:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Ni mogoče določiti prostega prostora v %s" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Datoteka Release za %s je potekla (neveljavna od %s). Posodobitev za to " +"skladišče ne bo uveljavljena." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Nimate dovolj prostora na %s" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %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:891 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Med preverjanjem podpisa je prišlo do napake. Skladišče ni bilo posodobljeno " +"zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n" -#. 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:896 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" +msgid "GPG error: %s: %s" +msgstr "Napaka GPG: %s: %s" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Fetch source %s\n" -msgstr "Dobi vir %s\n" +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 "" +"Ni bilo mogoče najti datoteke za paket %s. Morda boste morali ročno " +"popraviti ta paket (zaradi manjkajočega arhiva)." -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nekaterih arhivov ni mogoče pridobiti." +#: apt-pkg/acquire-item.cc:1925 +#, 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:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Prejem je dokončan in uporabljen je način samo prejema" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket " +"%s." -#: cmdline/apt-get.cc:950 +#: apt-pkg/vendorlist.cc:85 #, 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" +msgid "Vendor block %s contains no fingerprint" +msgstr "Ponudnikov blok %s ne vsebuje prstnega podpisa" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Ukaz odpakiranja '%s' ni uspel.\n" +msgid "List directory %spartial is missing." +msgstr "Mapa seznama %spartial manjka." -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" +msgid "Archives directory %spartial is missing." +msgstr "Mapa arhivov %spartial manjka." -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Ukaz gradnje '%s' ni uspel.\n" +msgid "Unable to lock directory %s" +msgstr "Mape %s ni mogoče zakleniti" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Podrejeno opravilo ni uspelo" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Pridobivanje datoteke %li od %li (%s preostalo)" -#: cmdline/apt-get.cc:1029 -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" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Pridobivanje datoteke %li od %li" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Ni mogoče dobiti %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Za %s ni bilo mogoče najti podatkov o arhitekturi. Za nastavitev si oglejte " -"apt.conf(5) APT::Architectures" - -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Ni mogoče dobiti podrobnosti o odvisnostih za gradnjo za %s" +"Prejem nekaterih datotek kazala je spodletel. Bile so prezrte ali pa so bile " +"namesto njih uporabljene stare." -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s nima odvisnosti za gradnjo.\n" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "V sources.list morate vstaviti URI-je z viri" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"odvisnosti %s za %s ni mogoče zadovoljiti, ker %s ni dovoljen na paketih '%s'" +"Vrednost '%s' je neveljavna za APT::Default-Release in zato takšna izdaja ni " +"na voljo v virih" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/policy.cc:422 #, 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" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Neveljaven zapis v datoteki možnosti %s, ni glave paketa" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:444 #, 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" +msgid "Did not understand pin type %s" +msgstr "Ni mogoče razumeti vrste bucike %s" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Prednost bucike ni navedena ali pa je nič." + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " -"%s ne more zadostiti zahtev različice" +"Ni mogoče izvesti takojąnje nastavitve na '%s'. Oglejte si man5 apt.conf pod " +"APT::Immediate-Configure za podrobnosti. (%d)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Ni mogoče nastaviti '%s' " + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " -"%s nima različice kandidata" +"Ta krog namestitve zahteva začasno odstranitev ključnega paketa %s zaradi " +"zanke spora/predodvisnosti. To je ponavadi slabo, toda če zares želite " +"nadaljevati, vključite možnost APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Ni mogoče zadostiti %s odvisnosti za %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Vrstica %u v seznamu virov %s je predolga." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Odklapljanje CD-ROM-a ...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Odvisnosti za gradnjo %s ni bilo mogoče zadostiti." +msgid "Using CD-ROM mount point %s\n" +msgstr "Uporabljanje CD-ROM-ove priklopne točke %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Obdelava odvisnosti za gradnjo je spodletela" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Čakanje na disk ...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Priklapljanje CD-ROM-a ...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificiranje ... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Dnevnik sprememb za %s (%s)" +msgid "Stored label: %s\n" +msgstr "Shranjena oznaka: %s\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podprti moduli:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Preiskovanje diska za datoteke kazala ...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:734 +#, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Uporaba: apt-get [možnosti] ukaz\n" -" apt-get [možnosti] install|remove paket1 [paket2 ...]\n" -" apt-get [možnosti] source paket1 [paket2 ...]\n" -"\n" -"apt-get je enostaven vmesnik ukazne vrstice za prejem in nameščanje\n" -"paketov. Najbolj pogosto uporabljana ukaza sta update in install.\n" -"\n" -"Ukazi:\n" -" update - Pridobi nove sezname paketov\n" -" upgrade - Izvedix nadgradnjo\n" -" install - Namesti nove pakete (paket je libc6, ne libc6.deb)\n" -" remove - Odstrani pakete\n" -" autoremove - Samodejno odstrani vse neuporabljene pakete\n" -" purge - Odstrani pakete in nastavitvene datoteke\n" -" source - Prejmi arhive izvorne kode\n" -" build-dep - Nastavi odvisnosti gradnje za paket izvorne kode\n" -" dist-upgrade - Nadgradnja distribucije, oglejte si apt-get(8)\n" -" dselect-upgrade - Sledi izbiri dselect\n" -" clean - Izbriši prejete datoteke arhivov\n" -" autoclean - Izbriše stare prejete datoteke arhivov\n" -" check - Preveri, da ni pokvarjenih odvisnosti\n" -" changelog - Prejmi in prikaže dnevnik sprememb za dani paket\n" -" download - Prejmi binarni paket v trenutno mapo\n" -"\n" -"Možnosti:\n" -" -h To besedilo pomoči.\n" -" -q Izhod se beleži - brez kazalnika napredka\n" -" -qq Ni izhoda razen napak\n" -" -d Le prejmi - NE nameščaj ali odpakiraj arhivov\n" -" -s Ne naredi ničesar. Izvedi simulacijo ukaza\n" -" -y Predpostavi Da vsem poizvedbam in ne pozivaj\n" -" -f Poskusi popraviti sistem s pokvarjenimi odvisnostmi\n" -" -m Poskusi nadaljevati, če arhivov ni mogoče najti\n" -" -u Pokaži tudi seznam nadgrajenih paketov\n" -" -b Po pridobitvi izgradi izvorni paket\n" -" -V Pokaži podrobne številke različic\n" -" -c=? Preberi to nastavitveno datoteko\n" -" -o=? Nastavi poljubno nastavitveno možnost, na primer -o dir::cache=/tmp\n" -"Za več podrobnosti in možnosti si oglejte strani priročnikov apt-get(8),\n" -" sources.list(5) in apt.conf(5). \n" -" Ta APT ima moči super krav.\n" +"Najdenih je bilo %zu kazal paketov, %zu kazal virov, %zu kazalov prevodov in " +"%zu podpisov\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" +"Nobenih datotek paketov ni mogoče najti, morda to ni disk Debian ali pa je " +"arhitektura napačna?" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Najdena je bila oznaka '%s'\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "To ni veljavno ime, poskusite znova.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Ta disk se imenuje: \n" +"'%s'\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopiranje seznama paketov ..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Pisanje novega seznama virov\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Izvorni vnosi za ta disk so:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"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:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Napaka. pkgProblemResolver::Resolve pri razrešitvi, ki so jih morda " +"povzročili zadržani paketi." -#: cmdline/apt-mark.cc:68 +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Ni mogoče popraviti težav. Imate pokvarjene pakete." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Gradnja drevesa odvisnosti" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Različice kandidatov" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Ustvarjanje odvisnosti" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Branje podatkov o stanju" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "paket %s ne more biti označen, ker ni nameščen.\n" +msgid "Failed to open StateFile %s" +msgstr "Odpiranje DatotekeStanja %s je spodletelo" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "paket %s je bil že nastavljen na ročno nameščen.\n" +msgid "Failed to write temporary StateFile %s" +msgstr "Pisanje začasne DatotekeStanja %s je spodletelo" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "paket %s je bil že nastavljen kot samodejno nameščen.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Ni mogoče razčleniti datoteke paketa %s (1)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%s was already set on hold.\n" -msgstr "paket %s je bil že nastavljen kot na čakanju.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Ni mogoče razčleniti datoteke paketa %s (2)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%s was already not hold.\n" -msgstr "paket %s je bil že nastavljen kot ne na čakanju.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Izdaje '%s' za '%s' ni mogoče najti" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Program je čakal na %s a ga ni bilo tam" +msgid "Version '%s' for '%s' was not found" +msgstr "Različice '%s' za '%s' ni mogoče najti" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "%s set on hold.\n" -msgstr "paket %s je nastavljen kot na čakanju.\n" +msgid "Unable to locate package %s" +msgstr "Ni mogoče najti paketa %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Čakanje za %s je bilo preklicano.\n" +msgid "Couldn't find task '%s'" +msgstr "Ni mogoče najti naloge '%s'" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Izvajanje dpkg je spodletelo. Ali ste skrbnik?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" -#: cmdline/apt-mark.cc:392 -#, fuzzy +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" + +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Ni mogoče izbrati različic in paketa '%s', saj je popolnoma navidezen" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Uporaba: apt-mark [možnosti] {auto|manual} paket1 [paket2 ...]\n" -"\n" -"apt-mark je enostaven vmesnik ukazne vrstice za označevanje paketov\n" -"kot ročno ali samodejno nameščenih. Oznake lahko tudi izpiše.\n" -"\n" -"Ukazi:\n" -" auto - Označi dane pakete kot samodejno nameščene\n" -" manual - Označi dane pakete kot ročno nameščene\n" -"\n" -"Možnosti:\n" -" -h To besedilo pomoči.\n" -" -q Izhod se beleži - brez kazalnika napredka\n" -" -qq Brez izhoda razen napak\n" -" -s Ne naredi ničesar. Samo napiše kaj bi bilo narejeno.\n" -" -f Prebere/zapiše oznako ročno/samodejno za dano datoteko\n" -" -c=? Prebere to nastavitveno datoteko\n" -" -o=? Nastavi poljubno nastavitveno možnost, na primer -o dir::cache=/tmp\n" -"Za več podrobnosti si oglejte strani priročnika apt-mark(8) in apt-conf(5)." +"Ni mogoče izbrati nameščene različice ali različice kandidata iz paketa " +"'%s', saj nima nobenega od njiju" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" +"Ni mogoče izbrati najnovejše različice iz paketa '%s', saj je popolnoma " +"navidezen" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Ni mogoče brati podatkovne zbirke %s na CD-ROM-u" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "Ni mogoče izbrati različice kandidata iz paketa %s, ker nima kandidata" -#: 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 "" -"Uporabite apt-cdrom, če želite, da APT prepozna CD. apt-get update ne more " -"sam dodati novih CD-ROM-ov" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "Ni mogoče izbrati nameščene različice iz paketa %s, saj ni nameščen" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Napačen CD-ROM" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Ni mogoče razčleniti Release datoteke %s" -#: methods/cdrom.cc:249 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Ni mogoče odklopiti CD-ROM-a v %s, ker je morda še v uporabi." +msgid "No sections in Release file %s" +msgstr "Ni izbir v Release datoteki %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Diska ni mogoče najti." +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Ni vnosa razpršila v Release datoteki %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Datoteke ni mogoče najti" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Neveljaven vnos 'Veljavno-do' v Release datoteki %s" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Določitev ni uspela" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Neveljavne vnos 'Datum' v Release datoteki %s" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Nastavitev časa spremembe je spodletela" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Neveljaven URI. Krajevni URI-ji se morajo začeti z //" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Slabo oblikovana vrstica %lu na seznamu virov %s ([možnosti] ni mogoče " +"razčleniti)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Prijavljanje" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([možnost] prekratka)" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Ni mogoče ugotoviti imena gostitelja" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Slabo oblikovana vrstica %lu na seznamu vrstic %s ([%s] ni dodelitev)" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Ni mogoče določiti krajevnega imena" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] nima ključa)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Strežnik je zavrnil povezavo in sporočil: %s" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] ključ %s nima " +"vrednosti)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER je spodletel, strežnik je odgovoril: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (URI)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS je spodletel, strežnik je odgovoril: %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (distribucija)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Naveden je bil posredniški strežnik, ne pa tudi prijavni skript. Acquire::" -"ftp::ProxyLogin je prazen." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Ukaz prijavne skripte '%s' ni uspel, strežnik je odgovoril: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" +"Slabo oblikovana vrstica %lu v seznamu virov %s (absolutna distribucija)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE je spodletel, strežnik je odgovoril: %s" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev distribucije)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Povezava je zakasnela" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Odpiranje %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Strežnik je zaprl povezavo" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Slabo oblikovana vrstica %u v seznamu virov %s (vrsta)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Napaka branja" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odgovor je prekoračil predpomnilnik." +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Okvara protokola" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Nameščanje %s" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Napaka pisanja" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Nastavljanje %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Ni mogoče ustvariti vtiča" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Odstranjevanje %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Ni mogoče povezati podatkovnega vtiča. Povezava je zakasnela." +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s je bil popolnoma odstranjen" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Spodletelo" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "%s je izginil" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Ni mogoče povezat pasivnega vtiča." +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Poganjanje sprožilca po namestitvi %s" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo ni mogel dobiti poslušajočega vtiča" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Mapa '%s' manjka" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Ni mogoče povezati vtiča" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Ni mogoče odpreti datoteke '%s'" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Ni mogoče poslušati na vtiču" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Pripravljanje %s" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Ni mogoče določiti imena vtiča" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Ni mogoče poslati ukaza PORT" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Razširjanje %s" -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Neznan naslov družine %u (AF_*)" +msgid "Preparing to configure %s" +msgstr "Pripravljanje na nastavljanje %s" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT ni uspel, strežnik je odgovoril: %s" +msgid "Installed %s" +msgstr "%s je bil nameščen" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Povezava podatkovne vtičnice je zakasnela" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Pripravljanje na odstranitev %s" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Ni mogoče sprejeti povezave" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s je bil odstranjen" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Težava med razprševanjem datoteke" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Pripravljanje na popolno odstranitev %s" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Ni mogoče pridobiti datoteke, strežnik je odgovoril '%s'" +msgid "Completely removed %s" +msgstr "%s je bil popolnoma odstranjen" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Podatkovna vtič je potekel" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Ni mogoče pisati na %s" + +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Prenos podatkov ni uspel, strežnik je odgovoril '%s'" +msgid "Waited for %s but it wasn't there" +msgstr "Program je čakal na %s a ga ni bilo tam" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Poizvedba" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Opravilo je bilo prekinjeno preden se je lahko končalo" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Ni mogoče klicati " +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Poročilo apport ni bilo napisano, ker je bilo število MaxReports že doseženo" -#: methods/connect.cc:76 +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "težave odvisnosti - puščanje nenastavljenega" + +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na " +"navezujočo napako iz predhodne napake." + +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " +"polnega diska" + +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " +"zaradi pomanjkanja pomnilnika" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Poročilo apport je bilo napisano, ker sporočilo o napaki nakazuje na težavo " +"na krajevnem sistemu" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " +"dpkg V/I" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Povezovanje z %s (%s)" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Skrbniške mape (%s) ni mogoče zakleniti. Jo morda uporablja drugo opravilo?" -#: methods/connect.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Skrbniške mape (%s) ni mogoče zakleniti. Ali ste skrbnik?" -#: methods/connect.cc:94 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, 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)" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg je bil prekinjen. Za popravilo napake morate ročno pognati '%s'. " -#: methods/connect.cc:100 +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Ni zaklenjeno" + +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Ni mogoče začeti povezave z %s:%s (%s)." +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: methods/connect.cc:108 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, 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." +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: methods/connect.cc:126 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Ni se mogoče povezati z %s:%s (%s)." +msgid "%limin %lis" +msgstr "%limin %lis" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Connecting to %s" -msgstr "Povezovanje z %s" +msgid "%lis" +msgstr "%lis" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Could not resolve '%s'" -msgstr "Ni mogoče razrešiti '%s'" +msgid "Selection %s not found" +msgstr "Izbire %s ni mogoče najti" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Začasna napaka med razreševanjem '%s'" +msgid "Not using locking for read only lock file %s" +msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko le za branje %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Ni mogoče odprti zaklenjene datoteke %s" -#: methods/connect.cc:211 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS" -#: methods/connect.cc:258 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ni se mogoče povezati z %s:%s:" +msgid "Could not get lock %s" +msgstr "Ni mogoče zakleniti datoteke %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Notranja napaka: Dober podpis, toda ni mogoče določiti podpisa ključa?!" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Seznama datotek ni mogoče ustvariti, ker '%s' ni mapa" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Najden je bil vsaj en neveljaven podpis." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Preziranje '%s' v mapi '%s', ker ni običajna datoteka" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Ni mogoče izvesti 'gpgv' za preverjanje podpisa (je gpgv nameščen?)" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Preziranje datoteke '%s' v mapi '%s', ker nima pripone imena datotek" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" +"Preziranje datoteke '%s' v mapi '%s', ker nima veljavne pripone imena datotek" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Neznana napaka med izvajanjem gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Naslednji podpisi so bili neveljavni:\n" - -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Naslednjih podpisov ni mogoče preveriti, ker javni ključ ni na voljo:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Prazne datoteke ne morejo biti veljavni arhivi" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Napaka med pisanjem v datoteko" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Napaka med branjem s strežnika. Oddaljeni del je zaprl povezavo" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Napaka med branjem s strežnika" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Napaka med pisanjem v datoteko" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Izbira ni uspela" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Povezava je zakasnela" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Pod-opravilo %s je prejelo segmentacijsko napako." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Napaka med pisanjem v izhodno datoteko" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Pod-opravilo %s je prejelo signal %u." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čakanje na glave" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Pod-opravilo %s je vrnilo kodo napake (%u)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Neveljavna vrstica glave" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Pod-opravilo %s se je nepričakovano zaključilo" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Strežnik HTTP je poslal neveljavno glavo odgovora" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Napaka pisanja" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Strežnik HTTP je poslal glavo z neveljavno dolžino vsebine" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Težava med zapiranjem gzip datoteke %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Strežnik HTTP je poslal glavo z neveljavnim obsegom vsebine" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Ni mogoče odpreti datoteke %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ta strežnik HTTP ima pokvarjen obseg podpore" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Ni mogoče odpreti opisnika datotek %d" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Neznana oblika datuma" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Ni mogoče ustvariti podopravila IPD" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Napačni podatki glave" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Ni mogoče izvesti stiskanja " -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Povezava ni uspela" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Napaka branja" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Notranja napaka" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "Prebrano, še vedno je treba prebrati %llu bajtov, vendar ni nič ostalo" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Preračunavanje nadgradnje ... " +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "pisanje, preostalo je še %llu za pisanje, vendar ni bilo mogoče pisati" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Notranja napaka zaradi AllUpgrade." +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Težava med zapiranjem datoteke %s" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Opravljeno" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Težava med preimenovanje datoteke %s v %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Težava med razvezovanjem datoteke %s" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Težava med usklajevanjem datoteke" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "%c%s... Error!" +msgstr "%c%s ... Napaka!" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Popravljanje odvisnosti ..." +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s ... Narejeno" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " spodletelo." +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ni mogoče popraviti odvisnosti" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Narejeno" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Ni mogoče pomanjšati zbirke za nadgradnjo" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "mmap prazne datoteke ni mogoč" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Opravljeno" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Ni mogoče podvojiti opisnika datotek %i" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Če želite popraviti napake, poskusite pognati 'apt-get -f install'." +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Ni mogoče narediti mmap %llu bajtov" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nerešene odvisnosti. Poskusite uporabiti -f." +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Ni mogoče zapreti mmap" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Ni mogoče uskladiti mmap" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Nameščeno]" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Ni mogoče narediti mmap %lu bajtov" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Nameščeno]" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Ni mogoče obrezati datoteke" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: 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 "" +"Dinamičnemu MMap je zmanjkalo prostora. Povečajte velikost APT::Cache-Start. " +"Trenutna vrednost: %lu. (man 5 apt.conf)" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Nameščeno]" - -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Nameščeno]" - -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" +"Ni mogoče povečati velikosti MMap, ker je omejitev %lu bajtov že dosežena." -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"Ni mogoče povečati velikosti MMap, ker je samodejno povečevanje onemogočeno." -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Naslednji paketi imajo nerešene odvisnosti:" - -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "but %s is installed" -msgstr "vendar je paket %s nameščen" +msgid "Unable to stat the mount point %s" +msgstr "Ni mogoče določiti priklopne točke %s" -#: apt-private/private-output.cc:444 -#, c-format -msgid "but %s is to be installed" -msgstr "vendar bo paket %s nameščen" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "vendar se ga ne da namestiti" - -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "vendar je navidezen paket" - -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "vendar ni nameščen" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Ni mogoče določiti CD-ROM-a" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "vendar ne bo nameščen" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Neprepoznana vrsta okrajšave: '%c'" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " ali" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Naslednji NOVI paketi bodo nameščeni:" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Skladenjska napaka %s:%u: Blok se začne brez imena." -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Naslednji novi paketi bodo ODSTRANJENI:" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Skladenjska napaka %s:%u: Slabo oblikovana oznaka." -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Naslednji paketi so bili zadržani:" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Skladenjska napaka %s:%u: Dodatna krama za vrednostjo." -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Naslednji paketi bodo nadgrajeni:" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnji ravni." -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Naslednji paketi bodo POSTARANI:" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Skladenjska napaka %s:%u: Preveč vgnezdenih vključitev" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Naslednji zadržani paketi bodo spremenjeni:" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Skladenjska napaka %s:%u: Vključeno od tu" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "%s (due to %s) " -msgstr "%s (zaradi %s) " +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n" -"Tega NE storite, razen če ne veste natanko kaj počenjate!" +"Skladenjska napaka %s:%u: počisti ukaz zahteva drevo možnosti kot argument" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu nadgrajenih, %lu na novo nameščenih, " +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Skladenjska napaka %s:%u: Dodatna krama na koncu datoteke" -#: apt-private/private-output.cc:698 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu posodobljenih, " +msgid "No keyring installed in %s." +msgstr "V %s ni nameščenih zbirk ključev." -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "%lu downgraded, " -msgstr "%lu postaranih, " +msgid "Command line option '%c' [from %s] is not known." +msgstr "Možnost ukazne vrstice '%c' [iz %s] ni poznana." -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n" +msgid "Command line option %s is not understood" +msgstr "Možnosti ukazne vrstice %s ni mogoče razumeti" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ne popolnoma nameščenih ali odstranjenih.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "" +msgid "Command line option %s is not boolean" +msgstr "Možnost ukazne vrstice %s ni boolova vrednost" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Možnost %s zahteva argument." -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Možnost %s: Določilo predmeta nastavitve zahtevajo =<val>." -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Možnost %s zahteva celoštevilski argument, ne '%s'" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Regex compilation error - %s" -msgstr "Napaka med prevajanjem logičnega izraza - %s" +msgid "Option '%s' is too long" +msgstr "Možnost '%s' je predolga" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Ukaz update ne sprejema argumentov" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Pomena %s ni mogoče razumeti, poskusite pravilno ali napačno." -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Invalid operation %s" +msgstr "Neveljavno opravilo %s" -#: apt-private/private-show.cc:156 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paket %s različica %s ima nerešene odvisnosti:\n" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Vseh imen paketov: " -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Notranja napaka, NamestiPakete je bil klican z pokvarjenimi paketi!" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Skupno struktur paketov : " -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Odstraniti je treba pakete, a je odstranjevanje onemogočeno." +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Običajni paketi: " -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Notranja napaka, Urejanje se ni končalo" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Čisti navidezni paketi: " -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Kako čudno ... Velikosti se ne ujemata, pošljite sporočilo na apt@packages." -"debian.org" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Posamezni navidezni paketi: " -#. 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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Potrebno je dobiti %sB/%sB arhivov.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Mešani navidezni paketi: " -#. 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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Potrebno je dobiti %sB arhivov.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Manjka: " -#. 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 -#: apt-private/private-install.cc:166 -#, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po tem opravilu bo porabljenega %sB dodatnega prostora.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Vseh različic: " -#. 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 -#: apt-private/private-install.cc:171 -#, c-format -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-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Skupno različnih opisov: " -#: apt-private/private-install.cc:199 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Na %s je premalo prostora." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Vseh odvisnosti: " -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Prišlo je do težav in -y je bil uporabljen brez --force-yes" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Vseh povezav Raz/Dat: " -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -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-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Skupno razmerij opisov/datotek: " -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Da, naredi tako kot pravim!" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Vseh dobljenih preslikav: " -#: apt-private/private-install.cc:221 -#, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Naredili boste nekaj, kar je morda lahko škodljivo.\n" -"Za nadaljevanje vtipkajte frazo '%s'\n" -" ?] " - -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Prekini." - -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Ali želite nadaljevati?" - -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Prejem nekaterih datotek ni uspel" - -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Nekaterih arhivov ni mogoče dobiti. Poskusite uporabiti apt-get update ali --" -"fix-missing." - -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing in izmenjava medija trenutno nista podprta" - -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Ni mogoče popraviti manjkajočih paketov." - -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Prekinjanje namestitve." - -#: apt-private/private-install.cc:365 -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] "" -"Naslednji paketi so izginili z vašega sistema, ker so vse\n" -"datoteke prepisali drugi paketi:" -msgstr[1] "" -"Naslednji paketi je izginil z vašega sistema, ker so vse\n" -"datoteke prepisali drugi paketi:" -msgstr[2] "" -"Naslednja paketa sta izginila z vašega sistema, ker so vse\n" -"datoteke prepisali drugi paketi:" -msgstr[3] "" -"Naslednji paketi so izginili z vašega sistema, ker so vse\n" -"datoteke prepisali drugi paketi:" - -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Opomba: To je dpkg storil samodejno in namenoma." - -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Program ne bi smel brisati stvari, ni mogoče zagnati " -"SamodejnegaOdstranjevalnika" - -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Videti je, da je SamodejniOdstranjevalnik nekaj uničil, kar se ne bi smelo " -"zgoditi\n" -"Pošljite poročilo o hrošču v apt." - -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Naslednji podatki vam bodo morda pomagali rešiti težavo:" - -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari" - -#: apt-private/private-install.cc:512 -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] "Naslednji paketi so bili samodejno nameščeni in niso več zahtevani:" -msgstr[1] "Naslednji paket je bil samodejno nameščen in ni več zahtevan:" -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:" - -#: apt-private/private-install.cc:516 -#, 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 paketov je bilo samodejno nameščenih in niso več zahtevani.\n" -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" - -#: apt-private/private-install.cc:518 -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." -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." - -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Poskusite zagnati 'apt-get -f install', če želite popraviti naslednje:" - -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Nerešene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " -"navedite rešitev)." - -#: apt-private/private-install.cc:628 -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 "" -"Nekaterih paketov ni mogoče namestiti. To lahko pomeni, da ste zahtevali\n" -"nemogoč položaj, če uporabljate nestabilno izdajo pa\n" -", da nekateri zahtevani paketi še niso ustvarjeni ali premaknjeni\n" -" iz Prihajajočega." - -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Pokvarjeni paketi" - -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Naslednji dodatni paketi bodo nameščeni:" - -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Predlagani paketi:" - -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Priporočeni paketi:" - -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s je preskočen, ker je že nameščen in ne potrebuje nadgradnje.\n" - -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Preskok %s, ni nameščen in zahtevane so le nadgradnje\n" - -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Ponovna namestitev %s ni možna, ker prejem ni možen.\n" - -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "Najnovejša različica %s je že nameščena.\n" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Vseh razširjenih nizov: " -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Izbrana različica '%s' (%s) za '%s'\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Celotna velikost z odvisnostmi različice: " -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Izbrana različica '%s' (%s) za '%s' namesto '%s'\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Celotna ohlapna velikost: " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Paket '%s' ni nameščen, zato ni bil odstranjen. Ali ste mislili '%s'?\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Celotna velikost, izračunana za: " -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paket '%s' ni nameščen, zato ni bil odstranjen\n" - -#: apt-private/private-main.cc:32 -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 "" -"OPOMBA: To je samo simulacija!\n" -" apt-get za pravo izvajanje potrebuje privilegije skrbnika.\n" -" Zaklepanje je onemogočeno, zato se ne zanašajte\n" -" na pomembnost trenutnega pravega stanja!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "POZOR: Naslednjih paketov ni bilo mogoče overiti!" +msgid "Package file %s is out of sync." +msgstr "Datoteka paketa %s ni usklajena." -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Opozorilo overitve je bilo prepisano.\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Noben paket ni bil najden" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nekaterih paketkov bi bilo mogoče overiti" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Podati morate vsaj en iskalni vzorec" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Ali želite te pakete namestiti brez preverjanja?" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark showauto'." -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Ni mogoče dobiti %s %s\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Datoteke paketa:" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Ni mogoče preimenovati %s v %s" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Predpomnilnik ni usklajen, x-ref datoteke paketa ni mogoč" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pripeti paketi:" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ni najdeno)" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Zadetek " +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Nameščen: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Dobi:" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Prezr " +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(brez)" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Nap " +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Bucika paketa: " -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Pridobljenih %sB v %s (%sB/s)\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Preglednica različic:" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid " [Working]" -msgstr " [Delo]" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s za %s kodno preveden na %s %s\n" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-cache.cc:1749 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Sprememba medija: vstavite disk z oznako\n" -" '%s'\n" -"v enoto '%s' in pritisnite vnosno tipko\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Ni mogoče brati %s" - -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Ni mogoče spremeniti v %s" - -#. 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 "Datoteke zrcalnih strežnikov '%s' ni mogoče najti " - -#. 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 "Datoteke zrcalnega strežnika '%s' ni mogoče prebrati" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Datoteke zrcalnega strežnika '%s' ni mogoče prebrati" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Zrcalni strežnik: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Ustvarjanje cevi IPC do podopravila je spodletelo" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Povezava se je prezgodaj zaprla" +"Uporaba: apt-cache [možnosti] ukaz\n" +" apt-cache [možnosti] showpkg paket1 [paket2 ...]\n" +" apt-cache [možnosti] showsrc paket1 [paket2 ...]\n" +"\n" +"apt-cache je orodje nizke ravni za poizvedbo podatkov\n" +"iz binarni datotek predpomnilnika APT\n" +"\n" +"Ukazi:\n" +" gencaches - Izgradi tako predpomnilnik paketa in izvorne kode\n" +" showpkg - Prikaže nekaj splošnih podatkov o posameznem paketu\n" +" showsrc - Prikaže zapise izvorne kode\n" +" stats - Prikaže nekaj osnovne statistike\n" +" dump - Prikaže celotno datoteko v skrajšani obliki\n" +" dumpavail - Izpiše razpoložljivo datoteko na stdout\n" +" unmet - Prikaže nezadoščene odvisnosti\n" +" search - Išče seznam paketov z vzorcem logičnega izraza\n" +" show - Show a readable record for the package\n" +" depends - Prikaže surove podatke odvisnosti za paket\n" +" rdepends - Pokaže obratne podatke odvisnosti za paket\n" +" pkgnames - Izpiše imena vseh paketov na sistemu\n" +" dotty - Ustvari grafe paketa za GraphViz\n" +" xvcg - Ustvari grafe paketa za xvcg\n" +" policy - Prikaže nastavitve pravil\n" +"\n" +"Možnosti:\n" +" -h To besedilo pomoči.\n" +" -p=? Predpomnilnik paketov.\n" +" -s=? Predpomnilnik izvorne kode.\n" +" -q Onemogoči kazalnik napredka.\n" +" -i Pokaže le pomembne odvisnosti za neujemajoč ukaz.\n" +" -c=? Prebere to nastavitveno datoteko\n" +" -o=? Nastavi poljubno možnost nastavitve, na primer -o dir::cache=/tmp\n" +"Za več podrobnosti si oglejte strani priročnikov apt-cache(8) in apt." +"conf(5).\n" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Napačna privzeta nastavitev!" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Navedite ime tega diska, kot je naprimer 'Debian 5.0.3 disk 1'" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Za nadaljevanje pritisnite vnosno tipko." +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Vstavite disk v pogon in pritisnite vnosno tipko" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Ali želite izbrisati vse predhodno prejete datoteke .deb?" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Priklapljanje '%s' na '%s' je spodletelo" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Med razširajanjem je prišlo do nekaterih napak. Paketi, ki so bili nameščeni" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "bodo bili nastavljeni. To lahko povzroči podvojene napake" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Ponovi to opravilo za preostanek CD-jev v vaši zbirki." -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"ali do napak zaradi manjkajočih odvisnosti. To je v redu, pomembne so samo " -"napake" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenti niso v parih" -#: dselect/install:105 +#: cmdline/apt-config.cc:89 msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "nad tem sporočilom. Popravite jih in poženite Namest[I]tev še enkrat" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Združevanje razpoložljivih podaktov" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode je poklical stabilno povezano vozlišče" +"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 "" +"Uporaba: apt-config [možnosti] ukaz\n" +"\n" +"apt-config je preprosto orodje za branje nastavitvene datoteke APT\n" +"\n" +"Ukazi:\n" +" shell - Lupinski način\n" +" dump - Prikaže nastavitve\n" +"\n" +"Možnosti:\n" +" -h To besedilo pomoči.\n" +" -c=? Prebere podano datoteko z nastavitvami\n" +" -o=? Nastavi poljubno nastavitveno možnost, na primer. -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Ni mogoče najti razpršenega elementa!" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Ni mogoče dodeliti odklona" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Notranja napaka v AddDiversion" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Poskus prepisovanja odklona, %s -> %s in %s/%s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Izbiranje '%s' kot vir paketa namesto '%s'\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dvojni seštevek odklona %s -> %s" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Prezri nerazpoložljivo različico '%s' paketa '%s'" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dvojnik datoteke z nastavitvami %s/%s" +msgid "Couldn't find package %s" +msgstr "Ni mogoče najti paketa %s" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "The path %s is too long" -msgstr "Pot %s je predolga" +msgid "%s set to manually installed.\n" +msgstr "%s je bil nastavljen na ročno nameščen.\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Unpacking %s more than once" -msgstr "Odpakiranje %s več kot enkrat" +msgid "%s set to automatically installed.\n" +msgstr "%s je nastavljen na samodejno nameščen.\n" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Mapa %s je odklonjena" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark auto' in 'apt-mark " +"manual'." -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Notranja napaka, reševalnik težav je pokvaril stvari" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Pot odklona je predloga" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Ni mogoče zakleniti mape prejemov" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "Napaka med določitvijo %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Ni mogoče preimenovati %s v %s" +msgid "Unable to find a source package for %s" +msgstr "Izvornega paketa za %s ni mogoče najti" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:786 #, 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:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Iskanje vozlišča v njegovem razpršenem vedru ni uspelo" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Pot je predolga" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"OPOMBA: pakiranje '%s' vzdrževano v sistemu nadzora različice '%s' na:\n" +"%s\n" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Prepiši zadetek paketa brez vnosa različice za %s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Uporabite:\n" +"bzr branch %s\n" +"za pridobitev zadnjih (morda še neizdanih) posodobitev paketa.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:843 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Preskok že prejete datoteke '%s'\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Unable to stat %s" -msgstr "Ni mogoče določiti %s" +msgid "Couldn't determine free space in %s" +msgstr "Ni mogoče določiti prostega prostora v %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Failed to write file %s" -msgstr "Zapisovanje datoteke %s je spodletelo" +msgid "You don't have enough free space in %s" +msgstr "Nimate dovolj prostora na %s" -#: apt-inst/dirstream.cc:105 +#. 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:891 #, c-format -msgid "Failed to close file %s" -msgstr "Napaka med zapiranjem datoteke %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#. 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:896 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "To ni veljaven arhiv DEB. Manjka član '%s'." +msgid "Need to get %sB of source archives.\n" +msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Notranja napaka. Ni mogoče najti člana %s." - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Nadzorne datoteke ni mogoče razčleniti" +msgid "Fetch source %s\n" +msgstr "Dobi vir %s\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Neveljaven podpis arhiva" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nekaterih arhivov ni mogoče pridobiti." -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Napaka med branjem glave člana arhiva" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Prejem je dokončan in uporabljen je način samo prejema" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Invalid archive member header %s" -msgstr "Neveljavna glava arhiva člana %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Neveljavna glava člana arhiva" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Odpakiranje že odpakiranih izvornih paketov v %s je bilo preskočeno\n" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arhiv je prekratek" +#: cmdline/apt-get.cc:962 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Ukaz odpakiranja '%s' ni uspel.\n" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Glav arhiva ni mogoče brati" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Ni mogoče ustvariti pip" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Ukaz gradnje '%s' ni uspel.\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Ni mogoče izvesti gzip " +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Podrejeno opravilo ni uspelo" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Pokvarjen arhiv" +#: cmdline/apt-get.cc:1029 +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" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Nadzorna vsota tar ni uspela, arhiv je pokvarjen" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Za %s ni bilo mogoče najti podatkov o arhitekturi. Za nastavitev si oglejte " +"apt.conf(5) APT::Architectures" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Neznana vrsta glave TAR %u, član %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Ni mogoče dobiti podrobnosti o odvisnostih za gradnjo za %s" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Unable to stat %s." -msgstr "Ni mogoče določiti %s." +msgid "%s has no build depends.\n" +msgstr "%s nima odvisnosti za gradnjo.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Progress: [%3i%%]" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" +"odvisnosti %s za %s ni mogoče zadovoljiti, ker %s ni dovoljen na paketih '%s'" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Poganjanje dpkg" +#: cmdline/apt-get.cc:1289 +#, 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" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketni sistem '%s' ni podprt" +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" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Ni mogoče določiti ustrezne vrste paketnega sistema" +#: cmdline/apt-get.cc:1351 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " +"%s ne more zadostiti zahtev različice" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Wrote %i records.\n" -msgstr "Zapisanih je bilo %i zapisov.\n" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " +"%s nima različice kandidata" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami.\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Ni mogoče zadostiti %s odvisnosti za %s: %s" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Zapisanih je bilo %i zapisov z %i neujemajočimi datotekami.\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Odvisnosti za gradnjo %s ni bilo mogoče zadostiti." -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Obdelava odvisnosti za gradnjo je spodletela" + +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgid "Changelog for %s (%s)" +msgstr "Dnevnik sprememb za %s (%s)" + +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Podprti moduli:" + +#: cmdline/apt-get.cc:1632 +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 "" +"Uporaba: apt-get [možnosti] ukaz\n" +" apt-get [možnosti] install|remove paket1 [paket2 ...]\n" +" apt-get [možnosti] source paket1 [paket2 ...]\n" +"\n" +"apt-get je enostaven vmesnik ukazne vrstice za prejem in nameščanje\n" +"paketov. Najbolj pogosto uporabljana ukaza sta update in install.\n" +"\n" +"Ukazi:\n" +" update - Pridobi nove sezname paketov\n" +" upgrade - Izvedix nadgradnjo\n" +" install - Namesti nove pakete (paket je libc6, ne libc6.deb)\n" +" remove - Odstrani pakete\n" +" autoremove - Samodejno odstrani vse neuporabljene pakete\n" +" purge - Odstrani pakete in nastavitvene datoteke\n" +" source - Prejmi arhive izvorne kode\n" +" build-dep - Nastavi odvisnosti gradnje za paket izvorne kode\n" +" dist-upgrade - Nadgradnja distribucije, oglejte si apt-get(8)\n" +" dselect-upgrade - Sledi izbiri dselect\n" +" clean - Izbriši prejete datoteke arhivov\n" +" autoclean - Izbriše stare prejete datoteke arhivov\n" +" check - Preveri, da ni pokvarjenih odvisnosti\n" +" changelog - Prejmi in prikaže dnevnik sprememb za dani paket\n" +" download - Prejmi binarni paket v trenutno mapo\n" +"\n" +"Možnosti:\n" +" -h To besedilo pomoči.\n" +" -q Izhod se beleži - brez kazalnika napredka\n" +" -qq Ni izhoda razen napak\n" +" -d Le prejmi - NE nameščaj ali odpakiraj arhivov\n" +" -s Ne naredi ničesar. Izvedi simulacijo ukaza\n" +" -y Predpostavi Da vsem poizvedbam in ne pozivaj\n" +" -f Poskusi popraviti sistem s pokvarjenimi odvisnostmi\n" +" -m Poskusi nadaljevati, če arhivov ni mogoče najti\n" +" -u Pokaži tudi seznam nadgrajenih paketov\n" +" -b Po pridobitvi izgradi izvorni paket\n" +" -V Pokaži podrobne številke različic\n" +" -c=? Preberi to nastavitveno datoteko\n" +" -o=? Nastavi poljubno nastavitveno možnost, na primer -o dir::cache=/tmp\n" +"Za več podrobnosti in možnosti si oglejte strani priročnikov apt-get(8),\n" +" sources.list(5) in apt.conf(5). \n" +" Ta APT ima moči super krav.\n" + +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami in %i " -"neujemajočimi datotekami.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Ni mogoče najti zapisa overitve za: %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "paket %s ne more biti označen, ker ni nameščen.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Neujemanje razpršila za: %s" +msgid "%s was already set to manually installed.\n" +msgstr "paket %s je bil že nastavljen na ročno nameščen.\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "The method driver %s could not be found." -msgstr "Gonilnika načinov %s ni mogoče najti." - -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" +msgid "%s was already set to automatically installed.\n" +msgstr "paket %s je bil že nastavljen kot samodejno nameščen.\n" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Method %s did not start correctly" -msgstr "Način %s se ni začel pravilno" +msgid "%s was already set on hold.\n" +msgstr "paket %s je bil že nastavljen kot na čakanju.\n" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Vstavite disk z oznako '%s' v pogon '%s' in pritisnite vnosno tipko." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Ni mogoče odprti ali razčleniti seznama paketov ali datoteke stanja." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Za odpravljanje težav poskusite zagnati apt-get update." - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Seznama virov ni mogoče brati." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Prazen predpomnilnik paketov" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Datoteka s predpomnilnikom paketov je pokvarjena" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Različica datoteke s predpomnilnikom paketov ni združljiva" - -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Datoteka predpomnilnika paketa je okvarjena. Je premajhna" +msgid "%s was already not hold.\n" +msgstr "paket %s je bil že nastavljen kot ne na čakanju.\n" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ta APT ne podpira sistema različic '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Predpomnilnik paketov je bil izgrajen za drugačno arhitekturo" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Odvisen od" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Predodvisen od" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Priporoča" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Priporoča" +msgid "%s set on hold.\n" +msgstr "paket %s je nastavljen kot na čakanju.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "V sporu z" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, c-format +msgid "Canceled hold on %s.\n" +msgstr "Čakanje za %s je bilo preklicano.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Zamenja" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Izvajanje dpkg je spodletelo. Ali ste skrbnik?" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zastara" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Uporaba: apt-mark [možnosti] {auto|manual} paket1 [paket2 ...]\n" +"\n" +"apt-mark je enostaven vmesnik ukazne vrstice za označevanje paketov\n" +"kot ročno ali samodejno nameščenih. Oznake lahko tudi izpiše.\n" +"\n" +"Ukazi:\n" +" auto - Označi dane pakete kot samodejno nameščene\n" +" manual - Označi dane pakete kot ročno nameščene\n" +"\n" +"Možnosti:\n" +" -h To besedilo pomoči.\n" +" -q Izhod se beleži - brez kazalnika napredka\n" +" -qq Brez izhoda razen napak\n" +" -s Ne naredi ničesar. Samo napiše kaj bi bilo narejeno.\n" +" -f Prebere/zapiše oznako ročno/samodejno za dano datoteko\n" +" -c=? Prebere to nastavitveno datoteko\n" +" -o=? Nastavi poljubno nastavitveno možnost, na primer -o dir::cache=/tmp\n" +"Za več podrobnosti si oglejte strani priročnika apt-mark(8) in apt-conf(5)." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Pokvari" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Izboljša" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Ni mogoče brati podatkovne zbirke %s na CD-ROM-u" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "pomembno" +#: 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 "" +"Uporabite apt-cdrom, če želite, da APT prepozna CD. apt-get update ne more " +"sam dodati novih CD-ROM-ov" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "obvezno" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Napačen CD-ROM" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "običajni" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Ni mogoče odklopiti CD-ROM-a v %s, ker je morda še v uporabi." -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "izbirno" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Diska ni mogoče najti." -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "dodatno" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Datoteke ni mogoče najti" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Vrsta datoteke s kazalom '%s' ni podprta" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Določitev ni uspela" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Predpomnilnik ima neustrezen sistem različic" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Nastavitev časa spremembe je spodletela" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Med obdelovanjem %s je prišlo do napake (%s%d)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Neveljaven URI. Krajevni URI-ji se morajo začeti z //" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Čestitamo, presegli ste število imen paketov, ki jih zmore APT." +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Prijavljanje" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Čestitamo, presegli ste število različic, ki jih zmore APT." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Ni mogoče ugotoviti imena gostitelja" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Čestitamo, presegli ste število opisov, ki jih je zmožen APT." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Ni mogoče določiti krajevnega imena" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Čestitamo, presegli ste število odvisnosti, ki jih zmore APT." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Strežnik je zavrnil povezavo in sporočil: %s" -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:225 #, 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" +msgid "USER failed, server said: %s" +msgstr "USER je spodletel, strežnik je odgovoril: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:232 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Ni mogoče določiti seznama izvornih paketov %s" +msgid "PASS failed, server said: %s" +msgstr "PASS je spodletel, strežnik je odgovoril: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Branje seznama paketov" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Naveden je bil posredniški strežnik, ne pa tudi prijavni skript. Acquire::" +"ftp::ProxyLogin je prazen." -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Zbiranje dobaviteljev datotek" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Ukaz prijavne skripte '%s' ni uspel, strežnik je odgovoril: %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:306 #, c-format -msgid "Unable to write to %s" -msgstr "Ni mogoče pisati na %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE je spodletel, strežnik je odgovoril: %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Napaka VI med shranjevanjem predpomnilnika virov" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Povezava je zakasnela" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Pošlji scenarij reševalniku" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Strežnik je zaprl povezavo" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Pošlji zahtevo reševalniku" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Odgovor je prekoračil predpomnilnik." -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Priprava za rešitev prejemanja" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Okvara protokola" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "Zunanji reševalnik je spodletel brez pravega sporočila o napakah" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Ni mogoče ustvariti vtiča" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Izvedi zunanji reševalnik" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Ni mogoče povezati podatkovnega vtiča. Povezava je zakasnela." -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "preimenovanje je spodletelo, %s (%s -> %s)." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Spodletelo" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Neujemanje vsote razpršil" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Ni mogoče povezat pasivnega vtiča." -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Neujemanje velikosti" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo ni mogel dobiti poslušajočega vtiča" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Neveljavno opravilo %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Ni mogoče povezati vtiča" -#: apt-pkg/acquire-item.cc:1581 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Ni mogoče najti pričakovanega vnosa '%s' v datoteki Release (napačen vnos " -"sources.list ali slabo oblikovana datoteka)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Ni mogoče poslušati na vtiču" -#: apt-pkg/acquire-item.cc:1597 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Ni mogoče najti vsote razprševanja za '%s' v datoteki Release" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Ni mogoče določiti imena vtiča" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Za naslednje ID-je ključa ni na voljo javnih ključev:\n" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Ni mogoče poslati ukaza PORT" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Datoteka Release za %s je potekla (neveljavna od %s). Posodobitev za to " -"skladišče ne bo uveljavljena." +msgid "Unknown address family %u (AF_*)" +msgstr "Neznan naslov družine %u (AF_*)" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:811 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)" +msgid "EPRT failed, server said: %s" +msgstr "EPRT ni uspel, strežnik je odgovoril: %s" -#: apt-pkg/acquire-item.cc:1729 -#, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Med preverjanjem podpisa je prišlo do napake. Skladišče ni bilo posodobljeno " -"zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Povezava podatkovne vtičnice je zakasnela" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "Napaka GPG: %s: %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Ni mogoče sprejeti povezave" -#: apt-pkg/acquire-item.cc:1867 -#, 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 "" -"Ni bilo mogoče najti datoteke za paket %s. Morda boste morali ročno " -"popraviti ta paket (zaradi manjkajočega arhiva)." +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Težava med razprševanjem datoteke" -#: apt-pkg/acquire-item.cc:1933 +#: methods/ftp.cc:890 #, 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'" +msgid "Unable to fetch file, server said '%s'" +msgstr "Ni mogoče pridobiti datoteke, strežnik je odgovoril '%s'" -#: apt-pkg/acquire-item.cc:1991 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket " -"%s." +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Podatkovna vtič je potekel" -#: apt-pkg/vendorlist.cc:85 +#: methods/ftp.cc:935 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Ponudnikov blok %s ne vsebuje prstnega podpisa" +msgid "Data transfer failed, server said '%s'" +msgstr "Prenos podatkov ni uspel, strežnik je odgovoril '%s'" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Mapa seznama %spartial manjka." +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Poizvedba" -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "Mapa arhivov %spartial manjka." +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Ni mogoče klicati " -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:76 #, c-format -msgid "Unable to lock directory %s" -msgstr "Mape %s ni mogoče zakleniti" +msgid "Connecting to %s (%s)" +msgstr "Povezovanje z %s (%s)" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:87 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Pridobivanje datoteke %li od %li (%s preostalo)" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:94 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Pridobivanje datoteke %li od %li" +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)" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Prejem nekaterih datotek kazala je spodletel. Bile so prezrte ali pa so bile " -"namesto njih uporabljene stare." +#: 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)." -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "V sources.list morate vstaviti URI-je z viri" +#: 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." -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:126 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" -"Vrednost '%s' je neveljavna za APT::Default-Release in zato takšna izdaja ni " -"na voljo v virih" +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:154 methods/rsh.cc:439 +#, c-format +msgid "Connecting to %s" +msgstr "Povezovanje z %s" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Neveljaven zapis v datoteki možnosti %s, ni glave paketa" +msgid "Could not resolve '%s'" +msgstr "Ni mogoče razrešiti '%s'" -#: apt-pkg/policy.cc:444 +#: methods/connect.cc:205 #, c-format -msgid "Did not understand pin type %s" -msgstr "Ni mogoče razumeti vrste bucike %s" +msgid "Temporary failure resolving '%s'" +msgstr "Začasna napaka med razreševanjem '%s'" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Prednost bucike ni navedena ali pa je nič." +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: 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:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Ni se mogoče povezati z %s:%s:" + +#: methods/gpgv.cc:168 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Ni mogoče izvesti takojąnje nastavitve na '%s'. Oglejte si man5 apt.conf pod " -"APT::Immediate-Configure za podrobnosti. (%d)" +"Notranja napaka: Dober podpis, toda ni mogoče določiti podpisa ključa?!" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Ni mogoče nastaviti '%s' " +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Najden je bil vsaj en neveljaven podpis." -#: apt-pkg/packagemanager.cc:583 +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Ni mogoče izvesti 'gpgv' za preverjanje podpisa (je gpgv nameščen?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, 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." +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Ta krog namestitve zahteva začasno odstranitev ključnega paketa %s zaradi " -"zanke spora/predodvisnosti. To je ponavadi slabo, toda če zares želite " -"nadaljevati, vključite možnost APT::Force-LoopBreak." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Vrstica %u v seznamu virov %s je predolga." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Neznana napaka med izvajanjem gpgv" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Odklapljanje CD-ROM-a ...\n" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Naslednji podpisi so bili neveljavni:\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Uporabljanje CD-ROM-ove priklopne točke %s\n" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Naslednjih podpisov ni mogoče preveriti, ker javni ključ ni na voljo:\n" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Čakanje na disk ...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Prazne datoteke ne morejo biti veljavni arhivi" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Priklapljanje CD-ROM-a ...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Napaka med pisanjem v datoteko" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificiranje ... " +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Napaka med branjem s strežnika. Oddaljeni del je zaprl povezavo" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Shranjena oznaka: %s\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Napaka med branjem s strežnika" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Preiskovanje diska za datoteke kazala ...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Napaka med pisanjem v datoteko" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Najdenih je bilo %zu kazal paketov, %zu kazal virov, %zu kazalov prevodov in " -"%zu podpisov\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Izbira ni uspela" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Nobenih datotek paketov ni mogoče najti, morda to ni disk Debian ali pa je " -"arhitektura napačna?" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Povezava je zakasnela" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Najdena je bila oznaka '%s'\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Napaka med pisanjem v izhodno datoteko" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "To ni veljavno ime, poskusite znova.\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Čakanje na glave" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Ta disk se imenuje: \n" -"'%s'\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Neveljavna vrstica glave" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopiranje seznama paketov ..." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Strežnik HTTP je poslal neveljavno glavo odgovora" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Pisanje novega seznama virov\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Strežnik HTTP je poslal glavo z neveljavno dolžino vsebine" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Izvorni vnosi za ta disk so:\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Strežnik HTTP je poslal glavo z neveljavnim obsegom vsebine" -#: apt-pkg/algorithms.cc:265 -#, c-format -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." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ta strežnik HTTP ima pokvarjen obseg podpore" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Napaka. pkgProblemResolver::Resolve pri razrešitvi, ki so jih morda " -"povzročili zadržani paketi." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Neznana oblika datuma" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Ni mogoče popraviti težav. Imate pokvarjene pakete." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Napačni podatki glave" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Gradnja drevesa odvisnosti" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Povezava ni uspela" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Različice kandidatov" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Notranja napaka" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Ustvarjanje odvisnosti" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Preračunavanje nadgradnje ... " -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Branje podatkov o stanju" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Opravljeno" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Odpiranje DatotekeStanja %s je spodletelo" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" + +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Pisanje začasne DatotekeStanja %s je spodletelo" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Popravljanje odvisnosti ..." + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " spodletelo." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Ni mogoče razčleniti datoteke paketa %s (1)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ni mogoče popraviti odvisnosti" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Ni mogoče razčleniti datoteke paketa %s (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Ni mogoče pomanjšati zbirke za nadgradnjo" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Izdaje '%s' za '%s' ni mogoče najti" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Opravljeno" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Različice '%s' za '%s' ni mogoče najti" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Če želite popraviti napake, poskusite pognati 'apt-get -f install'." -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Ni mogoče najti naloge '%s'" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nerešene odvisnosti. Poskusite uporabiti -f." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +msgid "[installed,upgradable to: %s]" +msgstr " [Nameščeno]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Ni mogoče izbrati različic in paketa '%s', saj je popolnoma navidezen" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Nameščeno]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Ni mogoče izbrati nameščene različice ali različice kandidata iz paketa " -"'%s', saj nima nobenega od njiju" -#: apt-pkg/cacheset.cc:647 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Nameščeno]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Nameščeno]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +msgid "[upgradable from: %s]" msgstr "" -"Ni mogoče izbrati najnovejše različice iz paketa '%s', saj je popolnoma " -"navidezen" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "Ni mogoče izbrati različice kandidata iz paketa %s, ker nima kandidata" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "Ni mogoče izbrati nameščene različice iz paketa %s, saj ni nameščen" +msgid "but %s is installed" +msgstr "vendar je paket %s nameščen" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:437 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Ni mogoče razčleniti Release datoteke %s" +msgid "but %s is to be installed" +msgstr "vendar bo paket %s nameščen" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Ni izbir v Release datoteki %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "vendar se ga ne da namestiti" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Ni vnosa razpršila v Release datoteki %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "vendar je navidezen paket" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Neveljaven vnos 'Veljavno-do' v Release datoteki %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "vendar ni nameščen" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Neveljavne vnos 'Datum' v Release datoteki %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "vendar ne bo nameščen" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ali" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Slabo oblikovana vrstica %lu na seznamu virov %s ([možnosti] ni mogoče " -"razčleniti)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Naslednji paketi imajo nerešene odvisnosti:" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([možnost] prekratka)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Naslednji NOVI paketi bodo nameščeni:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Slabo oblikovana vrstica %lu na seznamu vrstic %s ([%s] ni dodelitev)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Naslednji novi paketi bodo ODSTRANJENI:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] nima ključa)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Naslednji paketi so bili zadržani:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] ključ %s nima " -"vrednosti)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Naslednji paketi bodo nadgrajeni:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (URI)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Naslednji paketi bodo POSTARANI:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (distribucija)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Naslednji zadržani paketi bodo spremenjeni:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" +msgid "%s (due to %s) " +msgstr "%s (zaradi %s) " -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Slabo oblikovana vrstica %lu v seznamu virov %s (absolutna distribucija)" +"OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n" +"Tega NE storite, razen če ne veste natanko kaj počenjate!" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev distribucije)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu nadgrajenih, %lu na novo nameščenih, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:711 #, c-format -msgid "Opening %s" -msgstr "Odpiranje %s" +msgid "%lu reinstalled, " +msgstr "%lu posodobljenih, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Slabo oblikovana vrstica %u v seznamu virov %s (vrsta)" +msgid "%lu downgraded, " +msgstr "%lu postaranih, " -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:715 #, 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" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-output.cc:719 #, c-format -msgid "Installing %s" -msgstr "Nameščanje %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ne popolnoma nameščenih ali odstranjenih.\n" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Nastavljanje %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Odstranjevanje %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Ukaz update ne sprejema argumentov" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Completely removing %s" -msgstr "%s je bil popolnoma odstranjen" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "%s je izginil" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Poganjanje sprožilca po namestitvi %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Mapa '%s' manjka" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Ni mogoče odpreti datoteke '%s'" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Notranja napaka, NamestiPakete je bil klican z pokvarjenimi paketi!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Pripravljanje %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Odstraniti je treba pakete, a je odstranjevanje onemogočeno." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Razširjanje %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Notranja napaka, Urejanje se ni končalo" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Pripravljanje na nastavljanje %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Kako čudno ... Velikosti se ne ujemata, pošljite sporočilo na apt@packages." +"debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s je bil nameščen" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Potrebno je dobiti %sB/%sB arhivov.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Pripravljanje na odstranitev %s" +msgid "Need to get %sB of archives.\n" +msgstr "Potrebno je dobiti %sB arhivov.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s je bil odstranjen" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po tem opravilu bo porabljenega %sB dodatnega prostora.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Pripravljanje na popolno odstranitev %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po tem opravilu bo sproščenega %sB prostora na disku.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s je bil popolnoma odstranjen" +msgid "You don't have enough free space in %s." +msgstr "Na %s je premalo prostora." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Prišlo je do težav in -y je bil uporabljen brez --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Ni mogoče pisati na %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Navedena je možnost Samo preprosto, a to opravilo ni preprosto." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Da, naredi tako kot pravim!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Naredili boste nekaj, kar je morda lahko škodljivo.\n" +"Za nadaljevanje vtipkajte frazo '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Opravilo je bilo prekinjeno preden se je lahko končalo" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Prekini." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Poročilo apport ni bilo napisano, ker je bilo število MaxReports že doseženo" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Ali želite nadaljevati?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "težave odvisnosti - puščanje nenastavljenega" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Prejem nekaterih datotek ni uspel" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na " -"navezujočo napako iz predhodne napake." +"Nekaterih arhivov ni mogoče dobiti. Poskusite uporabiti apt-get update ali --" +"fix-missing." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " -"polnega diska" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing in izmenjava medija trenutno nista podprta" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " -"zaradi pomanjkanja pomnilnika" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Ni mogoče popraviti manjkajočih paketov." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Prekinjanje namestitve." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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] "" +"Naslednji paketi so izginili z vašega sistema, ker so vse\n" +"datoteke prepisali drugi paketi:" +msgstr[1] "" +"Naslednji paketi je izginil z vašega sistema, ker so vse\n" +"datoteke prepisali drugi paketi:" +msgstr[2] "" +"Naslednja paketa sta izginila z vašega sistema, ker so vse\n" +"datoteke prepisali drugi paketi:" +msgstr[3] "" +"Naslednji paketi so izginili z vašega sistema, ker so vse\n" +"datoteke prepisali drugi paketi:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Opomba: To je dpkg storil samodejno in namenoma." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Poročilo apport je bilo napisano, ker sporočilo o napaki nakazuje na težavo " -"na krajevnem sistemu" +"Program ne bi smel brisati stvari, ni mogoče zagnati " +"SamodejnegaOdstranjevalnika" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " -"dpkg V/I" +"Videti je, da je SamodejniOdstranjevalnik nekaj uničil, kar se ne bi smelo " +"zgoditi\n" +"Pošljite poročilo o hrošču v apt." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Naslednji podatki vam bodo morda pomagali rešiti težavo:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Skrbniške mape (%s) ni mogoče zakleniti. Jo morda uporablja drugo opravilo?" +"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] "Naslednji paketi so bili samodejno nameščeni in niso več zahtevani:" +msgstr[1] "Naslednji paket je bil samodejno nameščen in ni več zahtevan:" +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:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Skrbniške mape (%s) ni mogoče zakleniti. Ali ste skrbnik?" +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 paketov je bilo samodejno nameščenih in niso več zahtevani.\n" +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" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +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." +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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Poskusite zagnati 'apt-get -f install', če želite popraviti naslednje:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg je bil prekinjen. Za popravilo napake morate ročno pognati '%s'. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Nerešene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " +"navedite rešitev)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Ni zaklenjeno" +#: apt-private/private-install.cc:638 +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 "" +"Nekaterih paketov ni mogoče namestiti. To lahko pomeni, da ste zahtevali\n" +"nemogoč položaj, če uporabljate nestabilno izdajo pa\n" +", da nekateri zahtevani paketi še niso ustvarjeni ali premaknjeni\n" +" iz Prihajajočega." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pokvarjeni paketi" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Naslednji dodatni paketi bodo nameščeni:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Predlagani paketi:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Priporočeni paketi:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Izbire %s ni mogoče najti" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s je preskočen, ker je že nameščen in ne potrebuje nadgradnje.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko le za branje %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Preskok %s, ni nameščen in zahtevane so le nadgradnje\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Ni mogoče odprti zaklenjene datoteke %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Ponovna namestitev %s ni možna, ker prejem ni možen.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS" +msgid "%s is already the newest version.\n" +msgstr "Najnovejša različica %s je že nameščena.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Ni mogoče zakleniti datoteke %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Izbrana različica '%s' (%s) za '%s'\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Seznama datotek ni mogoče ustvariti, ker '%s' ni mapa" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Izbrana različica '%s' (%s) za '%s' namesto '%s'\n" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Preziranje '%s' v mapi '%s', ker ni običajna datoteka" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Paket '%s' ni nameščen, zato ni bil odstranjen. Ali ste mislili '%s'?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Preziranje datoteke '%s' v mapi '%s', ker nima pripone imena datotek" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Paket '%s' ni nameščen, zato ni bil odstranjen\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"Preziranje datoteke '%s' v mapi '%s', ker nima veljavne pripone imena datotek" +"OPOMBA: To je samo simulacija!\n" +" apt-get za pravo izvajanje potrebuje privilegije skrbnika.\n" +" Zaklepanje je onemogočeno, zato se ne zanašajte\n" +" na pomembnost trenutnega pravega stanja!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Pod-opravilo %s je prejelo segmentacijsko napako." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "POZOR: Naslednjih paketov ni bilo mogoče overiti!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Pod-opravilo %s je prejelo signal %u." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Opozorilo overitve je bilo prepisano.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Pod-opravilo %s je vrnilo kodo napake (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nekaterih paketkov bi bilo mogoče overiti" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Pod-opravilo %s se je nepričakovano zaključilo" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Ali želite te pakete namestiti brez preverjanja?" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Težava med zapiranjem gzip datoteke %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Ni mogoče preimenovati %s v %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Ni mogoče odpreti datoteke %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Ni mogoče odpreti opisnika datotek %d" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Ni mogoče ustvariti podopravila IPD" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Zadetek " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Ni mogoče izvesti stiskanja " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Dobi:" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "Prebrano, še vedno je treba prebrati %llu bajtov, vendar ni nič ostalo" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Prezr " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "pisanje, preostalo je še %llu za pisanje, vendar ni bilo mogoče pisati" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Nap " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the file %s" -msgstr "Težava med zapiranjem datoteke %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Pridobljenih %sB v %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Težava med preimenovanje datoteke %s v %s" +msgid " [Working]" +msgstr " [Delo]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Težava med razvezovanjem datoteke %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Težava med usklajevanjem datoteke" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Sprememba medija: vstavite disk z oznako\n" +" '%s'\n" +"v enoto '%s' in pritisnite vnosno tipko\n" -#: apt-pkg/contrib/progress.cc:148 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s ... Napaka!" +msgid "No mirror file '%s' found " +msgstr "Datoteke zrcalnih strežnikov '%s' ni mogoče najti " -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... Done" -msgstr "%c%s ... Narejeno" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "Can not read mirror file '%s'" +msgstr "Datoteke zrcalnega strežnika '%s' ni mogoče prebrati" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s ... Narejeno" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "mmap prazne datoteke ni mogoč" +msgid "No entry found in mirror file '%s'" +msgstr "Datoteke zrcalnega strežnika '%s' ni mogoče prebrati" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Ni mogoče podvojiti opisnika datotek %i" +msgid "[Mirror: %s]" +msgstr "[Zrcalni strežnik: %s]" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Ni mogoče narediti mmap %llu bajtov" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Ustvarjanje cevi IPC do podopravila je spodletelo" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Ni mogoče zapreti mmap" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Povezava se je prezgodaj zaprla" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Ni mogoče uskladiti mmap" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Napačna privzeta nastavitev!" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Ni mogoče narediti mmap %lu bajtov" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Za nadaljevanje pritisnite vnosno tipko." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Ni mogoče obrezati datoteke" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Ali želite izbrisati vse predhodno prejete datoteke .deb?" -#: 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)" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Dinamičnemu MMap je zmanjkalo prostora. Povečajte velikost APT::Cache-Start. " -"Trenutna vrednost: %lu. (man 5 apt.conf)" +"Med razširajanjem je prišlo do nekaterih napak. Paketi, ki so bili nameščeni" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "bodo bili nastavljeni. To lahko povzroči podvojene napake" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Ni mogoče povečati velikosti MMap, ker je omejitev %lu bajtov že dosežena." +"ali do napak zaradi manjkajočih odvisnosti. To je v redu, pomembne so samo " +"napake" -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Ni mogoče povečati velikosti MMap, ker je samodejno povečevanje onemogočeno." +"above this message are important. Please fix them and run [I]nstall again" +msgstr "nad tem sporočilom. Popravite jih in poženite Namest[I]tev še enkrat" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Ni mogoče določiti priklopne točke %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Združevanje razpoložljivih podaktov" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Ni mogoče določiti CD-ROM-a" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode je poklical stabilno povezano vozlišče" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Neprepoznana vrsta okrajšave: '%c'" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Ni mogoče najti razpršenega elementa!" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Odpiranje nastavitvene datoteke %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Ni mogoče dodeliti odklona" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Notranja napaka v AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Skladenjska napaka %s:%u: Blok se začne brez imena." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Poskus prepisovanja odklona, %s -> %s in %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Skladenjska napaka %s:%u: Slabo oblikovana oznaka." +msgid "Double add of diversion %s -> %s" +msgstr "Dvojni seštevek odklona %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Skladenjska napaka %s:%u: Dodatna krama za vrednostjo." +msgid "Duplicate conf file %s/%s" +msgstr "Dvojnik datoteke z nastavitvami %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnji ravni." +msgid "The path %s is too long" +msgstr "Pot %s je predolga" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Skladenjska napaka %s:%u: Preveč vgnezdenih vključitev" +msgid "Unpacking %s more than once" +msgstr "Odpakiranje %s več kot enkrat" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Skladenjska napaka %s:%u: Vključeno od tu" +msgid "The directory %s is diverted" +msgstr "Mapa %s je odklonjena" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Pot odklona je predloga" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Skladenjska napaka %s:%u: počisti ukaz zahteva drevo možnosti kot argument" +msgid "Failed to stat %s" +msgstr "Napaka med določitvijo %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Skladenjska napaka %s:%u: Dodatna krama na koncu datoteke" +msgid "Failed to rename %s to %s" +msgstr "Ni mogoče preimenovati %s v %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "V %s ni nameščenih zbirk ključev." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Mapa %s je bil zamenjana z ne-mapo" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Iskanje vozlišča v njegovem razpršenem vedru ni uspelo" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Pot je predolga" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Možnost ukazne vrstice '%c' [iz %s] ni poznana." +msgid "Overwrite package match with no version for %s" +msgstr "Prepiši zadetek paketa brez vnosa različice za %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Možnosti ukazne vrstice %s ni mogoče razumeti" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Možnost ukazne vrstice %s ni boolova vrednost" +msgid "Unable to stat %s" +msgstr "Ni mogoče določiti %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Možnost %s zahteva argument." +msgid "Failed to write file %s" +msgstr "Zapisovanje datoteke %s je spodletelo" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Možnost %s: Določilo predmeta nastavitve zahtevajo =<val>." +msgid "Failed to close file %s" +msgstr "Napaka med zapiranjem datoteke %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Možnost %s zahteva celoštevilski argument, ne '%s'" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "To ni veljaven arhiv DEB. Manjka član '%s'." -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Možnost '%s' je predolga" +msgid "Internal error, could not locate member %s" +msgstr "Notranja napaka. Ni mogoče najti člana %s." -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Nadzorne datoteke ni mogoče razčleniti" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Neveljaven podpis arhiva" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Napaka med branjem glave člana arhiva" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Pomena %s ni mogoče razumeti, poskusite pravilno ali napačno." +msgid "Invalid archive member header %s" +msgstr "Neveljavna glava arhiva člana %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Neveljavna glava člana arhiva" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arhiv je prekratek" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Glav arhiva ni mogoče brati" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Ni mogoče ustvariti pip" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Ni mogoče izvesti gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Pokvarjen arhiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Nadzorna vsota tar ni uspela, arhiv je pokvarjen" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Neveljavno opravilo %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Neznana vrsta glave TAR %u, član %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3581,7 +3585,7 @@ msgstr "Med računanjem MD5 ni mogoče brati" msgid "Problem unlinking %s" msgstr "Napaka med odvezovanjem %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3635,6 +3639,10 @@ msgstr "" " -c=? Prebere podano datoteko z nastavitvami\n" " -o=? Nastavi poljubno nastavitveno možnost, npr. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Notranja napaka zaradi AllUpgrade." + #~ msgid "%s not a valid DEB package." #~ msgstr "%s ni veljaven paket DEB." diff --git a/po/sv.po b/po/sv.po index a66c9ec08..7c17016a0 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Language-Team: Swedish <debian-l10n-swedish@debian.org>\n" @@ -19,3213 +19,3217 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indexfiler av typ \"%s\" stöds inte" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" +msgid "Unable to read %s" +msgstr "Kunde inte läsa %s" + +# Felmeddelande för misslyckad chdir +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Kunde inte byta till %s" + +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Kunde inte ta status på %s." + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -"Paketet %s med version %s har ett beroende som inte kan tillfredsställas:\n" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Totalt antal paketnamn: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Kör dpkg" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Totala paketstrukturer: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Paketsystemet \"%s\" stöds inte" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Vanliga paket: " +# +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Kunde inte fastställa en lämplig paketsystemstyp" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Helt virtuella paket: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Skrev %i poster.\n" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Enstaka virtuella paket: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Skrev %i poster med %i saknade filer.\n" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Blandade virtuella paket: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Skrev %i poster med %i filer som inte stämmer\n" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Saknade: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Totalt antal olika versioner: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Kan inte hitta autentiseringspost för: %s" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Totalt antal olika beskrivningar: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash-kontrollsumman stämmer inte för: %s" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Totalt antal beroenden: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Metoddrivrutinen %s kunde inte hittas." -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Totalt antal version/filrelationer: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Totalt antal beskrivning/filrelationer: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Metoden %s startade inte korrekt" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Totalt antal tillhandahållningsmarkeringar: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Mata in skivan med etiketten \"%s\" i enheten \"%s\" och tryck på Enter." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Totalt antal sökmönstersträngar: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Paketlistan eller statusfilen kunde inte tolkas eller öppnas." -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Totalt utrymme för versionsberoenden: " +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Du kan möjligen rätta till problemet genom att köra \"apt-get update\"" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Totalt bortkastat utrymme: " +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Listan över källor kunde inte läsas." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Totalt utrymme som kan redogöras för: " +# Felmeddelande +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Paketcachen är tom" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Paketcachefilen är skadad" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Paketcachefilens version är inkompatibel" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Paketcachefilen är skadad" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Package file %s is out of sync." -msgstr "Paketfilen %s är inte synkroniserad." +msgid "This APT does not support the versioning system '%s'" +msgstr "Denna APT saknar stöd för versionssystemet \"%s\"" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Inga paket hittades" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Paketcachen byggdes för en annan arkitektur" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Du måste ange minst ett sökmönster" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Beroende av" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Förberoende av" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 -#, c-format -msgid "Unable to locate package %s" -msgstr "Kunde inte hitta paketet %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Föreslår" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "\"Package\"-filer:" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Rekommenderar" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Cachen är inte synkroniserad, kan inte korsreferera en paketfil" +# "Konfliktar"? +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Står i konflikt med" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Fastnålade paket:" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Ersätter" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(hittades inte)" +# "Föråldrar"? +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Föråldrar" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installerad: " +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Gör sönder" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Utökar" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "viktigt" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketnålning: " +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "nödvändigt" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versionstabell:" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s för %s kompilerad den %s %s\n" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "valfri" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Användning: apt-cache [flaggor] kommando\n" -" apt-cache [flaggor] add fil1 [fil2 ...]\n" -" apt-cache [flaggor] showpkg paket1 [paket2 ...]\n" -" apt-cache [flaggor] showsrc paket1 [paket2 ...]\n" -"\n" -"apt-cache är ett lågnivåverktyg för att hantera APTs binära cachefiler\n" -"samt hämta information från dem\n" -"\n" -"Kommandon:\n" -" add - Lägg till en paketfil till källcachen\n" -" gencaches - Bygg både paket- och källcache\n" -" showpkg - Visa viss allmän information om ett enskilt paket\n" -" showsrc - Visa källkodsposter\n" -" stats - Visa viss grundläggande statistik\n" -" dump - Visa hela filen i koncis form\n" -" dumpavail - Skriv en \"available\"-fil på standard ut\n" -" unmet - Visa otillfredsställbara beroenden\n" -" search - Sök i paketlistan med ett reguljärt uttryck\n" -" show - Visa en läsbar post för paketet\n" -" showauto - Visa en lista över automatiskt installerade paket\n" -" depends - Visa rå information om beroenden för ett paket\n" -" rdepends - Visa information om omvända beroenden för ett paket\n" -" pkgnames - Lista namnen på alla paket i systemet\n" -" dotty - Generera paketdiagram för GraphViz\n" -" xvcg - Generera paketdiagram för xvcg\n" -" policy - Visa policyinställningar\n" -"\n" -"Flaggor:\n" -" -h Denna hjälptext.\n" -" -p=? Paketcachen.\n" -" -s=? Källcachen.\n" -" -q Inaktivera förloppsindikatorn.\n" -" -i Visa endast viktiga beroenden för \"unmet\"-kommandot.\n" -" -c=? Läs denna konfigurationsfil.\n" -" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -"Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 5.0.3 Disk 1\"" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Mata in en skiva i enheten och tryck på Enter" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Indexfiler av typ \"%s\" stöds inte" -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Misslyckades med att montera \"%s\" till \"%s\"" +msgid "Regex compilation error - %s" +msgstr "Fel vid kompilering av reguljärt uttryck - %s" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Cachen har ett inkompatibelt versionssystem" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Upprepa proceduren för resten av cd-skivorna i din uppsättning." +# NewPackage etc. är funktionsnamn +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Fel uppstod vid hantering av %s (FindPkg)" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenten gavs inte parvis" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Grattis, du överskred antalet paketnamn som denna APT kan hantera." -#: cmdline/apt-config.cc:89 -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 "" -"Användning: apt-config [flaggor] kommando\n" -"\n" -"apt-config är ett enkelt verktyg för att läsa APTs konfigurationsfil\n" -"\n" -"Kommandon:\n" -" shell - Skalläge.\n" -" dump - Visa konfigurationen.\n" -"\n" -"Flaggor:\n" -" -h Denna hjälptext.\n" -" -c=? Läs denna konfigurationsfil.\n" -" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Grattis, du överskred antalet versioner som denna APT kan hantera." -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Grattis, du överskred antalet beskrivningar som denna APT kan hantera." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Paketet %s %s hittades inte när filberoenden hanterades" -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:1211 #, 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" +msgid "Couldn't stat source package list %s" +msgstr "Kunde inte ta status på källkodspaketlistan %s" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorera otillgängliga versionen \"%s\" av paketet \"%s\"" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Läser paketlistor" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Kunde inte hitta paketet %s" +# Bättre ord? +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Samlar filtillhandahållningar" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s är satt till manuellt installerad.\n" +msgid "Unable to write to %s" +msgstr "Kunde inte skriva till %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s är satt till automatiskt installerad.\n" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "In-/utfel vid lagring av källcache" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Internt fel, problemlösaren förstörde någonting" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Kunde inte låsa hämtningskatalogen" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:726 -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" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Kunde inte hitta något källkodspaket för %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "namnbyte misslyckades, %s (%s -> %s)." -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash-kontrollsumman stämmer inte" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Storleken stämmer inte" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Felaktig åtgärd %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"OBSERVERA: paketering av \"%s\" hanteras i versionshanteringssystemet \"%s\" " -"på:\n" -"%s\n" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Kunde inte tolka \"Release\"-filen %s" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Det finns ingen öppen nyckel tillgänglig för följande nyckel-id:n:\n" + +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Använd:\n" -"bzr get %s\n" -"för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Hoppar över redan hämtade filen \"%s\"\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kunde inte fastställa ledigt utrymme i %s" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Ett fel inträffade vid verifiering av signaturen. Förrådet har inte " +"uppdaterats och de tidigare indexfilerna kommer att användas. GPG-fel: %s: " +"%s\n" -#: cmdline/apt-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" +msgid "GPG error: %s: %s" +msgstr "GPG-fel: %s: %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:891 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n" +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 "" +"Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du " +"manuellt måste reparera detta paket (på grund av saknad arkitektur)." -#. 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:896 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Behöver hämta %sB källkodsarkiv.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Fetch source %s\n" -msgstr "Hämtar källkoden %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Misslyckades med att hämta vissa arkiv." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Hämtningen färdig i \"endast-hämta\"-läge" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Paketindexfilerna är skadede. Inget \"Filename:\"-fält för paketet %s." -#: cmdline/apt-get.cc:950 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Packar inte upp redan uppackad källkod i %s\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Leverantörsblocket %s saknar fingeravtryck" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Uppackningskommandot \"%s\" misslyckades.\n" +msgid "List directory %spartial is missing." +msgstr "Listkatalogen %spartial saknas." -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:91 #, 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" +msgid "Archives directory %spartial is missing." +msgstr "Arkivkatalogen %spartial saknas." -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Byggkommandot \"%s\" misslyckades.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barnprocessen misslyckades" - -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Du måste ange minst ett paket att kontrollera byggberoenden för" +msgid "Unable to lock directory %s" +msgstr "Kunde inte låsa katalogen %s" -#: cmdline/apt-get.cc:1054 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Hämtar fil %li av %li (%s återstår)" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Kunde inte hämta information om byggberoenden för %s" +msgid "Retrieving file %li of %li" +msgstr "Hämtar fil %li av %li" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s har inga byggberoenden.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Misslyckades med att hämta %s %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " -"hittas" +"Vissa indexfiler kunde inte hämtas, de har ignorerats eller så har de gamla " +"använts istället." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Du måste lägga till några \"source\"-URI:er i din sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " -"hittas" -#: cmdline/apt-get.cc:1312 +# "Package" är en sträng i konfigurationsfilen +#: apt-pkg/policy.cc:422 #, 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" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ogiltig post i konfigurationsfilen %s, \"Package\"-rubriken saknas" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Förstod inte nåltypen %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Prioritet ej angiven (eller noll) för nål" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga " -"versioner av paketet %s tillfredsställer versionskraven" +"Kunde inte genomföra omedelbar konfiguration på \"%s\". Se man 5 apt.conf " +"under APT::Immediate-Configure för information. (%d)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Kunde inte öppna filen \"%s\"" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " -"hittas" +"För att genomföra installationen måste det systemkritiska paketet %s " +"tillfälligt tas bort på grund av en beroendespiral i Conflicts/Pre-Depends. " +"Detta är oftast en dålig idé, men om du verkligen vill göra det kan du " +"aktivera flaggan \"APT::Force-LoopBreak\"." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Rad %u är för lång i källistan %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterar CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Byggberoenden för %s kunde inte tillfredsställas." +msgid "Using CD-ROM mount point %s\n" +msgstr "Använder cd-rom-monteringspunkten %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Misslyckades med att behandla byggberoenden" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Väntar på skiva...\n" -# Felmeddelande för misslyckad chdir -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Ansluter till %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterar cd-rom...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Moduler som stöds:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifierar... " -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Lagrad etikett: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Söker efter indexfiler på skivan...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"Användning: apt-get [flaggor] kommando\n" -" apt-get [flaggor] install|remove paket1 [paket2 ...]\n" -" apt-get [flaggor] source paket1 [paket2 ...]\n" -"\n" -"apt-get är ett enkelt kommandoradsgränssnitt för att hämta och installera\n" -"paket. De mest använda kommandona är \"update\" och \"install\".\n" -"\n" -"Kommandon:\n" -" update - Hämta nya paketlistor\n" -" upgrade - Genomför en uppgradering\n" -" install - Installera nya paket (paket är libc6, inte libc6.deb)\n" -" remove - Ta bort paket\n" -" autoremove - Ta automatiskt bort alla oanvända paket\n" -" purge - Ta bort paket och konfigurationsfiler\n" -" source - Hämta källkodsarkiv\n" -" build-dep - Tillfredsställ byggberoenden för källkodspaket\n" -" dist-upgrade - Uppgradering av distributionen, se apt-get(8)\n" -" dselect-upgrade - Följ valen från dselect\n" -" clean - Ta bort hämtade arkivfiler\n" -" autoclean - Ta bort gamla hämtade arkivfiler\n" -" check - Kontrollera att det inte finns några trasiga beroenden\n" -" markauto - Markera angivna paket som automatiskt installerade\n" -" unmarkauto - Markera angivna paket som manuellt installerade\n" -"\n" -"Flaggor:\n" -" -h Denna hjälptext.\n" -" -q Utdata lämplig för loggar - ingen förloppsindikator.\n" -" -qq Ingen utdata förutom vid fel.\n" -" -d Bara hämta - VARKEN installera eller packa upp arkiven.\n" -" -s Gör ingenting, simulera vad som skulle hända.\n" -" -y Antag ja på alla frågor utan att fråga.\n" -" -f Försök rätta ett system med otillfredsställda beroenden.\n" -" -m Försök fortsätta även om arkiven inte kan hittas.\n" -" -u Visa även en lista över uppgraderade paket.\n" -" -b Bygg källkodspaketet när det hämtats.\n" -" -V Visa pratsamma versionsnummer.\n" -" -c=? Läs denna konfigurationsfil.\n" -" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -"Se manualsidorna för apt-get(8), sources.list(5) och apt.conf(5)\n" -"för mer information och flaggor.\n" -" Denna APT har Speciella Ko-Krafter.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Du måste ange minst ett paket att hämta källkod för" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Hittade %zu paketindex, %zu källkodsindex, %zu översättningsindex och %zu " +"signaturer\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Kunde inte hitta några paketfiler. Detta är kanske inte en Debian-skiva " +"eller felaktig arkitektur?" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "men det är inte installerat" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s är satt till manuellt installerad.\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s är satt till automatiskt installerad.\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s är redan den senaste versionen.\n" - -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s är redan den senaste versionen.\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Väntade på %s men den fanns inte där" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s är satt till manuellt installerad.\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Misslyckades med att öppna %s" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" - -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" +msgid "Found label '%s'\n" +msgstr "Hittade etiketten \"%s\"\n" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Namnet är ogiltigt, försök igen.\n" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Kunde inte läsa cd-rom-databasen %s" - -#: 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" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Använd apt-cdrom för att APT ska känna igen denna cd. apt-get update kan " -"inte användas för att lägga till skivor" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Fel cd-rom" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Kunde inte avmontera cd-rom:en i %s, den kanske fortfarande används." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Skivan hittades inte." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Filen hittades inte" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Kunde inte ta status" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Misslyckades ställa in ändringstid" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ogiltig URI, lokala URI:er får inte börja med //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Loggar in" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Kunde inte fastställa namnet på partnern" +"Denna skiva heter: \n" +"\"%s\"\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Kunde inte fastställa det lokala namnet" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierar paketlistor..." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Servern nekade anslutningen och sade: %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriver ny källista\n" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "USER misslyckades, servern sade: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Poster i källistan för denna skiva:\n" -#: methods/ftp.cc:232 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS misslyckades, servern sade: %s" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"En mellanserver (proxy) angavs men inget inloggningsskript, Acquire::ftp::" -"ProxyLogin är tom." - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s" - -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE misslyckades, servern sade: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Tidsgränsen för anslutningen överskreds" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Servern stängde anslutningen" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Läsfel" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Ett svar spillde bufferten." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokollet skadat" - -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Skrivfel" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Kunde inte skapa ett uttag (socket)" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns" +"Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det." -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Misslyckades" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på " +"tillbakahållna paket." -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Kunde inte ansluta passivt uttag (socket)." +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Kunde inte korrigera problemen, du har hållit tillbaka trasiga paket." -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo kunde inte få tag i ett lyssnande uttag (socket)" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Bygger beroendeträd" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Kunde inte binda ett uttag (socket)" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandiderande versioner" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Kunde inte lyssna på uttaget (socket)" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Beroendegenerering" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Kunde inte fastställa uttagets namn (socket)" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Läser tillståndsinformation" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Kunde inte sända PORT-kommando" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Misslyckades med att öppna StateFile %s" -#: methods/ftp.cc:802 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Okänd adressfamilj %u (AF_*)" +msgid "Failed to write temporary StateFile %s" +msgstr "Misslyckades med att skriva temporär StateFile %s" -#: methods/ftp.cc:811 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT misslyckades, servern sade: %s" +msgid "Unable to parse package file %s (1)" +msgstr "Kunde inte tolka paketfilen %s (1)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Kunde inte tolka paketfilen %s (2)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Kunde inte ta emot anslutningen" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Utgåvan \"%s\" för \"%s\" hittades inte" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem med att lägga filen till hashtabellen" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Version \"%s\" för \"%s\" hittades inte" -#: methods/ftp.cc:890 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Kunde inte hämta filen, servern sade \"%s\"" +msgid "Unable to locate package %s" +msgstr "Kunde inte hitta paketet %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datauttag (socket) fick inte svar inom tidsgränsen" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Kunde inte hitta funktionen \"%s\"" -#: methods/ftp.cc:935 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataöverföringen misslyckades, servern sade \"%s\"" +msgid "Couldn't find any package by regex '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -# Statusmeddelande, byter från substantiv till verb -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Frågar" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Kunde inte starta " +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Kan inte välja versioner från paketet \"%s\" eftersom det är helt virtuellt" -# Felmeddelande för misslyckad chdir -#: methods/connect.cc:76 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Ansluter till %s (%s)" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Kan inte välja installerad version eller kandidatversion från paketet \"%s\" " +"eftersom det inte har någon av dem" -#: methods/connect.cc:87 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Kan inte välja senaste version från paketet \"%s\" eftersom det är helt " +"virtuellt" -# [f]amilj, [t]yp, [p]rotokoll -#: methods/connect.cc:94 +#: apt-pkg/cacheset.cc:655 #, 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)" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Kan inte välja kandidatversion från paketet %s eftersom det inte har någon " +"kandidat" -#: methods/connect.cc:100 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kunde inte initiera anslutningen till %s:%s (%s)." +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Kan inte välja installerad version från paketet %s eftersom det inte är " +"installerat" -#: methods/connect.cc:108 +#: apt-pkg/indexrecords.cc:78 #, 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" +msgid "Unable to parse Release file %s" +msgstr "Kunde inte tolka \"Release\"-filen %s" -#: methods/connect.cc:126 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Kunde inte ansluta till %s:%s (%s)." +msgid "No sections in Release file %s" +msgstr "Inga sektioner i Release-filen %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "Connecting to %s" -msgstr "Ansluter till %s" +msgid "No Hash entry in Release file %s" +msgstr "Ingen Hash-post i Release-filen %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/indexrecords.cc:130 #, c-format -msgid "Could not resolve '%s'" -msgstr "Kunde inte slå upp \"%s\"" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ogiltig \"Valid-Until\"-post i Release-filen %s" -#: methods/connect.cc:205 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Temporärt fel vid uppslagning av \"%s\"" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ogiltig \"Date\"-post i Release-filen %s" -# Okänd felkod; %i = koden -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)" -# Okänd felkod; %i = koden -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:170 #, 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)" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Rad %lu i källistan %s har fel format ([option] ej tolkningsbar)" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Kunde inte ansluta till %s:%s:" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Rad %lu i källistan %s har fel format ([option] för kort)" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Internt fel: Korrekt signatur men kunde inte fastställa nyckelns " -"fingeravtryck?!" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Rad %lu i källistan %s har fel format ([%s] är inte en tilldelning)" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Minst en ogiltig signatur träffades på." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Rad %lu i källistan %s har fel format ([%s] saknar nyckel)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Kunde inte köra \"gpgv\" för att verifiera signatur (är gpgv installerad?)" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Rad %lu i källistan %s har fel format ([%s] nyckeln %s saknar värde)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Rad %lu i källistan %s har (URI)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Okänt fel vid körning av gpgv" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Rad %lu i källistan %s har fel format (dist)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Följande signaturer är ogiltiga:\n" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är " -"tillgänglig:\n" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Rad %lu i källistan %s har fel format (Absolut dist)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Rad %lu i källistan %s har fel format (dist-tolkning)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fel vid skrivning till filen" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Öppnar %s" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Rad %u i källistan %s har fel format (typ)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fel vid läsning från server" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fel vid skrivning till fil" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" + +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Installerar %s" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Konfigurerar %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "\"Select\" misslyckades" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Tar bort %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Anslutningen överskred tidsgränsen" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Tar bort hela %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fel vid skrivning till utdatafil" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Uppmärksammar försvinnandet av %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Väntar på rubriker" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Kör efterinstallationsutlösare %s" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Felaktig rubrikrad" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Katalogen \"%s\" saknas" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Http-servern sände ett ogiltigt svarshuvud" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Kunde inte öppna filen \"%s\"" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http-servern sände ett ogiltigt Content-Length-rubrik" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Förbereder %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http-servern sände ett ogiltigt Content-Range-rubrik" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Packar upp %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Den här http-serverns stöd för delvis hämtning fungerar inte" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Förbereder konfigurering av %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Okänt datumformat" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Installerade %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Felaktiga data i huvud" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Förbereder borttagning av %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Anslutningen misslyckades" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Tog bort %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Internt fel" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Förbereder borttagning av hela %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Beräknar uppgradering... " +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Tog bort hela %s" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Internt fel, AllUpgrade förstörde något" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Färdig" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Kunde inte skriva till %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Korrigerar beroenden..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " misslyckades." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Kunde inte korrigera beroenden" - -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Kunde inte minimera uppgraderingsuppsättningen" +msgid "Waited for %s but it wasn't there" +msgstr "Väntade på %s men den fanns inte där" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Färdig" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-private/private-cachefile.cc:108 -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." +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Ingen apport-rapport skrevs därför att MaxReports redan har uppnåtts" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Otillfredsställda beroenden. Prova med -f." +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "beroendeproblem - lämnar okonfigurerad" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att det är " +"ett efterföljande fel från ett tidigare problem." -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installerat]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installerat]" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " +"diskutrymmet är slut" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att minnet " +"är slut" -#: apt-private/private-output.cc:242 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 #, fuzzy -msgid "[installed,automatic]" -msgstr " [Installerat]" +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " +"diskutrymmet är slut" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installerat]" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar ett in-/ut-" +"fel för dpkg" -#: apt-private/private-output.cc:248 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" msgstr "" +"Kunde inte låsa administrationskatalogen (%s). Använder en annan process den?" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Kunde inte låsa administrationskatalogen (%s). Är du root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" +"dpkg avbröts. Du måste köra \"%s\" manuellt för att korrigera problemet. " -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Följande paket har beroenden som inte kan tillfredsställas:" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Inte låst" -#: apt-private/private-output.cc:442 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "but %s is installed" -msgstr "men %s är installerat" +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-output.cc:444 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "but %s is to be installed" -msgstr "men %s kommer att installeras" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "men det kan inte installeras" - -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "men det är ett virtuellt paket" +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "men det är inte installerat" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "men det kommer inte att installeras" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " eller" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Valet %s hittades inte" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Följande NYA paket kommer att installeras:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Använder inte låsning för skrivskyddade låsfilen %s" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Följande paket kommer att TAS BORT:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kunde inte öppna låsfilen %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Följande paket har hållits tillbaka:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Använder inte låsning för nfs-monterade låsfilen %s" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Följande paket kommer att uppgraderas:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Kunde inte erhålla låset %s" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Följande paket kommer att NEDGRADERAS:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Följande tillbakahållna paket kommer att ändras:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "%s (due to %s) " -msgstr "%s (på grund av %s) " +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"VARNING: Följande systemkritiska paket kommer att tas bort.\n" -"Detta bör INTE genomföras såvida du inte vet exakt vad du gör!" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu att uppgradera, %lu att nyinstallera, " +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprocessen %s råkade ut för ett segmenteringsfel." -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu att installera om, " +msgid "Sub-process %s received signal %u." +msgstr "Underprocessen %s tog emot signal %u." -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%lu downgraded, " -msgstr "%lu att nedgradera, " +msgid "Sub-process %s returned an error code (%u)" +msgstr "Underprocessen %s svarade med en felkod (%u)" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu att ta bort och %lu att inte uppgradera.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprocessen %s avslutades oväntat" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Skrivfel" + +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu är inte helt installerade eller borttagna.\n" +msgid "Problem closing the gzip file %s" +msgstr "Problem med att stänga gzip-filen %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[J/n]" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Kunde inte öppna filen %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[j/N]" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Kunde inte öppna filhandtag %d" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "J" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Misslyckades med att skapa underprocess-IPC" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Misslyckades med att starta komprimerare " -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Fel vid kompilering av reguljärt uttryck - %s" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Läsfel" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Uppdateringskommandot tar inga argument" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skrivning, har fortfarande %lu att skriva men kunde inte" + +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Problem closing the file %s" +msgstr "Problem med att stänga filen %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Problem renaming the file %s to %s" +msgstr "Problem med att byta namn på filen %s till %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem med att avlänka filen %s" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Internt fel. InstallPackages anropades med trasiga paket!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem med att synkronisera filen" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat." +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Fel!" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Internt fel. Sorteringen färdigställdes inte" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Färdig" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"Konstigt... storlekarna stämde inte överens, skicka e-post till apt@packages." -"debian.org" -#. 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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Behöver hämta %sB/%sB arkiv.\n" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Färdig" -#. 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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Behöver hämta %sB arkiv.\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan inte utföra mmap på en tom fil" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Efter denna åtgärd kommer ytterligare %sB utrymme användas på disken.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Kunde inte duplicera filhandtag %i" -#. 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 -#: apt-private/private-install.cc:171 -#, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Efter denna åtgärd kommer %sB att frigöras på disken.\n" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Kunde inte utföra mmap på %lu byte" -#: apt-private/private-install.cc:199 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Kunde inte stänga mmap" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Problem har uppstått och -y användes utan --force-yes" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Kunde inte synkronisera mmap" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling." +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Kunde inte utföra mmap på %lu byte" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Ja, gör som jag säger!" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Misslyckades med att kapa av filen" + +#: 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 "" +"Dynamisk MMap fick slut på utrymme. Öka storleken för APT::Cache-Start. " +"Aktuellt värde: %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Du är på väg att göra någonting som kan vara skadligt\n" -"Skriv in frasen \"%s\" för att fortsätta\n" -" ?] " - -# Visas då man svarar nej -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Avbryter." - -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Vill du fortsätta?" - -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Misslyckades med att hämta vissa filer" +"Kunde inte öka storleken för MMap eftersom gränsen på %lu byte redan har " +"uppnåtts." -#: apt-private/private-install.cc:319 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" -"fix-missing." - -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing och mediabyte stöds inte för tillfället" +"Kunde inte öka storleken för MMap eftersom automatisk växt har inaktiverats " +"av användaren." -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Kunde inte korrigera saknade paket." +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Kunde inte ta status på monteringspunkten %s." -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Avbryter installationen." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Kunde inte ta status på cd-romen." -#: apt-private/private-install.cc:365 -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] "" -"Följande paket har försvunnit från ditt system eftersom\n" -"alla filer har skrivits över av andra paket:" -msgstr[1] "" -"Följande paket har försvunnit från ditt system eftersom\n" -"alla filer har skrivits över av andra paket:" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Okänd typförkortning: \"%c\"" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Observera: Detta sker med automatik och vid behov av dpkg." +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Öppnar konfigurationsfilen %s" -#: apt-private/private-install.cc:390 -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" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaxfel %s:%u: Block börjar utan namn." -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, det verkar som AutoRemover förstörde något som verkligen\n" -"inte skulle hända. Skicka in en felrapport mot paketet apt." +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaxfel %s:%u: Felformat märke" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -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:" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaxfel %s:%u: Överflödigt skräp efter värde" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Internt fel, AutoRemover förstörde något" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaxfel %s:%u: Direktiv kan endast utföras på toppnivån" -#: apt-private/private-install.cc:512 -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] "" -"Följande paket har installerats automatiskt och är inte längre nödvändigt:" -msgstr[1] "" -"Följande paket har installerats automatiskt och är inte längre nödvändiga:" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaxfel %s:%u: För många nästlade inkluderingar" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, 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 blev installerade automatiskt och är inte längre nödvändigt.\n" -msgstr[1] "" -"%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaxfel %s:%u: Inkluderad härifrån" -#: apt-private/private-install.cc:518 -#, 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." +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte" -#: apt-private/private-install.cc:612 -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:" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaxfel %s:%u: clear-direktivet kräver ett flaggträd som argument" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " -"(eller ange en lösning)." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut" -#: apt-private/private-install.cc:628 -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 "" -"Några paket kunde inte installeras. Det kan betyda att du har begärt\n" -"en omöjlig situation eller, om du använder den instabila utgåvan\n" -"att några nödvändiga paket ännu inte har skapats eller flyttats\n" -"ut från \"Incoming\"." +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Ingen nyckelring installerad i %s." -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Trasiga paket" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Kommandoradsflaggan \"%c\" [från %s] är inte känd." -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Följande ytterligare paket kommer att installeras:" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Förstår inte kommandoradsflaggan %s" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Föreslagna paket:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Kommandoradsflaggan %s är inte boolsk" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Rekommenderade paket:" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Flaggan %s kräver ett argument." -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -"Hoppar över %s, det är redan installerat och uppgradering har inte valts.\n" +"Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =<värde>." -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Hoppar över %s, det är inte installerat och endast uppgraderingar har " -"begärts.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\"" -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Ominstallation av %s är inte möjlig, det kan inte hämtas.\n" +msgid "Option '%s' is too long" +msgstr "Flaggan \"%s\" är för lång" -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s är redan den senaste versionen.\n" +msgid "Sense %s is not understood, try true or false." +msgstr "Förstår inte %s, prova med \"true\" eller \"false\"." -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Valde version \"%s\" (%s) för \"%s\"\n" +msgid "Invalid operation %s" +msgstr "Felaktig åtgärd %s" -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Valde version \"%s\" (%s) för \"%s\"\n" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "" +"Paketet %s med version %s har ett beroende som inte kan tillfredsställas:\n" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Paketet %s är inte installerat, så det tas inte bort\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Totalt antal paketnamn: " -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paketet %s är inte installerat, så det tas inte bort\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Totala paketstrukturer: " -#: apt-private/private-main.cc:32 -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 "" -"OBSERVERA: Detta är endast en simulation!\n" -" apt-get behöver root-privilegier för verklig körning.\n" -" Tänk också på att låsningen är inaktiverad, så\n" -" förlita dig inte på relevansen till den verkliga situationen!" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Vanliga paket: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "VARNING: Följande paket kunde inte autentiseras!" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Helt virtuella paket: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentiseringsvarning åsidosatt.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Enstaka virtuella paket: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Några av paketen kunde inte autentiseras" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Blandade virtuella paket: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installera dessa paket utan verifiering?" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Saknade: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Misslyckades med att hämta %s %s\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Totalt antal olika versioner: " -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Misslyckades med att byta namn på %s till %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Totalt antal olika beskrivningar: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Totalt antal beroenden: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Totalt antal version/filrelationer: " -# Måste vara tre bokstäver(?) -# "Hit" = aktuell version är fortfarande giltig -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Bra " +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Totalt antal beskrivning/filrelationer: " -# "Get:" = hämtar ny version -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Läs:" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Totalt antal tillhandahållningsmarkeringar: " -# "Ign" = hoppar över -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Totalt antal sökmönstersträngar: " -# "Err" = fel vid hämtning -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fel " +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Totalt utrymme för versionsberoenden: " -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hämtade %sB på %s (%sB/s)\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Totalt bortkastat utrymme: " -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Arbetar]" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Totalt utrymme som kan redogöras för: " -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Package file %s is out of sync." +msgstr "Paketfilen %s är inte synkroniserad." + +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Inga paket hittades" + +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Du måste ange minst ett sökmönster" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Mediabyte: Mata in skivan med etiketten\n" -" \"%s\"\n" -"i enheten \"%s\" och tryck på Enter\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Kunde inte läsa %s" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "\"Package\"-filer:" -# Felmeddelande för misslyckad chdir -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Kunde inte byta till %s" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Cachen är inte synkroniserad, kan inte korsreferera en paketfil" -#. 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 "Ingen spegelfil \"%s\" hittades " +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Fastnålade paket:" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Ingen spegelfil \"%s\" hittades " +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(hittades inte)" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Ingen spegelfil \"%s\" hittades " +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installerad: " -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Spegel: %s]" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Misslyckades med att skapa IPC-rör till underprocess" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ingen)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Anslutningen stängdes i förtid" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paketnålning: " -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Felaktig standardinställning!" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versionstabell:" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Tryck på Enter för att fortsätta." +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s för %s kompilerad den %s %s\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Vill du ta bort eventuellt tidigare hämtade .deb-filer?" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Användning: apt-cache [flaggor] kommando\n" +" apt-cache [flaggor] add fil1 [fil2 ...]\n" +" apt-cache [flaggor] showpkg paket1 [paket2 ...]\n" +" apt-cache [flaggor] showsrc paket1 [paket2 ...]\n" +"\n" +"apt-cache är ett lågnivåverktyg för att hantera APTs binära cachefiler\n" +"samt hämta information från dem\n" +"\n" +"Kommandon:\n" +" add - Lägg till en paketfil till källcachen\n" +" gencaches - Bygg både paket- och källcache\n" +" showpkg - Visa viss allmän information om ett enskilt paket\n" +" showsrc - Visa källkodsposter\n" +" stats - Visa viss grundläggande statistik\n" +" dump - Visa hela filen i koncis form\n" +" dumpavail - Skriv en \"available\"-fil på standard ut\n" +" unmet - Visa otillfredsställbara beroenden\n" +" search - Sök i paketlistan med ett reguljärt uttryck\n" +" show - Visa en läsbar post för paketet\n" +" showauto - Visa en lista över automatiskt installerade paket\n" +" depends - Visa rå information om beroenden för ett paket\n" +" rdepends - Visa information om omvända beroenden för ett paket\n" +" pkgnames - Lista namnen på alla paket i systemet\n" +" dotty - Generera paketdiagram för GraphViz\n" +" xvcg - Generera paketdiagram för xvcg\n" +" policy - Visa policyinställningar\n" +"\n" +"Flaggor:\n" +" -h Denna hjälptext.\n" +" -p=? Paketcachen.\n" +" -s=? Källcachen.\n" +" -q Inaktivera förloppsindikatorn.\n" +" -i Visa endast viktiga beroenden för \"unmet\"-kommandot.\n" +" -c=? Läs denna konfigurationsfil.\n" +" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" +"Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Det uppstod fel vid uppackning. Paketen som blev installerade kommer" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 5.0.3 Disk 1\"" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "" -"att konfigureras. Detta kan resultera i dubbletta fel eller fel orsakade" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Mata in en skiva i enheten och tryck på Enter" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "av saknade beroenden. Detta är okej, endast felen ovanför detta" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Misslyckades med att montera \"%s\" till \"%s\"" -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "meddelandet är viktiga. Försök korrigera dem och kör [I]nstallera igen" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Sammanfogar tillgänglig information" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode anropat på fortfarande länkad nod" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Misslyckades med att hitta hash-elementet!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Misslyckades med att allokera omdirigering" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Internt fel i AddDiversion" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Försöker att skriva över en omdirigering, %s -> %s och %s/%s" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Upprepa proceduren för resten av cd-skivorna i din uppsättning." -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Omdirigeringen %s -> %s inlagd två gånger" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenten gavs inte parvis" -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Duplicerad konfigurationsfil %s/%s" +#: cmdline/apt-config.cc:89 +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 "" +"Användning: apt-config [flaggor] kommando\n" +"\n" +"apt-config är ett enkelt verktyg för att läsa APTs konfigurationsfil\n" +"\n" +"Kommandon:\n" +" shell - Skalläge.\n" +" dump - Visa konfigurationen.\n" +"\n" +"Flaggor:\n" +" -h Denna hjälptext.\n" +" -c=? Läs denna konfigurationsfil.\n" +" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Sökvägen %s är för lång" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Packar upp %s flera gånger" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Katalogen %s är omdirigerad" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:367 #, 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" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Väljer \"%s\" som källkodspaket istället för \"%s\"\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Omdirigeringssökvägen är för lång" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorera otillgängliga versionen \"%s\" av paketet \"%s\"" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Failed to stat %s" -msgstr "Misslyckades med att ta status på %s" +msgid "Couldn't find package %s" +msgstr "Kunde inte hitta paketet %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Misslyckades med att byta namn på %s till %s" +msgid "%s set to manually installed.\n" +msgstr "%s är satt till manuellt installerad.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Katalogen %s ersätts av en icke-katalog" +msgid "%s set to automatically installed.\n" +msgstr "%s är satt till automatiskt installerad.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Misslyckades med att hitta noden i sin hashkorg" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Sökvägen är för lång" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Internt fel, problemlösaren förstörde någonting" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Skriv över paketträff utan version för %s" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Kunde inte låsa hämtningskatalogen" -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Filen %s/%s skriver över den i paketet %s" +#: cmdline/apt-get.cc:726 +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" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Unable to stat %s" -msgstr "Kunde inte ta status på %s" +msgid "Unable to find a source package for %s" +msgstr "Kunde inte hitta något källkodspaket för %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Failed to write file %s" -msgstr "Misslyckades med att skriva filen %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"OBSERVERA: paketering av \"%s\" hanteras i versionshanteringssystemet \"%s\" " +"på:\n" +"%s\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Misslyckades med att stänga filen %s" +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Använd:\n" +"bzr get %s\n" +"för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:843 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Detta är inte ett giltigt DEB-arkiv, delen \"%s\" saknas" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Hoppar över redan hämtade filen \"%s\"\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Internt fel, kunde inta hitta delen %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Kunde inte tolka control-filen" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ogiltig arkivsignatur" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fel vid läsning av rubrik för arkivdel" +msgid "Couldn't determine free space in %s" +msgstr "Kunde inte fastställa ledigt utrymme i %s" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Invalid archive member header %s" -msgstr "Ogiltig arkivdelsrubrik %s" +msgid "You don't have enough free space in %s" +msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ogiltigt arkivdelsrubrik" +#. 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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkivet är för kort" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Behöver hämta %sB källkodsarkiv.\n" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Misslyckades med att läsa arkivrubriker" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Hämtar källkoden %s\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Misslyckades med att skapa rör" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Misslyckades med att hämta vissa arkiv." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Misslyckades med att köra gzip" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Hämtningen färdig i \"endast-hämta\"-läge" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Skadat arkiv" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Packar inte upp redan uppackad källkod i %s\n" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-kontrollsumma misslyckades, arkivet skadat" +#: cmdline/apt-get.cc:962 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Uppackningskommandot \"%s\" misslyckades.\n" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Okänd TAR-rubriktyp %u, del %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Unable to stat %s." -msgstr "Kunde inte ta status på %s." +msgid "Build command '%s' failed.\n" +msgstr "Byggkommandot \"%s\" misslyckades.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Barnprocessen misslyckades" + +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "Progress: [%3i%%]" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Kör dpkg" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Kunde inte hämta information om byggberoenden för %s" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketsystemet \"%s\" stöds inte" +msgid "%s has no build depends.\n" +msgstr "%s har inga byggberoenden.\n" -# -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Kunde inte fastställa en lämplig paketsystemstyp" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " +"hittas" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records.\n" -msgstr "Skrev %i poster.\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " +"hittas" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Skrev %i poster med %i saknade filer.\n" +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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Skrev %i poster med %i filer som inte stämmer\n" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga " +"versioner av paketet %s tillfredsställer versionskraven" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, 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" +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " +"hittas" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Kan inte hitta autentiseringspost för: %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash-kontrollsumman stämmer inte för: %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Byggberoenden för %s kunde inte tillfredsställas." -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Metoddrivrutinen %s kunde inte hittas." +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Misslyckades med att behandla byggberoenden" -#: apt-pkg/acquire-worker.cc:118 +# Felmeddelande för misslyckad chdir +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" +msgid "Changelog for %s (%s)" +msgstr "Ansluter till %s (%s)" + +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Moduler som stöds:" + +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Användning: apt-get [flaggor] kommando\n" +" apt-get [flaggor] install|remove paket1 [paket2 ...]\n" +" apt-get [flaggor] source paket1 [paket2 ...]\n" +"\n" +"apt-get är ett enkelt kommandoradsgränssnitt för att hämta och installera\n" +"paket. De mest använda kommandona är \"update\" och \"install\".\n" +"\n" +"Kommandon:\n" +" update - Hämta nya paketlistor\n" +" upgrade - Genomför en uppgradering\n" +" install - Installera nya paket (paket är libc6, inte libc6.deb)\n" +" remove - Ta bort paket\n" +" autoremove - Ta automatiskt bort alla oanvända paket\n" +" purge - Ta bort paket och konfigurationsfiler\n" +" source - Hämta källkodsarkiv\n" +" build-dep - Tillfredsställ byggberoenden för källkodspaket\n" +" dist-upgrade - Uppgradering av distributionen, se apt-get(8)\n" +" dselect-upgrade - Följ valen från dselect\n" +" clean - Ta bort hämtade arkivfiler\n" +" autoclean - Ta bort gamla hämtade arkivfiler\n" +" check - Kontrollera att det inte finns några trasiga beroenden\n" +" markauto - Markera angivna paket som automatiskt installerade\n" +" unmarkauto - Markera angivna paket som manuellt installerade\n" +"\n" +"Flaggor:\n" +" -h Denna hjälptext.\n" +" -q Utdata lämplig för loggar - ingen förloppsindikator.\n" +" -qq Ingen utdata förutom vid fel.\n" +" -d Bara hämta - VARKEN installera eller packa upp arkiven.\n" +" -s Gör ingenting, simulera vad som skulle hända.\n" +" -y Antag ja på alla frågor utan att fråga.\n" +" -f Försök rätta ett system med otillfredsställda beroenden.\n" +" -m Försök fortsätta även om arkiven inte kan hittas.\n" +" -u Visa även en lista över uppgraderade paket.\n" +" -b Bygg källkodspaketet när det hämtats.\n" +" -V Visa pratsamma versionsnummer.\n" +" -c=? Läs denna konfigurationsfil.\n" +" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" +"Se manualsidorna för apt-get(8), sources.list(5) och apt.conf(5)\n" +"för mer information och flaggor.\n" +" Denna APT har Speciella Ko-Krafter.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoden %s startade inte korrekt" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du måste ange minst ett paket att hämta källkod för" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Mata in skivan med etiketten \"%s\" i enheten \"%s\" och tryck på Enter." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Paketlistan eller statusfilen kunde inte tolkas eller öppnas." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Du kan möjligen rätta till problemet genom att köra \"apt-get update\"" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Listan över källor kunde inte läsas." - -# Felmeddelande -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Paketcachen är tom" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Paketcachefilen är skadad" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Paketcachefilens version är inkompatibel" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Paketcachefilen är skadad" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Denna APT saknar stöd för versionssystemet \"%s\"" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "men det är inte installerat" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Paketcachen byggdes för en annan arkitektur" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s är satt till manuellt installerad.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Beroende av" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s är satt till automatiskt installerad.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Förberoende av" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s är redan den senaste versionen.\n" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Föreslår" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s är redan den senaste versionen.\n" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Rekommenderar" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s är satt till manuellt installerad.\n" -# "Konfliktar"? -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Står i konflikt med" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Misslyckades med att öppna %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Ersätter" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -# "Föråldrar"? -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Föråldrar" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Gör sönder" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Utökar" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Kunde inte läsa cd-rom-databasen %s" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "viktigt" +#: 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 "" +"Använd apt-cdrom för att APT ska känna igen denna cd. apt-get update kan " +"inte användas för att lägga till skivor" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "nödvändigt" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Fel cd-rom" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Kunde inte avmontera cd-rom:en i %s, den kanske fortfarande används." -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valfri" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Skivan hittades inte." -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Filen hittades inte" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexfiler av typ \"%s\" stöds inte" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Kunde inte ta status" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cachen har ett inkompatibelt versionssystem" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Misslyckades ställa in ändringstid" -# NewPackage etc. är funktionsnamn -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Fel uppstod vid hantering av %s (FindPkg)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ogiltig URI, lokala URI:er får inte börja med //" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Grattis, du överskred antalet paketnamn som denna APT kan hantera." +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Loggar in" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Grattis, du överskred antalet versioner som denna APT kan hantera." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Kunde inte fastställa namnet på partnern" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Grattis, du överskred antalet beskrivningar som denna APT kan hantera." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Kunde inte fastställa det lokala namnet" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Servern nekade anslutningen och sade: %s" -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:225 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Paketet %s %s hittades inte när filberoenden hanterades" +msgid "USER failed, server said: %s" +msgstr "USER misslyckades, servern sade: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:232 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kunde inte ta status på källkodspaketlistan %s" +msgid "PASS failed, server said: %s" +msgstr "PASS misslyckades, servern sade: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Läser paketlistor" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"En mellanserver (proxy) angavs men inget inloggningsskript, Acquire::ftp::" +"ProxyLogin är tom." -# Bättre ord? -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samlar filtillhandahållningar" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:306 #, c-format -msgid "Unable to write to %s" -msgstr "Kunde inte skriva till %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE misslyckades, servern sade: %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "In-/utfel vid lagring av källcache" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Tidsgränsen för anslutningen överskreds" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Servern stängde anslutningen" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Ett svar spillde bufferten." -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokollet skadat" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Kunde inte skapa ett uttag (socket)" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "namnbyte misslyckades, %s (%s -> %s)." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Misslyckades" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash-kontrollsumman stämmer inte" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Kunde inte ansluta passivt uttag (socket)." -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Storleken stämmer inte" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo kunde inte få tag i ett lyssnande uttag (socket)" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Felaktig åtgärd %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Kunde inte binda ett uttag (socket)" -#: apt-pkg/acquire-item.cc:1581 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Kunde inte lyssna på uttaget (socket)" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Kunde inte tolka \"Release\"-filen %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Kunde inte fastställa uttagets namn (socket)" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Det finns ingen öppen nyckel tillgänglig för följande nyckel-id:n:\n" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Kunde inte sända PORT-kommando" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Unknown address family %u (AF_*)" +msgstr "Okänd adressfamilj %u (AF_*)" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:811 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)" +msgid "EPRT failed, server said: %s" +msgstr "EPRT misslyckades, servern sade: %s" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" + +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Kunde inte ta emot anslutningen" + +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem med att lägga filen till hashtabellen" + +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Ett fel inträffade vid verifiering av signaturen. Förrådet har inte " -"uppdaterats och de tidigare indexfilerna kommer att användas. GPG-fel: %s: " -"%s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Kunde inte hämta filen, servern sade \"%s\"" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datauttag (socket) fick inte svar inom tidsgränsen" + +#: methods/ftp.cc:935 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-fel: %s: %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Dataöverföringen misslyckades, servern sade \"%s\"" -#: apt-pkg/acquire-item.cc:1867 +# Statusmeddelande, byter från substantiv till verb +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Frågar" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Kunde inte starta " + +# Felmeddelande för misslyckad chdir +#: methods/connect.cc:76 #, 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 "" -"Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du " -"manuellt måste reparera detta paket (på grund av saknad arkitektur)." +msgid "Connecting to %s (%s)" +msgstr "Ansluter till %s (%s)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:87 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1991 +# [f]amilj, [t]yp, [p]rotokoll +#: methods/connect.cc:94 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Paketindexfilerna är skadede. Inget \"Filename:\"-fält för paketet %s." +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)" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:100 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Leverantörsblocket %s saknar fingeravtryck" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kunde inte initiera anslutningen till %s:%s (%s)." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:108 #, c-format -msgid "List directory %spartial is missing." -msgstr "Listkatalogen %spartial saknas." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Kunde inte ansluta till %s:%s (%s), anslutningen överskred tidsgräns" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:126 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkivkatalogen %spartial saknas." +msgid "Could not connect to %s:%s (%s)." +msgstr "Kunde inte ansluta till %s:%s (%s)." -#: apt-pkg/acquire.cc:99 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Unable to lock directory %s" -msgstr "Kunde inte låsa katalogen %s" +msgid "Connecting to %s" +msgstr "Ansluter till %s" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Hämtar fil %li av %li (%s återstår)" +msgid "Could not resolve '%s'" +msgstr "Kunde inte slå upp \"%s\"" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:205 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Hämtar fil %li av %li" +msgid "Temporary failure resolving '%s'" +msgstr "Temporärt fel vid uppslagning av \"%s\"" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Vissa indexfiler kunde inte hämtas, de har ignorerats eller så har de gamla " -"använts istället." +# Okänd felkod; %i = koden +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Du måste lägga till några \"source\"-URI:er i din sources.list" +# 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)" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Kunde inte ansluta till %s:%s:" + +#: methods/gpgv.cc:168 msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" +"Internt fel: Korrekt signatur men kunde inte fastställa nyckelns " +"fingeravtryck?!" -# "Package" är en sträng i konfigurationsfilen -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ogiltig post i konfigurationsfilen %s, \"Package\"-rubriken saknas" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Förstod inte nåltypen %s" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Minst en ogiltig signatur träffades på." -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Prioritet ej angiven (eller noll) för nål" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Kunde inte köra \"gpgv\" för att verifiera signatur (är gpgv installerad?)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" 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:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Kunde inte öppna filen \"%s\"" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Okänt fel vid körning av gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Följande signaturer är ogiltiga:\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"För att genomföra installationen måste det systemkritiska paketet %s " -"tillfälligt tas bort på grund av en beroendespiral i Conflicts/Pre-Depends. " -"Detta är oftast en dålig idé, men om du verkligen vill göra det kan du " -"aktivera flaggan \"APT::Force-LoopBreak\"." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Rad %u är för lång i källistan %s." +"Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är " +"tillgänglig:\n" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterar CD-ROM...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Använder cd-rom-monteringspunkten %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fel vid skrivning till filen" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Väntar på skiva...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterar cd-rom...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fel vid läsning från server" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifierar... " +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fel vid skrivning till fil" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Lagrad etikett: %s \n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "\"Select\" misslyckades" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Söker efter indexfiler på skivan...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Anslutningen överskred tidsgränsen" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Hittade %zu paketindex, %zu källkodsindex, %zu översättningsindex och %zu " -"signaturer\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fel vid skrivning till utdatafil" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Kunde inte hitta några paketfiler. Detta är kanske inte en Debian-skiva " -"eller felaktig arkitektur?" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Väntar på rubriker" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Hittade etiketten \"%s\"\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Felaktig rubrikrad" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Namnet är ogiltigt, försök igen.\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Http-servern sände ett ogiltigt svarshuvud" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Denna skiva heter: \n" -"\"%s\"\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Http-servern sände ett ogiltigt Content-Length-rubrik" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopierar paketlistor..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Http-servern sände ett ogiltigt Content-Range-rubrik" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriver ny källista\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Den här http-serverns stöd för delvis hämtning fungerar inte" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Poster i källistan för denna skiva:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Okänt datumformat" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Felaktiga data i huvud" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på " -"tillbakahållna paket." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Anslutningen misslyckades" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Kunde inte korrigera problemen, du har hållit tillbaka trasiga paket." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Internt fel" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Bygger beroendeträd" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Beräknar uppgradering... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandiderande versioner" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Färdig" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Beroendegenerering" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Läser tillståndsinformation" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Misslyckades med att öppna StateFile %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Misslyckades med att skriva temporär StateFile %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Korrigerar beroenden..." + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " misslyckades." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Kunde inte tolka paketfilen %s (1)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Kunde inte korrigera beroenden" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Kunde inte tolka paketfilen %s (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Kunde inte minimera uppgraderingsuppsättningen" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Utgåvan \"%s\" för \"%s\" hittades inte" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Färdig" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Version \"%s\" för \"%s\" hittades inte" +#: apt-private/private-cachefile.cc:108 +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." -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Kunde inte hitta funktionen \"%s\"" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Otillfredsställda beroenden. Prova med -f." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +msgid "[installed,upgradable to: %s]" +msgstr " [Installerat]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Kan inte välja versioner från paketet \"%s\" eftersom det är helt virtuellt" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installerat]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Kan inte välja installerad version eller kandidatversion från paketet \"%s\" " -"eftersom det inte har någon av dem" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Kan inte välja senaste version från paketet \"%s\" eftersom det är helt " -"virtuellt" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installerat]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installerat]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Kan inte välja kandidatversion från paketet %s eftersom det inte har någon " -"kandidat" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Kan inte välja installerad version från paketet %s eftersom det inte är " -"installerat" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Kunde inte tolka \"Release\"-filen %s" +msgid "but %s is installed" +msgstr "men %s är installerat" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "Inga sektioner i Release-filen %s" +msgid "but %s is to be installed" +msgstr "men %s kommer att installeras" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Ingen Hash-post i Release-filen %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "men det kan inte installeras" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ogiltig \"Valid-Until\"-post i Release-filen %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "men det är ett virtuellt paket" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ogiltig \"Date\"-post i Release-filen %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "men det är inte installerat" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "men det kommer inte att installeras" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Rad %lu i källistan %s har fel format ([option] ej tolkningsbar)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " eller" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Rad %lu i källistan %s har fel format ([option] för kort)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Följande paket har beroenden som inte kan tillfredsställas:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Rad %lu i källistan %s har fel format ([%s] är inte en tilldelning)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Följande NYA paket kommer att installeras:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Rad %lu i källistan %s har fel format ([%s] saknar nyckel)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Följande paket kommer att TAS BORT:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Rad %lu i källistan %s har fel format ([%s] nyckeln %s saknar värde)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Följande paket har hållits tillbaka:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Rad %lu i källistan %s har (URI)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Följande paket kommer att uppgraderas:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Rad %lu i källistan %s har fel format (dist)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Följande paket kommer att NEDGRADERAS:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Följande tillbakahållna paket kommer att ändras:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)" +msgid "%s (due to %s) " +msgstr "%s (på grund av %s) " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"VARNING: Följande systemkritiska paket kommer att tas bort.\n" +"Detta bör INTE genomföras såvida du inte vet exakt vad du gör!" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Rad %lu i källistan %s har fel format (Absolut dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu att uppgradera, %lu att nyinstallera, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Rad %lu i källistan %s har fel format (dist-tolkning)" +msgid "%lu reinstalled, " +msgstr "%lu att installera om, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "Öppnar %s" +msgid "%lu downgraded, " +msgstr "%lu att nedgradera, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Rad %u i källistan %s har fel format (typ)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu att ta bort och %lu att inte uppgradera.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu är inte helt installerade eller borttagna.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Installerar %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Konfigurerar %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Tar bort %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Tar bort hela %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Uppdateringskommandot tar inga argument" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" -msgstr "Uppmärksammar försvinnandet av %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Kör efterinstallationsutlösare %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Katalogen \"%s\" saknas" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Kunde inte öppna filen \"%s\"" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Internt fel. InstallPackages anropades med trasiga paket!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Förbereder %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Packar upp %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Internt fel. Sorteringen färdigställdes inte" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Förbereder konfigurering av %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Konstigt... storlekarna stämde inte överens, skicka e-post till apt@packages." +"debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "Installerade %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Behöver hämta %sB/%sB arkiv.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "Förbereder borttagning av %s" +msgid "Need to get %sB of archives.\n" +msgstr "Behöver hämta %sB arkiv.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "Tog bort %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Efter denna åtgärd kommer ytterligare %sB utrymme användas på disken.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Förbereder borttagning av hela %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Efter denna åtgärd kommer %sB att frigöras på disken.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "Tog bort hela %s" +msgid "You don't have enough free space in %s." +msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Problem har uppstått och -y användes utan --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Kunde inte skriva till %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, gör som jag säger!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Du är på väg att göra någonting som kan vara skadligt\n" +"Skriv in frasen \"%s\" för att fortsätta\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +# Visas då man svarar nej +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Avbryter." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Ingen apport-rapport skrevs därför att MaxReports redan har uppnåtts" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vill du fortsätta?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "beroendeproblem - lämnar okonfigurerad" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Misslyckades med att hämta vissa filer" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att det är " -"ett efterföljande fel från ett tidigare problem." +"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" +"fix-missing." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " -"diskutrymmet är slut" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing och mediabyte stöds inte för tillfället" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att minnet " -"är slut" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Kunde inte korrigera saknade paket." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Avbryter installationen." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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] "" +"Följande paket har försvunnit från ditt system eftersom\n" +"alla filer har skrivits över av andra paket:" +msgstr[1] "" +"Följande paket har försvunnit från ditt system eftersom\n" +"alla filer har skrivits över av andra paket:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Observera: Detta sker med automatik och vid behov av dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " -"diskutrymmet är slut" +"Det är inte meningen att vi ska ta bort något, kan inte starta AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar ett in-/ut-" -"fel för dpkg" +"Hmm, det verkar som AutoRemover förstörde något som verkligen\n" +"inte skulle hända. Skicka in en felrapport mot paketet apt." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +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:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Internt fel, AutoRemover förstörde något" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Kunde inte låsa administrationskatalogen (%s). Använder en annan process den?" +"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] "" +"Följande paket har installerats automatiskt och är inte längre nödvändigt:" +msgstr[1] "" +"Följande paket har installerats automatiskt och är inte längre nödvändiga:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Kunde inte låsa administrationskatalogen (%s). Är du root?" +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 blev installerade automatiskt och är inte längre nödvändigt.\n" +msgstr[1] "" +"%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +#, 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." + +#: apt-private/private-install.cc:612 +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:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"dpkg avbröts. Du måste köra \"%s\" manuellt för att korrigera problemet. " +"Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " +"(eller ange en lösning)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Inte låst" +#: apt-private/private-install.cc:638 +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 "" +"Några paket kunde inte installeras. Det kan betyda att du har begärt\n" +"en omöjlig situation eller, om du använder den instabila utgåvan\n" +"att några nödvändiga paket ännu inte har skapats eller flyttats\n" +"ut från \"Incoming\"." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Trasiga paket" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Följande ytterligare paket kommer att installeras:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Föreslagna paket:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Rekommenderade paket:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Valet %s hittades inte" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Hoppar över %s, det är redan installerat och uppgradering har inte valts.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Använder inte låsning för skrivskyddade låsfilen %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Hoppar över %s, det är inte installerat och endast uppgraderingar har " +"begärts.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Kunde inte öppna låsfilen %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Ominstallation av %s är inte möjlig, det kan inte hämtas.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Använder inte låsning för nfs-monterade låsfilen %s" +msgid "%s is already the newest version.\n" +msgstr "%s är redan den senaste versionen.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Kunde inte erhålla låset %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Valde version \"%s\" (%s) för \"%s\"\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Valde version \"%s\" (%s) för \"%s\"\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Paketet %s är inte installerat, så det tas inte bort\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Paketet %s är inte installerat, så det tas inte bort\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" +"OBSERVERA: Detta är endast en simulation!\n" +" apt-get behöver root-privilegier för verklig körning.\n" +" Tänk också på att låsningen är inaktiverad, så\n" +" förlita dig inte på relevansen till den verkliga situationen!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Underprocessen %s råkade ut för ett segmenteringsfel." - -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Underprocessen %s tog emot signal %u." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "VARNING: Följande paket kunde inte autentiseras!" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Underprocessen %s svarade med en felkod (%u)" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentiseringsvarning åsidosatt.\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Underprocessen %s avslutades oväntat" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Några av paketen kunde inte autentiseras" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem med att stänga gzip-filen %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installera dessa paket utan verifiering?" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Kunde inte öppna filen %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Misslyckades med att byta namn på %s till %s" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Kunde inte öppna filhandtag %d" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Misslyckades med att skapa underprocess-IPC" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Misslyckades med att starta komprimerare " +# Måste vara tre bokstäver(?) +# "Hit" = aktuell version är fortfarande giltig +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Bra " -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar" +# "Get:" = hämtar ny version +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Läs:" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "skrivning, har fortfarande %lu att skriva men kunde inte" +# "Ign" = hoppar över +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problem med att stänga filen %s" +# "Err" = fel vid hämtning +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Fel " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem med att byta namn på filen %s till %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Hämtade %sB på %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem med att avlänka filen %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem med att synkronisera filen" +msgid " [Working]" +msgstr " [Arbetar]" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fel!" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Mediabyte: Mata in skivan med etiketten\n" +" \"%s\"\n" +"i enheten \"%s\" och tryck på Enter\n" -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Färdig" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "No mirror file '%s' found " +msgstr "Ingen spegelfil \"%s\" hittades " -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Färdig" +msgid "Can not read mirror file '%s'" +msgstr "Ingen spegelfil \"%s\" hittades " -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan inte utföra mmap på en tom fil" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Ingen spegelfil \"%s\" hittades " -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Kunde inte duplicera filhandtag %i" +msgid "[Mirror: %s]" +msgstr "[Spegel: %s]" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Kunde inte utföra mmap på %lu byte" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Misslyckades med att skapa IPC-rör till underprocess" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Kunde inte stänga mmap" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Anslutningen stängdes i förtid" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Felaktig standardinställning!" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Kunde inte synkronisera mmap" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Tryck på Enter för att fortsätta." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Kunde inte utföra mmap på %lu byte" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Vill du ta bort eventuellt tidigare hämtade .deb-filer?" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Misslyckades med att kapa av filen" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Det uppstod fel vid uppackning. Paketen som blev installerade kommer" -#: 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)" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -"Dynamisk MMap fick slut på utrymme. Öka storleken för APT::Cache-Start. " -"Aktuellt värde: %lu. (man 5 apt.conf)" +"att konfigureras. Detta kan resultera i dubbletta fel eller fel orsakade" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Kunde inte öka storleken för MMap eftersom gränsen på %lu byte redan har " -"uppnåtts." +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "av saknade beroenden. Detta är okej, endast felen ovanför detta" -#: apt-pkg/contrib/mmap.cc:449 +#: dselect/install:105 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Kunde inte öka storleken för MMap eftersom automatisk växt har inaktiverats " -"av användaren." +"above this message are important. Please fix them and run [I]nstall again" +msgstr "meddelandet är viktiga. Försök korrigera dem och kör [I]nstallera igen" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Kunde inte ta status på monteringspunkten %s." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sammanfogar tillgänglig information" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Kunde inte ta status på cd-romen." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode anropat på fortfarande länkad nod" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Okänd typförkortning: \"%c\"" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Misslyckades med att hitta hash-elementet!" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Öppnar konfigurationsfilen %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Misslyckades med att allokera omdirigering" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Internt fel i AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaxfel %s:%u: Block börjar utan namn." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Försöker att skriva över en omdirigering, %s -> %s och %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaxfel %s:%u: Felformat märke" +msgid "Double add of diversion %s -> %s" +msgstr "Omdirigeringen %s -> %s inlagd två gånger" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaxfel %s:%u: Överflödigt skräp efter värde" +msgid "Duplicate conf file %s/%s" +msgstr "Duplicerad konfigurationsfil %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaxfel %s:%u: Direktiv kan endast utföras på toppnivån" +msgid "The path %s is too long" +msgstr "Sökvägen %s är för lång" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaxfel %s:%u: För många nästlade inkluderingar" +msgid "Unpacking %s more than once" +msgstr "Packar upp %s flera gånger" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaxfel %s:%u: Inkluderad härifrån" +msgid "The directory %s is diverted" +msgstr "Katalogen %s är omdirigerad" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte" +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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Omdirigeringssökvägen är för lång" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaxfel %s:%u: clear-direktivet kräver ett flaggträd som argument" +msgid "Failed to stat %s" +msgstr "Misslyckades med att ta status på %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut" +msgid "Failed to rename %s to %s" +msgstr "Misslyckades med att byta namn på %s till %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "Ingen nyckelring installerad i %s." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Katalogen %s ersätts av en icke-katalog" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Misslyckades med att hitta noden i sin hashkorg" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Sökvägen är för lång" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Kommandoradsflaggan \"%c\" [från %s] är inte känd." +msgid "Overwrite package match with no version for %s" +msgstr "Skriv över paketträff utan version för %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Förstår inte kommandoradsflaggan %s" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Filen %s/%s skriver över den i paketet %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Kommandoradsflaggan %s är inte boolsk" +msgid "Unable to stat %s" +msgstr "Kunde inte ta status på %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Flaggan %s kräver ett argument." +msgid "Failed to write file %s" +msgstr "Misslyckades med att skriva filen %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =<värde>." +msgid "Failed to close file %s" +msgstr "Misslyckades med att stänga filen %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\"" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Detta är inte ett giltigt DEB-arkiv, delen \"%s\" saknas" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Flaggan \"%s\" är för lång" +msgid "Internal error, could not locate member %s" +msgstr "Internt fel, kunde inta hitta delen %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Kunde inte tolka control-filen" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ogiltig arkivsignatur" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fel vid läsning av rubrik för arkivdel" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Förstår inte %s, prova med \"true\" eller \"false\"." +msgid "Invalid archive member header %s" +msgstr "Ogiltig arkivdelsrubrik %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ogiltigt arkivdelsrubrik" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkivet är för kort" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Misslyckades med att läsa arkivrubriker" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Misslyckades med att skapa rör" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Misslyckades med att köra gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Skadat arkiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-kontrollsumma misslyckades, arkivet skadat" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Felaktig åtgärd %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Okänd TAR-rubriktyp %u, del %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3577,7 +3581,7 @@ msgstr "Misslyckades med att läsa vid beräkning av MD5" msgid "Problem unlinking %s" msgstr "Problem med att länka ut %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3630,6 +3634,10 @@ msgstr "" " -c=? Läs denna konfigurationsfil.\n" " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Internt fel, AllUpgrade förstörde något" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s är inte ett giltigt DEB-paket." diff --git a/po/th.po b/po/th.po index 7d86b0746..7f162db23 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2014-04-20 09:38+0700\n" "Last-Translator: Theppitak Karoonboonyanan <thep@debian.org>\n" "Language-Team: Thai <thai-l10n@googlegroups.com>\n" @@ -18,3164 +18,3169 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "แพกเกจ %s รุ่น %s ขาดแพกเกจที่ต้องใช้:\n" +msgid "Unable to read %s" +msgstr "ไม่สามารถอ่าน %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "จำนวนชื่อแพกเกจทั้งหมด: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "จำนวนโครงสร้างแพกเกจทั้งหมด: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "ไม่สามารถ stat %s" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " แพกเกจปกติ: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "ความคืบหน้า: [%3i%%]" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " แพกเกจเสมือนแท้ๆ: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "กำลังเรียก dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " แพกเกจเสมือนที่มีแพกเกจจริงเดียว: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "ไม่รองรับระบบแพกเกจ '%s'" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " แพกเกจเสมือนผสม: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "ไม่สามารถระบุชนิดของระบบแพกเกจที่เหมาะสมได้" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " แพกเกจที่ขาดหาย: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "เขียนแล้ว %i ระเบียน\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "จำนวนรุ่นที่แตกต่างกันทั้งหมด: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "จำนวนคำบรรยายแพกเกจที่แตกต่างกันทั้งหมด: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "จำนวนการเชื่อมโยงระหว่างแพกเกจทั้งหมด: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "จำนวนความสัมพันธ์ รุ่น/แฟ้ม ทั้งหมด: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "ไม่พบระเบียนยืนยันความแท้สำหรับ: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "จำนวนความสัมพันธ์ คำบรรยาย/แฟ้ม ทั้งหมด: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "แฮชไม่ตรงกันสำหรับ: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "จำนวนผังการตระเตรียมทั้งหมด: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "ไม่พบไดรเวอร์สำหรับวิธีการ %s" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "จำนวนสตริงทั้งหมด: " +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "ได้ติดตั้งแพกเกจ %s ไว้หรือไม่?" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "ขนาดของพื้นที่ความเชื่อมโยงระหว่างแพกเกจทั้งหมด: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "ไม่สามารถเรียกทำงานวิธีการ %s" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "พื้นที่สำรองทั้งหมด: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "กรุณาใส่แผ่นชื่อ: '%s' ลงในไดรว์ '%s' แล้วกด enter" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "พื้นที่ที่นับรวมทั้งหมด: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "ไม่สามารถแจงหรือเปิดรายชื่อแพกเกจหรือสถานะแพกเกจได้" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "ข้อมูลแฟ้ม Package %s ไม่ตรงกับความเป็นจริง" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "คุณอาจเรียก `apt-get update' เพื่อแก้ปัญหาเหล่านี้ได้" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "ไม่พบแพกเกจ" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "ไม่สามารถอ่านรายชื่อแหล่งแพกเกจได้" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "คุณต้องระบุแพตเทิร์นสำหรับค้นหาอย่างน้อยหนึ่งแพตเทิร์น" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "แคชของแพกเกจว่างเปล่า" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark showauto' แทน" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "แฟ้มแคชของแพกเกจเสียหาย" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "แฟ้มแคชของแพกเกจเป็นคนละรุ่นกัน" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "แฟ้มแคชของแพกเกจเสียหาย แฟ้มมีขนาดเล็กกว่าที่ควรจะเป็น" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "ไม่พบแพกเกจ %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "APT รุ่นนี้ไม่รองรับระบบนับรุ่นแบบ '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "แฟ้มแพกเกจ:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "แคชของแพกเกจถูกสร้างมาสำหรับสถาปัตยกรรมอื่น" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "ข้อมูลแคชไม่ตรงกับความเป็นจริงแล้ว ไม่สามารถอ้างอิงไขว้ระหว่างแฟ้มแพกเกจ" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "ต้องใช้" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "แพกเกจที่ถูกตรึง:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "ต้องใช้ขณะติดตั้ง" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ไม่พบ)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "แนะนำ" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " ที่ติดตั้งอยู่: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "ควรใช้ร่วมกับ" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " รุ่นที่ติดตั้งได้: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "ขัดแย้งกับ" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ไม่มี)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "แทนที่" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " การตรึงแพกเกจ: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "ใช้แทน" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " ตารางรุ่น:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "ทำให้พัง" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "เพิ่มความสามารถ" + +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "สำคัญ" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "จำเป็น" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "มาตรฐาน" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "ตัวเลือก" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ส่วนเสริม" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n" +msgid "Index file type '%s' is not supported" +msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'" -#: cmdline/apt-cache.cc:1749 -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 "" -"วิธีใช้: apt-cache [ตัวเลือก] คำสั่ง\n" -" apt-cache [ตัวเลือก] add file1 [file2 ...]\n" -" apt-cache [ตัวเลือก] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [ตัวเลือก] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache เป็นเครื่องมือระดับล่างสำหรับสืบค้นข้อมูลจากแฟ้มแคชไบนารีของ APT\n" -"\n" -"คำสั่ง:\n" -" gencaches - สร้างทั้งแคชของแพกเกจและแคชของซอร์ส\n" -" showpkg - แสดงข้อมูลทั่วไปของแพกเกจที่กำหนด\n" -" showsrc - แสดงระเบียนข้อมูลซอร์ส\n" -" stats - แสดงสถิติทั่วไป\n" -" dump - แสดงเนื้อหาแคชทั้งหมดในรูปแบบดิบ\n" -" dumpavail - แสดงข้อมูลแพกเกจที่มีทั้งหมดออกทางเอาต์พุตมาตรฐาน\n" -" unmet - แสดงความเชื่อมโยงที่ยังขาดหาย\n" -" search - ค้นรายชื่อแพกเกจด้วยนิพจน์เรกิวลาร์\n" -" show - แสดงข้อมูลของแพกเกจ\n" -" depends - แสดงข้อมูลแพกเกจที่ต้องใช้สำหรับแพกเกจที่กำหนด\n" -" rdepends - แสดงข้อมูลแพกเกจอื่นที่ต้องใช้แพกเกจที่กำหนด\n" -" pkgnames - แสดงรายชื่อแพกเกจทั้งหมด\n" -" dotty - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป GraphViz\n" -" xvcg - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป xvcg\n" -" policy - แสดงค่าตั้งนโยบาย\n" -"\n" -"ตัวเลือก:\n" -" -h แสดงข้อความช่วยเหลือนี้\n" -" -p=? แฟ้มแคชของแพกเกจ\n" -" -s=? แฟ้มแคชของซอร์ส\n" -" -q ปิดแถบแสดงความคืบหน้า\n" -" -i แสดงเฉพาะข้อมูลความเชื่อมโยงที่สำคัญสำหรับคำสั่ง unmet\n" -" -c=? อ่านแฟ้มค่าตั้งนี้\n" -" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-cache(8) และ apt.conf(5)\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "กรุณาตั้งชื่อแผ่น เช่น 'Debian 5.0.3 Disk 1'" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "คอมไพล์นิพจน์เรกิวลาร์ไม่สำเร็จ - %s" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "แคชมีระบบนับรุ่นที่ไม่ตรงกัน" -#: cmdline/apt-cdrom.cc:139 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "ไม่สามารถเมานท์ '%s' ที่ '%s'" - -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"การตรวจซีดีรอมอัตโนมัติไม่พบซีดีรอมใดที่จุดเมานท์ปริยาย\n" -"คุณอาจลองใช้ตัวเลือก --cdrom เพื่อกำหนดจุดเมานท์ของซีดีรอมได้\n" -"อ่านข้อมูลเพิ่มเติมเกี่ยวกับการตรวจซีดีรอมอัตโนมัติและจุดเมานท์ได้จาก 'man apt-cdrom'" +msgid "Error occurred while processing %s (%s%d)" +msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (%s%d)" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีดีที่เหลือในชุด" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "อาร์กิวเมนต์ไม่ได้ระบุเป็นคู่ๆ" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนรุ่นแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: cmdline/apt-config.cc:89 -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 "" -"วิธีใช้: apt-config [ตัวเลือก] คำสั่ง\n" -"\n" -"apt-config เป็นเครื่องมือง่ายๆ ที่ใช้อ่านแฟ้มค่าตั้ง APT\n" -"\n" -"คำสั่ง:\n" -" shell - โหมดเชลล์\n" -" dump - แสดงค่าตั้ง\n" -"\n" -"ตัวเลือก:\n" -" -h ข้อความช่วยเหลือนี้\n" -" -c=? อ่านแฟ้มค่าตั้งที่กำหนด\n" -" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนคำบรรยายแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "ไม่พบแพกเกจสำหรับสถาปัตยกรรม '%s'" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนความสัมพันธ์ระหว่างแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: cmdline/apt-get.cc:327 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "ไม่พบแพกเกจ '%s' ที่มีรุ่นเป็น '%s'" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม" -#: cmdline/apt-get.cc:330 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "ไม่พบแพกเกจ '%s' ที่มีชุดจัดแจกเป็น '%s'" +msgid "Couldn't stat source package list %s" +msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "จะเลือก '%s' เป็นแพกเกจซอร์สแทน '%s'\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "กำลังอ่านรายชื่อแพกเกจ" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "ไม่พบรุ่น '%s' ของแพกเกจ '%s'" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Couldn't find package %s" -msgstr "ไม่พบแพกเกจ %s" +msgid "Unable to write to %s" +msgstr "ไม่สามารถเขียนลงแฟ้ม %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "กำหนด %s ให้เป็นการติดตั้งแบบอัตโนมัติแล้ว\n" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "ส่งสภาวการณ์ไปยังกลไกการแก้ปัญหา" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark auto' และ 'apt-mark manual' แทน" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "ส่งคำสั่งไปยังกลไกการแก้ปัญหา" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "เตรียมรับคำตอบ" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "กลไกการแก้ปัญหาภายนอกทำงานล้มเหลวโดยไม่มีข้อความข้อผิดพลาดที่เหมาะสม" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "เรียกกลไกการแก้ปัญหาภายนอก" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "ผลรวมแฮชไม่ตรงกัน" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "ขนาดไม่ตรงกัน" + +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "รูปแบบของแฟ้มไม่ถูกต้อง" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"ข้อสังเกต: การจัดทำแพกเกจ '%s' พัฒนาผ่านระบบควบคุมรุ่น '%s' อยู่ที่:\n" -"%s\n" +"ไม่พบรายการ '%s' ที่ต้องการในแฟ้ม Release (รายการ sources.list ไม่ถูกต้อง " +"หรือแฟ้มผิดรูปแบบ)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "ไม่พบผลรวมแฮชสำหรับ '%s' ในแฟ้ม Release" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "ไม่มีกุญแจสาธารณะสำหรับกุญแจหมายเลขต่อไปนี้:\n" + +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"กรุณาใช้:\n" -"bzr branch %s\n" -"เพื่อดึงรุ่นล่าสุด (ที่อาจยังไม่ปล่อยออกมา) ของตัวแพกเกจ\n" +"แฟ้ม Release สำหรับ %s หมดอายุแล้ว (ตั้งแต่ %s ที่แล้ว) จะไม่ใช้รายการปรับรุ่นต่างๆ " +"ของคลังแพกเกจนี้" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "ชุดจัดแจกขัดแย้งกัน: %s (ต้องการ %s แต่พบ %s)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"เกิดข้อผิดพลาดขณะตรวจสอบลายเซ็น จะไม่ปรับข้อมูลคลังแพกเกจนี้ และจะใช้แฟ้มดัชนีเก่า " +"ข้อผิดพลาดจาก GPG: %s: %s\n" -#: cmdline/apt-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "You don't have enough free space in %s" -msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" +msgid "GPG error: %s: %s" +msgstr "ข้อผิดพลาดจาก GPG: %s: %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:891 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n" +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 คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง (ไม่มี arch)" -#. 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:896 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "ไม่พบแหล่งที่จะดาวน์โหลดรุ่น '%s' ของ '%s' ได้" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Fetch source %s\n" -msgstr "ดาวน์โหลดซอร์ส %s\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: (ชื่อแฟ้ม) สำหรับแพกเกจ %s" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "ไม่สามารถดาวน์โหลดบางแฟ้ม" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "บล็อคผู้ผลิต %s ไม่มีลายนิ้วมือ" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "ไม่มีไดเรกทอรีรายชื่อแพกเกจ %spartial" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "จะข้ามการแตกซอร์สของซอร์สที่แตกไว้แล้วใน %s\n" +msgid "Archives directory %spartial is missing." +msgstr "ไม่มีไดเรกทอรีแพกเกจ %spartial" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "คำสั่งแตกแฟ้ม '%s' ล้มเหลว\n" +msgid "Unable to lock directory %s" +msgstr "ไม่สามารถล็อคไดเรกทอรี %s" -#: cmdline/apt-get.cc:963 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "กรุณาตรวจสอบว่าได้ติดตั้งแพกเกจ 'dpkg-dev' แล้ว\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li (เหลืออีก %s)" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "คำสั่ง build '%s' ล้มเหลว\n" +msgid "Retrieving file %li of %li" +msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "โพรเซสลูกล้มเหลว" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "ไม่สามารถดาวน์โหลด %s %s\n" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะตรวจสอบสิ่งที่ต้องการสำหรับการ build" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "ดาวน์โหลดแฟ้มดัชนีบางแฟ้มไม่สำเร็จ จะข้ามรายการดังกล่าวไป หรือใช้ข้อมูลเก่าแทน" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "คุณต้องเพิ่ม URI ชนิด 'source' ใน sources.list ของคุณด้วย" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"ไม่มีข้อมูลสถาปัตยกรรมสำหรับ %s ดูวิธีตั้งค่าที่หัวข้อ APT::Architectures ของ apt.conf(5)" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "ค่า '%s' ไม่สามารถใช้กับ APT::Default-Release ได้ เนื่องจากรุ่นดังกล่าวไม่มีในแหล่ง" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "ระเบียนผิดรูปแบบในแฟ้มค่าปรับแต่ง %s: ไม่มีข้อมูลส่วนหัว 'Package'" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n" +msgid "Did not understand pin type %s" +msgstr "ไม่เข้าใจชนิดการตรึง %s" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่สามารถใช้ %s กับแพกเกจ '%s' ได้" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "ไม่ได้ระบุลำดับความสำคัญ (หรือค่าศูนย์) สำหรับการตรึง" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่พบแพกเกจ %s" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"ไม่สามารถตั้งค่า '%s' แบบทันทีได้ กรุณาอ่านรายละเอียดเพิ่มเติมจาก man 5 apt.conf ที่หัวข้อ " +"APT::Immediate-Configure (%d)" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: แพกเกจ %s ที่ติดตั้งไว้ใหม่เกินไป" +msgid "Could not configure '%s'. " +msgstr "ไม่สามารถตั้งค่า '%s'" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"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 "" -"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s " -"รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้" +"การติดตั้งครั้งนี้จำเป็นต้องลบแพกเกจ %s ชั่วคราว " +"อันเนื่องมาจากความขัดแย้งหรือความขึ้นต่อกันระหว่างติดตั้งที่เป็นวงรอบ " +"ซึ่งแพกเกจดังกล่าวเป็นแพกเกจที่จำเป็นสำหรับระบบ การลบดังกล่าวมักเป็นอันตราย " +"แต่ถ้าคุณต้องการทำเช่นนั้นจริงๆ ก็ให้เปิดตัวเลือก APT::Force-LoopBreak" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะ %s ไม่มีรุ่นที่ติดตั้งได้" +msgid "Line %u too long in source list %s." +msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ยาวเกินไป" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "กำลังเลิกเมานท์ซีดีรอม...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: %s" +msgid "Using CD-ROM mount point %s\n" +msgstr "กำลังใช้จุดเมานท์ซีดีรอม %s\n" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "กำลังรอแผ่น...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "กำลังเมานท์ซีดีรอม...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "กำลังตรวจสอบชื่อแผ่น... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้" +msgid "Stored label: %s\n" +msgstr "ชื่อที่เก็บไว้: %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "กำลังสำรวจข้อมูลในแผ่นเพื่อหาแฟ้มดัชนี...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "Changelog for %s (%s)" -msgstr "ปูมการแก้ไขสำหรับ %s (%s)" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"พบดัชนีแพกเกจ %zu รายการ, ดัชนีซอร์ส %zu รายการ, ดัชนีคำแปล %zu รายการ และลายเซ็น " +"%zu รายการ\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "มอดูลที่รองรับ:" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "ไม่พบแฟ้มแพกเกจใดๆ บางทีแผ่นนี้อาจจะไม่ใช่แผ่นเดเบียน หรือสถาปัตยกรรมอาจไม่ถูกต้อง" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "พบชื่อแผ่น '%s'\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "ไม่ใช่ชื่อที่ใช้ได้ กรุณาลองใหม่\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format 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 "" -"วิธีใช้: apt-get [ตัวเลือก] คำสั่ง\n" -" apt-get [ตัวเลือก] install|remove pkg1 [pkg2 ...]\n" -" apt-get [ตัวเลือก] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get เป็นคำสั่งง่ายๆ สำหรับดาวน์โหลดและติดตั้งแพกเกจ คำสั่งที่ใช้บ่อยที่สุดก็คือ\n" -"update และ install\n" -"\n" -"คำสั่ง:\n" -" update - ดาวน์โหลดรายชื่อแพกเกจชุดใหม่\n" -" upgrade - ปรับรุ่นแพกเกจต่างๆ ขึ้น\n" -" install - ติดตั้งแพกเกจใหม่ (pkg อยู่ในรูปเช่น libc6 ไม่ใช่ libc6.deb)\n" -" remove - ถอดถอนแพกเกจ\n" -" autoremove - ถอดถอนแพกเกจที่ไม่ใช้แล้วโดยอัตโนมัติ\n" -" purge - ถอดถอนแพกเกจพร้อมลบค่าตั้งทั้งหมด\n" -" source - ดาวน์โหลดซอร์สโค้ดของแพกเกจ\n" -" build-dep - ติดตั้งสิ่งที่จำเป็นสำหรับการประกอบสร้างแพกเกจซอร์สโค้ด\n" -" dist-upgrade - ปรับรุ่นขึ้นแบบข้ามรุ่นจัดแจก ดู apt-get(8)\n" -" dselect-upgrade - ทำตามสิ่งที่เลือกโดย dselect\n" -" clean - ลบแฟ้มแพกเกจที่ดาวน์โหลดมา\n" -" autoclean - ลบแฟ้มแพกเกจเก่าที่ดาวน์โหลดมา\n" -" check - ตรวจสอบว่าไม่มีความเชื่อมโยงที่เสียระหว่างแพกเกจ\n" -" changelog - ดาวน์โหลดและแสดงปูมการแก้ไขของแพกเกจที่กำหนด\n" -" download - ดาวน์โหลดแพกเกจไบนารีลงในไดเรกทอรีปัจจุบัน\n" -"\n" -"ตัวเลือก:\n" -" -h แสดงข้อความช่วยเหลือนี้\n" -" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n" -" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n" -" -d ดาวน์โหลดอย่างเดียว - *ไม่ต้อง* ติดตั้งหรือแตกแพกเกจ\n" -" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n" -" -y ตอบ Yes สำหรับทุกคำถามโดยไม่ต้องถาม\n" -" -f พยายามแก้ไขระบบในกรณีที่มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ\n" -" -m พยายามดำเนินการต่อถ้าหาแฟ้มแพกเกจไม่พบ\n" -" -u แสดงรายชื่อของแพกเกจที่จะปรับรุ่นทั้งหมดด้วย\n" -" -b build แพกเกจซอร์สหลังจากดาวน์โหลดมาแล้วด้วย\n" -" -V แสดงเลขรุ่นแบบยาวของโปรแกรม\n" -" -c=? อ่านแฟ้มค่าตั้งนี้\n" -" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -"กรุณาอ่านข้อมูลและตัวเลือกเพิ่มเติมจาก manual page apt-get(8), sources.list(5)\n" -"และ apt.conf(5)\n" -" APT นี้มีพลังของ Super Cow\n" - -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "ต้องระบุคู่ URL, ชื่อแฟ้ม อย่างน้อยหนึ่งคู่" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "ดาวน์โหลดไม่สำเร็จ" - -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"This disc is called: \n" +"'%s'\n" msgstr "" -"วิธีใช้: apt-helper [ตัวเลือก] คำสั่ง\n" -" apt-helper [ตัวเลือก] download-file URI พาธปลายทาง\n" -"\n" -"apt-helper เป็นโปรแกรมช่วยเหลือภายในของ apt\n" -"\n" -"คำสั่ง:\n" -" download-file - ดาวน์โหลด URI ที่กำหนดลงในพาธปลายทาง\n" -"\n" -" โปรแกรมช่วยเหลือของ APT นี้มีพลัง Super Meep\n" - -#: cmdline/apt-mark.cc:68 -#, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s ไม่สามารถทำเครื่องหมายได้ เพราะไม่ได้ติดตั้งไว้\n" - -#: cmdline/apt-mark.cc:74 -#, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบเลือกเองอยู่ก่อนแล้ว\n" - -#: cmdline/apt-mark.cc:76 -#, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบอัตโนมัติอยู่ก่อนแล้ว\n" - -#: cmdline/apt-mark.cc:241 -#, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ถูกกำหนดให้คงรุ่นอยู่ก่อนแล้ว\n" - -#: cmdline/apt-mark.cc:243 -#, c-format -msgid "%s was already not hold.\n" -msgstr "%s ไม่ได้คงรุ่นอยู่ก่อนแล้ว\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "รอโพรเซส %s แต่ตัวโพรเซสไม่อยู่" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, c-format -msgid "%s set on hold.\n" -msgstr "กำหนด %s ให้คงรุ่นแล้ว\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, c-format -msgid "Canceled hold on %s.\n" -msgstr "ยกเลิกการคงรุ่นของ %s แล้ว\n" +"แผ่นนี้เรียกชื่อว่า:\n" +"'%s'\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "เรียกทำงาน dpkg ไม่สำเร็จ คุณเป็น root หรือเปล่า?" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "กำลังคัดลอกรายชื่อแพกเกจ..." -#: cmdline/apt-mark.cc:392 -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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" -"วิธีใช้: apt-mark [ตัวเลือก] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark เป็นเครื่องมือบรรทัดคำสั่งอย่างง่ายสำหรับทำเครื่องหมายแพกเกจ\n" -"ว่าเป็นการติดตั้งแบบเลือกเองหรือแบบอัตโนมัติ และสามารถแสดงการทำเครื่องหมายต่างๆ ได้ด้วย\n" -"\n" -"คำสั่ง:\n" -" auto - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการติดตั้งแบบอัตโนมัติ\n" -" manual - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการติดตั้งแบบเลือกเอง\n" -" hold - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการคงรุ่น\n" -" unhold - ลบการทำเครื่องหมายการคงรุ่นจากแพกเกจที่กำหนด\n" -" showauto - แสดงรายชื่อของแพกเกจที่ติดตั้งแบบอัตโนมัติ\n" -" showmanual - แสดงรายชื่อของแพกเกจที่ติดตั้งแบบเลือกเอง\n" -" showhold - แสดงรายชื่อของแพกเกจที่คงรุ่นอยู่\n" -"\n" -"ตัวเลือก:\n" -" -h แสดงข้อความช่วยเหลือนี้\n" -" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n" -" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n" -" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n" -" -f อ่าน/เขียน เครื่องหมาย อัตโนมัติ/เลือกเอง ในแฟ้มที่กำหนด\n" -" -c=? อ่านแฟ้มค่าตั้งนี้\n" -" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-mark(8) และ apt.conf(5)" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "กำลังเขียนรายชื่อแหล่งแพกเกจแหล่งใหม่\n" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" -"วิธีใช้: apt [ตัวเลือก] คำสั่ง\n" -"\n" -"บรรทัดคำสั่งสำหรับ apt\n" -"คำสั่งพื้นฐาน:\n" -" list - แสดงรายชื่อแพกเกจที่มีชื่อตรงกับรูปแบบที่กำหนด\n" -" search - ค้นหาในคำบรรยายแพกเกจ\n" -" show - แสดงรายละเอียดของแพกเกจ\n" -"\n" -" update - ปรับข้อมูลรายชื่อของแพกเกจที่มี\n" -"\n" -" install - ติดตั้งแพกเกจ\n" -" remove - ถอดถอนแพกเกจ\n" -"\n" -" upgrade - ปรับรุ่นระบบโดยติดตั้ง/ปรับรุ่นแพกเกจต่างๆ\n" -" full-upgrade - ปรับรุ่นระบบโดยถอดถอน/ติดตั้ง/ปรับรุ่นแพกเกจต่างๆ\n" -"\n" -" edit-sources - แก้ไขแฟ้มข้อมูลแหล่งแพกเกจ\n" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n" -#: methods/cdrom.cc:203 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "ไม่สามารถอ่านฐานข้อมูลซีดีรอม %s" - -#: 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 "" -"กรุณาใช้ apt-cdrom เพื่อให้ APT รู้จักซีดีรอมนี้ apt-get update ไม่สามารถใช้เพิ่มซีดีรอมใหม่ได้" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "ซีดีรอมผิดแผ่น" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "ไม่สามารถเลิกเมานท์ซีดีรอมใน %s แผ่นอาจกำลังถูกใช้งานอยู่" - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "ไม่พบแผ่น" - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "ไม่พบแฟ้ม" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "stat ไม่สำเร็จ" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "กำหนดเวลาแก้ไขไม่สำเร็จ" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย " +"อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI ไม่ถูกต้อง URI ของแฟ้มในเครื่องต้องขึ้นต้นด้วย //" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "เข้าระบบ" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "กำลังสร้างโครงสร้างลำดับความสัมพันธ์" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "ไม่สามารถอ่านชื่อของอีกฝ่ายได้" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "รุ่นแพกเกจที่มี" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "ไม่สามารถอ่านชื่อของเครื่องนี้ได้" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "สร้างลำดับความสัมพันธ์" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "เซิร์ฟเวอร์ปฏิเสธการเชื่อมต่อโดยรายงานว่า: %s" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "กำลังอ่านข้อมูลสถานะ" -#: methods/ftp.cc:225 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" +msgid "Failed to open StateFile %s" +msgstr "ไม่สามารถเปิดแฟ้มสถานะ %s" -#: methods/ftp.cc:232 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" - -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "มีการระบุพร็อกซี แต่ไม่มีสคริปต์สำหรับเข้าระบบ ค่า Acquire::ftp:ProxyLogin ว่างเปล่า" +msgid "Failed to write temporary StateFile %s" +msgstr "ไม่สามารถเขียนแฟ้มสถานะชั่วคราว %s" -#: methods/ftp.cc:280 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" +msgid "Unable to parse package file %s (1)" +msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (1)" -#: methods/ftp.cc:306 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "หมดเวลารอเชื่อมต่อ" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "เซิร์ฟเวอร์ปิดการเชื่อมต่อ" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "การอ่านข้อมูลผิดพลาด" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "คำตอบท่วมบัฟเฟอร์" - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "มีความเสียหายของโพรโทคอล" +msgid "Unable to parse package file %s (2)" +msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (2)" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "การเขียนข้อมูลผิดพลาด" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "ไม่พบรุ่นย่อย '%s' ของ '%s'" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "ไม่สามารถสร้างซ็อกเก็ต" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "ไม่พบรุ่น '%s' ของ '%s'" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "ไม่สามารถเชื่อมต่อซ็อกเก็ตข้อมูล เนื่องจากหมดเวลาคอย" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "ไม่พบแพกเกจ %s" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "ล้มเหลว" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "ไม่พบงานติดตั้ง '%s'" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "ไม่สามารถเชื่อมต่อซ็อกเกตแบบ passive" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "ไม่พบแพกเกจที่ตรงกับนิพจน์เรกิวลาร์ '%s'" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้" +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "ไม่พบแพกเกจที่ตรงกับ glob '%s'" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "ไม่สามารถ bind ซ็อกเก็ต" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "ไม่สามารถเลือกรุ่นต่างๆ ของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "ไม่สามารถ listen ที่ซ็อกเก็ต" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"ไม่สามารถเลือกรุ่นที่ติดตั้งไว้หรือรุ่นสำหรับติดตั้งของแพกเกจ '%s' ได้ เนื่องจากไม่มีทั้งสองอย่าง" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "ไม่สามารถระบุชื่อซ็อกเก็ต" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "ไม่สามารถเลือกรุ่นใหม่ที่สุดของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "ไม่สามารถส่งคำสั่ง PORT" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "ไม่สามารถเลือกรุ่นสำหรับติดตั้งของแพกเกจ '%s' ได้ เนื่องจากไม่มีรุ่นสำหรับติดตั้ง" -#: methods/ftp.cc:802 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "ไม่รู้จักตระกูลที่อยู่ %u (AF_*)" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "ไม่สามารถเลือกรุ่นที่ติดตั้งไว้ของแพกเกจ '%s' ได้ เนื่องจากแพกเกจไม่ได้ติดตั้งไว้" -#: methods/ftp.cc:811 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" +msgid "Unable to parse Release file %s" +msgstr "ไม่สามารถแจงแฟ้ม Release %s" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "หมดเวลารอเชื่อมต่อซ็อกเก็ตข้อมูล" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "ไม่มีหัวข้อย่อยในแฟ้ม Release %s" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "ไม่สามารถรับการเชื่อมต่อ" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "ไม่มีรายการแฮชในแฟ้ม Release %s" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "เกิดปัญหาขณะคำนวณค่าแฮชของแฟ้ม" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "รายการ 'Valid-Until' ไม่ถูกต้องในแฟ้ม Release %s" -#: methods/ftp.cc:890 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "ไม่สามารถดาวน์โหลดแฟ้ม เซิร์ฟเวอร์ตอบว่า: '%s'" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "รายการ 'Date' ไม่ถูกต้องในแฟ้ม Release %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "หมดเวลาคอยที่ซ็อกเก็ตข้อมูล" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" -#: methods/ftp.cc:935 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "ถ่ายโอนข้อมูลไม่สำเร็จ เซิร์ฟเวอร์ตอบว่า '%s'" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([ตัวเลือก] แจงไม่ผ่าน)" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "สอบถาม" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([ตัวเลือก] สั้นเกินไป)" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "ไม่สามารถเรียก " +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] ไม่ใช่การกำหนดค่า)" -#: methods/connect.cc:76 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Connecting to %s (%s)" -msgstr "เชื่อมต่อไปยัง %s (%s)" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] ไม่มีคีย์)" -#: methods/connect.cc:87 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] คีย์ %s ไม่มีค่า)" -#: methods/connect.cc:94 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "ไม่สามารถสร้างซ็อกเก็ตสำหรับ %s (f=%u t=%u p=%u)" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (URI)" -#: methods/connect.cc:100 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist)" -#: methods/connect.cc:108 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s) เนื่องจากหมดเวลาคอย" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" -#: methods/connect.cc:126 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s)" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist แบบสัมบูรณ์)" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Connecting to %s" -msgstr "เชื่อมต่อไปยัง %s" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง dist)" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Could not resolve '%s'" -msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'" +msgid "Opening %s" +msgstr "กำลังเปิด %s" -#: methods/connect.cc:205 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "เกิดความล้มเหลวชั่วคราวขณะเปิดหาที่อยู่ '%s'" +msgid "Malformed line %u in source list %s (type)" +msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ชนิด)" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "เกิดข้อผิดพลาดในระบบขณะเปิดหาที่อยู่ '%s:%s'" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i - %s)" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "ไม่รู้จักชนิด '%s' ที่วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s:" +msgid "Installing %s" +msgstr "กำลังติดตั้ง %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "ข้อผิดพลาดภายใน: ลายเซ็นใช้การได้ แต่ไม่สามารถระบุลายนิ้วมือของกุญแจ?!" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "กำลังตั้งค่า %s" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "พบลายเซ็นที่ใช้การไม่ได้อย่างน้อยหนึ่งรายการ" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "กำลังถอดถอน %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "ไม่สามารถเรียก 'gpgv' เพื่อตรวจสอบลายเซ็น (ได้ติดตั้ง gpgv ไว้หรือไม่?)" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "กำลังถอดถอน %s อย่างสมบูรณ์" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" -"แฟ้มที่เซ็นกำกับครอบข้อความมีเนื้อหาไม่ถูกต้อง ได้รับผลลัพธ์ " -"'%s' (เครือข่ายต้องยืนยันตัวบุคคลหรือไม่?)" +msgid "Noting disappearance of %s" +msgstr "กำลังจดบันทึกการหายไปของ %s" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุขณะเรียก gpgv" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "กำลังเรียกการสะกิด %s หลังการติดตั้ง" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "ลายเซ็นต่อไปนี้ใช้การไม่ได้:\n" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "ไม่มีไดเรกทอรี '%s'" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "ลายเซ็นต่อไปนี้ไม่สามารถตรวจสอบได้ เพราะไม่มีกุญแจสาธารณะ:\n" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "ไม่สามารถเปิดแฟ้ม '%s'" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "แฟ้มว่างเปล่าไม่สามารถเป็นแฟ้มจัดเก็บที่ใช้การได้" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "กำลังเตรียม %s" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "กำลังแตกแพกเกจ %s" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์ ปลายทางอีกด้านหนึ่งปิดการเชื่อมต่อ" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "กำลังเตรียมตั้งค่า %s" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "ติดตั้ง %s แล้ว" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "กำลังเตรียมถอดถอน %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select ไม่สำเร็จ" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "ถอดถอน %s แล้ว" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "หมดเวลารอเชื่อมต่อ" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "กำลังเตรียมถอดถอน %s อย่างสมบูรณ์" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "ถอดถอน %s อย่างสมบูรณ์แล้ว" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "รอหัวข้อมูล" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) ล้มเหลว" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "บรรทัดข้อมูลส่วนหัวผิดพลาด" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, c-format +msgid "Can not write log (%s)" +msgstr "ไม่สามารถเขียนปูม (%s)" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัวตอบมาไม่ถูกต้อง" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "ได้เมานท์ /dev/pts ไว้หรือไม่?" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูกต้อง" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "stdout เป็นเทอร์มินัลหรือไม่?" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Range มาไม่ถูกต้อง" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "รอโพรเซส %s แต่ตัวโพรเซสไม่อยู่" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ HTTP ผิดพลาด" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "ปฏิบัติการถูกขัดจังหวะก่อนที่จะสามารถทำงานเสร็จ" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "ไม่มีการเขียนรายงาน apport เพราะถึงขีดจำกัด MaxReports แล้ว" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "ข้อมูลส่วนหัวผิดพลาด" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "มีปัญหาความขึ้นต่อกัน - จะทิ้งไว้โดยไม่ตั้งค่า" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "เชื่อมต่อไม่สำเร็จ" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเป็นสิ่งที่ตามมาจากข้อผิดพลาดก่อนหน้า" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "ข้อผิดพลาดภายใน" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากดิสก์เต็ม" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "กำลังคำนวณการปรับรุ่น... " +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากหน่วยความจำเต็ม" -#: apt-private/private-upgrade.cc:30 -msgid "Internal error, Upgrade broke stuff" -msgstr "เกิดข้อผิดพลาดภายใน: การปรับรุ่นทำความเสียหาย" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากปัญหาของระบบในเครื่อง" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "เสร็จแล้ว" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากปัญหาการอ่าน/เขียนของ dpkg" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "กำลังเรียงลำดับ" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "ไม่สามารถล็อคไดเรกทอรีดูแลระบบ (%s) มีโพรเซสอื่นใช้งานอยู่หรือเปล่า?" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "กำลังแสดงรายชื่อ" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "ไม่สามารถล็อคไดเรกทอรีดูแลระบบ (%s) คุณเป็น root หรือเปล่า?" -#: apt-private/private-list.cc:164 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "มีอีก %i รุ่น กรุณาใช้ตัวเลือก '-a' หากต้องการดูเพิ่ม" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg ถูกขัดจังหวะ คุณต้องเรียก '%s' เองเพื่อแก้ปัญหา" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "กำลังแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจ..." +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "ไม่ได้ล็อคอยู่" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ล้มเหลว" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%liวัน %liชม. %liนาที %liวิ" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "ไม่สามารถแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจได้" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%liชม. %liนาที %liวิ" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "ไม่สามารถจำกัดรายการปรับรุ่นให้น้อยที่สุดได้" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liนาที %liวิ" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " เสร็จแล้ว" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liวิ" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "คุณอาจต้องเรียก 'apt-get -f install' เพื่อแก้ปัญหาเหล่านี้" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "ไม่พบรายการเลือก %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "รายการแพกเกจที่ต้องใช้ไม่ครบ กรุณาลองใช้ตัวเลือก -f" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่อ่านได้อย่างเดียว" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "ไม่ทราบ" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "ไม่สามารถเปิดแฟ้มล็อค %s" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[ติดตั้งอยู่,สามารถปรับรุ่นเป็น: %s]" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่เมานท์ผ่าน nfs" -#: apt-private/private-output.cc:237 -msgid "[installed,local]" -msgstr "[ติดตั้งอยู่,ในเครื่อง]" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "ไม่สามารถล็อค %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "[ติดตั้งอยู่,ถอดถอนอัตโนมัติได้]" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "ไม่สามารถสร้างรายชื่อแฟ้มได้ เนื่องจาก '%s' ไม่ใช่ไดเรกทอรี" -#: apt-private/private-output.cc:242 -msgid "[installed,automatic]" -msgstr "[ติดตั้งอยู่,อัตโนมัติ]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่ใช่แฟ้มธรรมดา" -#: apt-private/private-output.cc:244 -msgid "[installed]" -msgstr "[ติดตั้งอยู่]" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่มีส่วนขยายในชื่อแฟ้ม" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "[upgradable from: %s]" -msgstr "[สามารถปรับรุ่นจาก: %s]" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากส่วนขยายในชื่อแฟ้มไม่สามารถใช้การได้" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "[ค่าตั้งตกค้าง]" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "โพรเซสย่อย %s เกิดข้อผิดพลาดของการใช้ย่านหน่วยความจำ (segmentation fault)" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "แพกเกจต่อไปนี้ขาดแพกเกจที่ต้องใช้:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "โพรเซสย่อย %s ได้รับสัญญาณ %u" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "but %s is installed" -msgstr "แต่รุ่นที่ติดตั้งไว้คือ %s" +msgid "Sub-process %s returned an error code (%u)" +msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "but %s is to be installed" -msgstr "แต่รุ่นที่จะติดตั้งคือ %s" +msgid "Sub-process %s exited unexpectedly" +msgstr "โพรเซสย่อย %s จบการทำงานกะทันหัน" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "แต่ไม่สามารถติดตั้งได้" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "การเขียนข้อมูลผิดพลาด" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "แต่แพกเกจนี้เป็นแพกเกจเสมือน" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "เกิดปัญหาขณะปิดแฟ้ม gzip %s" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "แต่ได้ติดตั้งไว้" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "ไม่สามารถเปิดแฟ้ม %s" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "แต่แพกเกจนี้จะไม่ถูกติดตั้ง" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "ไม่สามารถเปิด file destriptor %d" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " หรือ" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "สร้าง IPC ของโพรเซสย่อยไม่สำเร็จ" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "จะติดตั้งแพกเกจ *ใหม่* ต่อไปนี้:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "เรียกทำงานตัวบีบอัดไม่สำเร็จ" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "จะ *ลบ* แพกเกจต่อไปนี้:" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "การอ่านข้อมูลผิดพลาด" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "จะคงรุ่นแพกเกจต่อไปนี้:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "read: ยังเหลือ %llu ที่ยังไม่ได้อ่าน แต่ข้อมูลหมดแล้ว" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ขึ้น:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "write: ยังเหลือ %llu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ *ลง*:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "เกิดปัญหาขณะปิดแฟ้ม %s" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "จะเปลี่ยนแปลงรายการคงรุ่นแพกเกจต่อไปนี้:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "เกิดปัญหาขณะเปลี่ยนชื่อแฟ้ม %s ไปเป็น %s" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "%s (due to %s) " -msgstr "%s (เนื่องจาก %s) " +msgid "Problem unlinking the file %s" +msgstr "เกิดปัญหาขณะลบแฟ้ม %s" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"*คำเตือน*: แพกเกจที่จำเป็นต่อไปนี้จะถูกถอดถอน\n" -"คุณ *ไม่ควร* ทำเช่นนี้ นอกจากคุณเข้าใจสิ่งที่จะทำ!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "เกิดปัญหาขณะ sync แฟ้ม" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, " +msgid "%c%s... Error!" +msgstr "%c%s... ผิดพลาด!" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu reinstalled, " -msgstr "ติดตั้งซ้ำ %lu, " +msgid "%c%s... Done" +msgstr "%c%s... เสร็จแล้ว" -#: apt-private/private-output.cc:700 -#, c-format -msgid "%lu downgraded, " -msgstr "ปรับรุ่นลง %lu, " +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-output.cc:702 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n" +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "ไม่สามารถ mmap แฟ้มเปล่า" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[Y/n]" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "ไม่สามารถทำซ้ำ file descriptor %i" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "ไม่สามารถสร้าง mmap ขนาด %llu ไบต์" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "ไม่สามารถปิด mmap" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "ไม่สามารถปรับ mmap ให้ตรงกัน" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Regex compilation error - %s" -msgstr "คอมไพล์นิพจน์เรกิวลาร์ไม่สำเร็จ - %s" +msgid "Couldn't make mmap of %lu bytes" +msgstr "ไม่สามารถสร้าง mmap ขนาด %lu ไบต์" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "ไม่สามารถตัดท้ายแฟ้ม" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"MMap แบบพลวัตมีเนื้อที่ไม่พอ กรุณาเพิ่มขนาดของ APT::Cache-Start ค่าปัจจุบัน: %lu (man 5 " +"apt.conf)" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "มีอีก %i ระเบียน กรุณาใช้ตัวเลือก '-a' หากต้องการดูเพิ่ม" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "ไม่ใช่แพกเกจจริง (เสมือน)" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจากถึงขีดจำกัด %lu ไบต์แล้ว" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจากผู้ใช้ปิดการขยายขนาดอัตโนมัติ" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "ไม่สามารถ stat จุดเมานท์ %s" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "ไม่สามารถ stat ซีดีรอม" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "แปลกประหลาด... ขนาดไม่ตรงกัน กรุณาอีเมลแจ้ง apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "พบตัวย่อของชนิดที่ข้อมูลไม่รู้จัก: '%c'" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "ต้องดาวน์โหลดแพกเกจ %sB/%sB\n" +msgid "Opening configuration file %s" +msgstr "ขณะเปิดแฟ้มค่าตั้ง %s" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "ต้องดาวน์โหลดแพกเกจ %sB\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "ไวยากรณ์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "หลังจากการกระทำนี้ ต้องใช้เนื้อที่บนดิสก์อีก %sB\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: แท็กผิดรูปแบบ" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "หลังจากการกระทำนี้ เนื้อที่บนดิสก์จะว่างเพิ่มอีก %sB\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังค่า" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "You don't have enough free space in %s." -msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "มีปัญหาบางประการ และมีการใช้ -y โดยไม่ระบุ --force-yes" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: ใช้ include ซ้อนกันมากเกินไป" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Trivial Only ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: include จากที่นี่" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รองรับ" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/configuration.cc:900 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"คุณกำลังจะทำสิ่งที่อาจเป็นอันตราย\n" -"หากต้องการดำเนินการต่อ ให้พิมพ์ประโยค '%s'\n" -" ?] " +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: directive 'clear' ต้องมีอาร์กิวเมนต์เป็นลำดับชั้นตัวเลือก" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "เลิกทำ" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังจบแฟ้ม" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่?" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "ไม่มีพวงกุญแจติดตั้งไว้ใน %s" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "ไม่รู้จักตัวเลือกบรรทัดคำสั่ง '%c' [จาก %s]" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"ดาวน์โหลดบางแพกเกจไม่สำเร็จ บางที การเรียก apt-get update หรือลองใช้ตัวเลือก --fix-" -"missing อาจช่วยได้" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "ไม่เข้าใจตัวเลือกบรรทัดคำสั่ง %s" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "ยังไม่รองรับ --fix-missing พร้อมกับการเปลี่ยนแผ่น" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "ตัวเลือกบรรทัดคำสั่ง %s ไม่ได้เป็นค่าบูลีน" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "ตัวเลือก %s ต้องมีอาร์กิวเมนต์" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "จะล้มเลิกการติดตั้ง" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "ตัวเลือก %s: การกำหนดรายการค่าตั้งต้องมี =<val>" -#: apt-private/private-install.cc:365 -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] "" -"แพกเกจต่อไปนี้ได้หายไปจากระบบของคุณ เพราะแฟ้มทั้งหมดได้ถูกแทนที่\n" -"โดยแพกเกจอื่นแล้ว:" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "ตัวเลือก %s ต้องการอาร์กิวเมนต์จำนวนเต็ม ไม่ใช่ '%s'" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยอัตโนมัติโดยเจตนา" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "ตัวเลือก '%s' ยาวเกินไป" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "ไม่เข้าใจค่าบูลีน %s กรุณาลองใช้ true หรือ false" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"ดูเหมือนการถอดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเกิดขึ้น\n" -"กรุณารายงานบั๊กนี้ของแพกเกจ apt" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "ไม่รู้จักคำสั่ง %s" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "แพกเกจ %s รุ่น %s ขาดแพกเกจที่ต้องใช้:\n" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "จำนวนชื่อแพกเกจทั้งหมด: " -#: apt-private/private-install.cc:512 -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] "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "จำนวนโครงสร้างแพกเกจทั้งหมด: " -#: apt-private/private-install.cc:516 -#, 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-cache.cc:319 +msgid " Normal packages: " +msgstr " แพกเกจปกติ: " -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "ใช้ 'apt-get autoremove' เพื่อถอดถอนแพกเกจดังกล่าวได้" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " แพกเกจเสมือนแท้ๆ: " -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "คุณอาจเรียก 'apt-get -f install' เพื่อแก้ปัญหานี้ได้:" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " แพกเกจเสมือนที่มีแพกเกจจริงเดียว: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ " -"(หรือจะระบุทางแก้ก็ได้)" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " แพกเกจเสมือนผสม: " -#: apt-private/private-install.cc:628 -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 "" -"ไม่สามารถติดตั้งบางแพกเกจได้ คุณอาจระบุเงื่อนไขการติดตั้งที่เป็นไปไม่ได้\n" -"หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n" -"ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " แพกเกจที่ขาดหาย: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "แพกเกจมีปัญหา" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "จำนวนรุ่นที่แตกต่างกันทั้งหมด: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "จำนวนคำบรรยายแพกเกจที่แตกต่างกันทั้งหมด: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "แพกเกจที่แนะนำ:" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "จำนวนการเชื่อมโยงระหว่างแพกเกจทั้งหมด: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "แพกเกจที่ควรใช้ร่วมกัน:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "จำนวนความสัมพันธ์ รุ่น/แฟ้ม ทั้งหมด: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "จะข้าม %s เนื่องจากแพกเกจติดตั้งไว้แล้ว และไม่มีการกำหนดให้ปรับรุ่น\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "จำนวนความสัมพันธ์ คำบรรยาย/แฟ้ม ทั้งหมด: " -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "จะข้าม %s เนื่องจากแพกเกจไม่ได้ติดตั้งไว้ และคำสั่งมีเพียงการปรับรุ่นเท่านั้น\n" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "จำนวนผังการตระเตรียมทั้งหมด: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจากไม่สามารถดาวน์โหลดได้\n" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "จำนวนสตริงทั้งหมด: " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "ขนาดของพื้นที่ความเชื่อมโยงระหว่างแพกเกจทั้งหมด: " -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว\n" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "พื้นที่สำรองทั้งหมด: " -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว อันเนื่องมาจาก '%s'\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "พื้นที่ที่นับรวมทั้งหมด: " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน คุณหมายถึง '%s' หรือเปล่า?\n" +msgid "Package file %s is out of sync." +msgstr "ข้อมูลแฟ้ม Package %s ไม่ตรงกับความเป็นจริง" -#: apt-private/private-install.cc:937 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "ไม่พบแพกเกจ" -#: apt-private/private-main.cc:32 -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 "" -"หมายเหตุ: นี่เป็นเพียงการจำลองการทำงานเท่านั้น!\n" -" การทำงานจริงของ apt-get ต้องอาศัยสิทธิ์ผู้ดูแลระบบ\n" -" อย่าลืมด้วยว่าการล็อคก็ไม่ทำงานเช่นกัน\n" -" ดังนั้น อย่าถือผลลัพธ์นี้ว่าตรงกับสภาพความเป็นจริงของระบบ!" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "คุณต้องระบุแพตเทิร์นสำหรับค้นหาอย่างน้อยหนึ่งแพตเทิร์น" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "*คำเตือน*: แพกเกจต่อไปนี้ไม่สามารถยืนยันแหล่งต้นตอได้!" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark showauto' แทน" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "จะข้ามการเตือนเกี่ยวกับการยืนยันแหล่งต้นตอ\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "แฟ้มแพกเกจ:" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "มีบางแพกเกจไม่สามารถยืนยันแหล่งต้นตอได้" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "ข้อมูลแคชไม่ตรงกับความเป็นจริงแล้ว ไม่สามารถอ้างอิงไขว้ระหว่างแฟ้มแพกเกจ" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "จะติดตั้งแพกเกจเหล่านี้โดยไม่ตรวจสอบหรือไม่?" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "แพกเกจที่ถูกตรึง:" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "ไม่สามารถดาวน์โหลด %s %s\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ไม่พบ)" -#: apt-private/private-sources.cc:58 -#, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "แจง %s ไม่สำเร็จ จะแก้ไขอีกครั้งหรือไม่? " +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " ที่ติดตั้งอยู่: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "แฟ้ม '%s' ของคุณมีการเปลี่ยนแปลง กรุณาเรียก 'apt-get update'" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " รุ่นที่ติดตั้งได้: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "ค้นทั่วทั้งเนื้อความ" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ไม่มี)" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "เจอ " +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " การตรึงแพกเกจ: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "ดึง:" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " ตารางรุ่น:" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "ข้าม " +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n" + +#: cmdline/apt-cache.cc:1749 +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 "" +"วิธีใช้: apt-cache [ตัวเลือก] คำสั่ง\n" +" apt-cache [ตัวเลือก] add file1 [file2 ...]\n" +" apt-cache [ตัวเลือก] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [ตัวเลือก] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache เป็นเครื่องมือระดับล่างสำหรับสืบค้นข้อมูลจากแฟ้มแคชไบนารีของ APT\n" +"\n" +"คำสั่ง:\n" +" gencaches - สร้างทั้งแคชของแพกเกจและแคชของซอร์ส\n" +" showpkg - แสดงข้อมูลทั่วไปของแพกเกจที่กำหนด\n" +" showsrc - แสดงระเบียนข้อมูลซอร์ส\n" +" stats - แสดงสถิติทั่วไป\n" +" dump - แสดงเนื้อหาแคชทั้งหมดในรูปแบบดิบ\n" +" dumpavail - แสดงข้อมูลแพกเกจที่มีทั้งหมดออกทางเอาต์พุตมาตรฐาน\n" +" unmet - แสดงความเชื่อมโยงที่ยังขาดหาย\n" +" search - ค้นรายชื่อแพกเกจด้วยนิพจน์เรกิวลาร์\n" +" show - แสดงข้อมูลของแพกเกจ\n" +" depends - แสดงข้อมูลแพกเกจที่ต้องใช้สำหรับแพกเกจที่กำหนด\n" +" rdepends - แสดงข้อมูลแพกเกจอื่นที่ต้องใช้แพกเกจที่กำหนด\n" +" pkgnames - แสดงรายชื่อแพกเกจทั้งหมด\n" +" dotty - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป GraphViz\n" +" xvcg - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป xvcg\n" +" policy - แสดงค่าตั้งนโยบาย\n" +"\n" +"ตัวเลือก:\n" +" -h แสดงข้อความช่วยเหลือนี้\n" +" -p=? แฟ้มแคชของแพกเกจ\n" +" -s=? แฟ้มแคชของซอร์ส\n" +" -q ปิดแถบแสดงความคืบหน้า\n" +" -i แสดงเฉพาะข้อมูลความเชื่อมโยงที่สำคัญสำหรับคำสั่ง unmet\n" +" -c=? อ่านแฟ้มค่าตั้งนี้\n" +" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" +"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-cache(8) และ apt.conf(5)\n" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "ปัญหา " +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "กรุณาตั้งชื่อแผ่น เช่น 'Debian 5.0.3 Disk 1'" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "ดาวน์โหลด %sB ใน %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid " [Working]" -msgstr " [กำลังทำงาน]" +msgid "Failed to mount '%s' to '%s'" +msgstr "ไม่สามารถเมานท์ '%s' ที่ '%s'" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-cdrom.cc:178 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"เปลี่ยนแผ่น: กรุณาใส่แผ่นชื่อ\n" -" '%s'\n" -"ลงในไดรว์ %s แล้วกด enter\n" +"การตรวจซีดีรอมอัตโนมัติไม่พบซีดีรอมใดที่จุดเมานท์ปริยาย\n" +"คุณอาจลองใช้ตัวเลือก --cdrom เพื่อกำหนดจุดเมานท์ของซีดีรอมได้\n" +"อ่านข้อมูลเพิ่มเติมเกี่ยวกับการตรวจซีดีรอมอัตโนมัติและจุดเมานท์ได้จาก 'man apt-cdrom'" -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "ไม่สามารถอ่าน %s" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีดีที่เหลือในชุด" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "อาร์กิวเมนต์ไม่ได้ระบุเป็นคู่ๆ" -#. 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'" +#: cmdline/apt-config.cc:89 +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 "" +"วิธีใช้: apt-config [ตัวเลือก] คำสั่ง\n" +"\n" +"apt-config เป็นเครื่องมือง่ายๆ ที่ใช้อ่านแฟ้มค่าตั้ง APT\n" +"\n" +"คำสั่ง:\n" +" shell - โหมดเชลล์\n" +" dump - แสดงค่าตั้ง\n" +"\n" +"ตัวเลือก:\n" +" -h ข้อความช่วยเหลือนี้\n" +" -c=? อ่านแฟ้มค่าตั้งที่กำหนด\n" +" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "ไม่สามารถอ่านแฟ้มแหล่งสำเนา '%s'" +msgid "Can not find a package for architecture '%s'" +msgstr "ไม่พบแพกเกจสำหรับสถาปัตยกรรม '%s'" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:327 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "ไม่พบรายการในแฟ้มแหล่งสำเนา '%s'" +msgid "Can not find a package '%s' with version '%s'" +msgstr "ไม่พบแพกเกจ '%s' ที่มีรุ่นเป็น '%s'" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:330 #, c-format -msgid "[Mirror: %s]" -msgstr "[แหล่งสำเนา: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "ไม่สามารถสร้างไปป์ IPC ไปยังโพรเซสย่อย" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "การเชื่อมต่อถูกปิดก่อนเวลาอันควร" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "ค่าตั้งปริยายผิดพลาด!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "กด enter เพื่อดำเนินการต่อ" - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "คุณต้องการจะลบแฟ้ม .deb ต่างๆ ที่ได้ดาวน์โหลดมาก่อนหน้านี้หรือไม่?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "เกิดข้อผิดพลาดขณะแตกแพกเกจ โปรแกรมจะตั้งค่าแพกเกจที่ติดตั้งแล้ว" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "อาจทำให้เกิดข้อความแจ้งข้อผิดพลาดซ้ำ หรือข้อผิดพลาดเนื่องจากแพกเกจที่ต้องใช้ขาดหาย" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "ซึ่งไม่มีปัญหาอะไร มีเฉพาะข้อผิดพลาดก่อนหน้าข้อความนี้เท่านั้นที่สำคัญ" - -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "กรุณาแก้ปัญหาเหล่านั้น แล้วเรียกติดตั้งใหม่อีกครั้ง" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "กำลังผสานรายชื่อของแพกเกจที่มี" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode ถูกเรียกใช้กับโหนดที่ยังลิงก์อยู่" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "หาสมาชิกในตารางแฮชไม่สำเร็จ!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "จองเนื้อที่สำหรับการเบนแฟ้มไม่สำเร็จ" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "ข้อผิดพลาดภายในที่ AddDiversion" +msgid "Can not find a package '%s' with release '%s'" +msgstr "ไม่พบแพกเกจ '%s' ที่มีชุดจัดแจกเป็น '%s'" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "พยายามเขียนทับการเบนแฟ้ม: %s -> %s กับ %s/%s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "จะเลือก '%s' เป็นแพกเกจซอร์สแทน '%s'\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "เพิ่มการเบนแฟ้ม %s -> %s ซ้ำสอง" +msgid "Can not find version '%s' of package '%s'" +msgstr "ไม่พบรุ่น '%s' ของแพกเกจ '%s'" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "แฟ้มค่าตั้ง %s/%s ซ้ำ" +msgid "Couldn't find package %s" +msgstr "ไม่พบแพกเกจ %s" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "The path %s is too long" -msgstr "พาธ %s ยาวเกินไป" +msgid "%s set to manually installed.\n" +msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Unpacking %s more than once" -msgstr "พยายามแตกแพกเกจ %s มากกว่าหนึ่งครั้ง" +msgid "%s set to automatically installed.\n" +msgstr "กำหนด %s ให้เป็นการติดตั้งแบบอัตโนมัติแล้ว\n" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "ไดเรกทอรี %s ถูก divert" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark auto' และ 'apt-mark manual' แทน" -#: apt-inst/extract.cc:152 -#, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "แพกเกจนี้พยายามเขียนลงปลายทางของการเบนแฟ้ม %s/%s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "พาธของการเบนแฟ้มยาวเกินไป" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to stat %s" -msgstr "stat %s ไม่สำเร็จ" +msgid "Unable to find a source package for %s" +msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Failed to rename %s to %s" -msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไปเป็น %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"ข้อสังเกต: การจัดทำแพกเกจ '%s' พัฒนาผ่านระบบควบคุมรุ่น '%s' อยู่ที่:\n" +"%s\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:791 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "ไดเรกทอรี %s กำลังจะถูกแทนที่ด้วยสิ่งที่ไม่ใช่ไดเรกทอรี" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"กรุณาใช้:\n" +"bzr branch %s\n" +"เพื่อดึงรุ่นล่าสุด (ที่อาจยังไม่ปล่อยออกมา) ของตัวแพกเกจ\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "หาโหนดใน bucket ของแฮชไม่พบ" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "พาธยาวเกินไป" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "พบแพกเกจที่เขียนทับโดยไม่มีข้อมูลรุ่นสำหรับ %s" +msgid "You don't have enough free space in %s" +msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" -#: apt-inst/extract.cc:438 +#. 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:891 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "แฟ้ม %s/%s เขียนทับแฟ้มในแพกเกจ %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n" -#: apt-inst/extract.cc:498 +#. 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:896 #, c-format -msgid "Unable to stat %s" -msgstr "ไม่สามารถ stat %s" +msgid "Need to get %sB of source archives.\n" +msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Failed to write file %s" -msgstr "ไม่สามารถเขียนแฟ้ม %s" +msgid "Fetch source %s\n" +msgstr "ดาวน์โหลดซอร์ส %s\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "ไม่สามารถดาวน์โหลดบางแฟ้ม" + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to close file %s" -msgstr "ไม่สามารถปิดแฟ้ม %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "จะข้ามการแตกซอร์สของซอร์สที่แตกไว้แล้วใน %s\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:962 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "แฟ้มนี้ไม่ใช่แพกเกจ DEB ที่ใช้การได้ ขาดสมาชิก '%s'" +msgid "Unpack command '%s' failed.\n" +msgstr "คำสั่งแตกแฟ้ม '%s' ล้มเหลว\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "ข้อผิดพลาดภายใน: ไม่พบสมาชิก %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "กรุณาตรวจสอบว่าได้ติดตั้งแพกเกจ 'dpkg-dev' แล้ว\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "ไม่สามารถแจงแฟ้มควบคุมได้" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "คำสั่ง build '%s' ล้มเหลว\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "เอกลักษณ์ของแฟ้มจัดเก็บไม่ถูกต้อง" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "โพรเซสลูกล้มเหลว" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลส่วนหัวของสมาชิกแฟ้มจัดเก็บ" +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะตรวจสอบสิ่งที่ต้องการสำหรับการ build" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Invalid archive member header %s" -msgstr "ข้อมูลส่วนหัว %s ของสมาชิกแฟ้มจัดเก็บไม่ถูกต้อง" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "ข้อมูลส่วนหัวของสมาชิกแฟ้มจัดเก็บไม่ถูกต้อง" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"ไม่มีข้อมูลสถาปัตยกรรมสำหรับ %s ดูวิธีตั้งค่าที่หัวข้อ APT::Architectures ของ apt.conf(5)" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "แฟ้มจัดเก็บสั้นเกินไป" +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "อ่านข้อมูลส่วนหัวของแฟ้มจัดเก็บไม่สำเร็จ" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "สร้างไปป์ไม่สำเร็จ" +#: cmdline/apt-get.cc:1271 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่สามารถใช้ %s กับแพกเกจ '%s' ได้" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "เรียก gzip ไม่สำเร็จ" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่พบแพกเกจ %s" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "แฟ้มจัดเก็บเสียหาย" +#: cmdline/apt-get.cc:1312 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: แพกเกจ %s ที่ติดตั้งไว้ใหม่เกินไป" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "checksum ของแฟ้ม tar ผิดพลาด แฟ้มจัดเก็บเสียหาย" +#: cmdline/apt-get.cc:1351 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s " +"รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "พบชนิด %u ของข้อมูลส่วนหัว TAR ที่ไม่รู้จัก ที่สมาชิก %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะ %s ไม่มีรุ่นที่ติดตั้งได้" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Unable to stat %s." -msgstr "ไม่สามารถ stat %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: %s" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Progress: [%3i%%]" -msgstr "ความคืบหน้า: [%3i%%]" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "กำลังเรียก dpkg" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "ไม่รองรับระบบแพกเกจ '%s'" +msgid "Changelog for %s (%s)" +msgstr "ปูมการแก้ไขสำหรับ %s (%s)" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "ไม่สามารถระบุชนิดของระบบแพกเกจที่เหมาะสมได้" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "มอดูลที่รองรับ:" + +#: cmdline/apt-get.cc:1632 +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 "" +"วิธีใช้: apt-get [ตัวเลือก] คำสั่ง\n" +" apt-get [ตัวเลือก] install|remove pkg1 [pkg2 ...]\n" +" apt-get [ตัวเลือก] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get เป็นคำสั่งง่ายๆ สำหรับดาวน์โหลดและติดตั้งแพกเกจ คำสั่งที่ใช้บ่อยที่สุดก็คือ\n" +"update และ install\n" +"\n" +"คำสั่ง:\n" +" update - ดาวน์โหลดรายชื่อแพกเกจชุดใหม่\n" +" upgrade - ปรับรุ่นแพกเกจต่างๆ ขึ้น\n" +" install - ติดตั้งแพกเกจใหม่ (pkg อยู่ในรูปเช่น libc6 ไม่ใช่ libc6.deb)\n" +" remove - ถอดถอนแพกเกจ\n" +" autoremove - ถอดถอนแพกเกจที่ไม่ใช้แล้วโดยอัตโนมัติ\n" +" purge - ถอดถอนแพกเกจพร้อมลบค่าตั้งทั้งหมด\n" +" source - ดาวน์โหลดซอร์สโค้ดของแพกเกจ\n" +" build-dep - ติดตั้งสิ่งที่จำเป็นสำหรับการประกอบสร้างแพกเกจซอร์สโค้ด\n" +" dist-upgrade - ปรับรุ่นขึ้นแบบข้ามรุ่นจัดแจก ดู apt-get(8)\n" +" dselect-upgrade - ทำตามสิ่งที่เลือกโดย dselect\n" +" clean - ลบแฟ้มแพกเกจที่ดาวน์โหลดมา\n" +" autoclean - ลบแฟ้มแพกเกจเก่าที่ดาวน์โหลดมา\n" +" check - ตรวจสอบว่าไม่มีความเชื่อมโยงที่เสียระหว่างแพกเกจ\n" +" changelog - ดาวน์โหลดและแสดงปูมการแก้ไขของแพกเกจที่กำหนด\n" +" download - ดาวน์โหลดแพกเกจไบนารีลงในไดเรกทอรีปัจจุบัน\n" +"\n" +"ตัวเลือก:\n" +" -h แสดงข้อความช่วยเหลือนี้\n" +" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n" +" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n" +" -d ดาวน์โหลดอย่างเดียว - *ไม่ต้อง* ติดตั้งหรือแตกแพกเกจ\n" +" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n" +" -y ตอบ Yes สำหรับทุกคำถามโดยไม่ต้องถาม\n" +" -f พยายามแก้ไขระบบในกรณีที่มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ\n" +" -m พยายามดำเนินการต่อถ้าหาแฟ้มแพกเกจไม่พบ\n" +" -u แสดงรายชื่อของแพกเกจที่จะปรับรุ่นทั้งหมดด้วย\n" +" -b build แพกเกจซอร์สหลังจากดาวน์โหลดมาแล้วด้วย\n" +" -V แสดงเลขรุ่นแบบยาวของโปรแกรม\n" +" -c=? อ่านแฟ้มค่าตั้งนี้\n" +" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" +"กรุณาอ่านข้อมูลและตัวเลือกเพิ่มเติมจาก manual page apt-get(8), sources.list(5)\n" +"และ apt.conf(5)\n" +" APT นี้มีพลังของ Super Cow\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "เขียนแล้ว %i ระเบียน\n" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "ต้องระบุคู่ URL, ชื่อแฟ้ม อย่างน้อยหนึ่งคู่" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "ดาวน์โหลดไม่สำเร็จ" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" +"วิธีใช้: apt-helper [ตัวเลือก] คำสั่ง\n" +" apt-helper [ตัวเลือก] download-file URI พาธปลายทาง\n" +"\n" +"apt-helper เป็นโปรแกรมช่วยเหลือภายในของ apt\n" +"\n" +"คำสั่ง:\n" +" download-file - ดาวน์โหลด URI ที่กำหนดลงในพาธปลายทาง\n" +"\n" +" โปรแกรมช่วยเหลือของ APT นี้มีพลัง Super Meep\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s ไม่สามารถทำเครื่องหมายได้ เพราะไม่ได้ติดตั้งไว้\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "ไม่พบระเบียนยืนยันความแท้สำหรับ: %s" +msgid "%s was already set to manually installed.\n" +msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบเลือกเองอยู่ก่อนแล้ว\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Hash mismatch for: %s" -msgstr "แฮชไม่ตรงกันสำหรับ: %s" +msgid "%s was already set to automatically installed.\n" +msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบอัตโนมัติอยู่ก่อนแล้ว\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "The method driver %s could not be found." -msgstr "ไม่พบไดรเวอร์สำหรับวิธีการ %s" +msgid "%s was already set on hold.\n" +msgstr "%s ถูกกำหนดให้คงรุ่นอยู่ก่อนแล้ว\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Is the package %s installed?" -msgstr "ได้ติดตั้งแพกเกจ %s ไว้หรือไม่?" +msgid "%s was already not hold.\n" +msgstr "%s ไม่ได้คงรุ่นอยู่ก่อนแล้ว\n" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Method %s did not start correctly" -msgstr "ไม่สามารถเรียกทำงานวิธีการ %s" +msgid "%s set on hold.\n" +msgstr "กำหนด %s ให้คงรุ่นแล้ว\n" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "กรุณาใส่แผ่นชื่อ: '%s' ลงในไดรว์ '%s' แล้วกด enter" - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "ไม่สามารถแจงหรือเปิดรายชื่อแพกเกจหรือสถานะแพกเกจได้" - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "คุณอาจเรียก `apt-get update' เพื่อแก้ปัญหาเหล่านี้ได้" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "ไม่สามารถอ่านรายชื่อแหล่งแพกเกจได้" - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "แคชของแพกเกจว่างเปล่า" +msgid "Canceled hold on %s.\n" +msgstr "ยกเลิกการคงรุ่นของ %s แล้ว\n" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "แฟ้มแคชของแพกเกจเสียหาย" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "เรียกทำงาน dpkg ไม่สำเร็จ คุณเป็น root หรือเปล่า?" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "แฟ้มแคชของแพกเกจเป็นคนละรุ่นกัน" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"วิธีใช้: apt-mark [ตัวเลือก] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark เป็นเครื่องมือบรรทัดคำสั่งอย่างง่ายสำหรับทำเครื่องหมายแพกเกจ\n" +"ว่าเป็นการติดตั้งแบบเลือกเองหรือแบบอัตโนมัติ และสามารถแสดงการทำเครื่องหมายต่างๆ ได้ด้วย\n" +"\n" +"คำสั่ง:\n" +" auto - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการติดตั้งแบบอัตโนมัติ\n" +" manual - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการติดตั้งแบบเลือกเอง\n" +" hold - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการคงรุ่น\n" +" unhold - ลบการทำเครื่องหมายการคงรุ่นจากแพกเกจที่กำหนด\n" +" showauto - แสดงรายชื่อของแพกเกจที่ติดตั้งแบบอัตโนมัติ\n" +" showmanual - แสดงรายชื่อของแพกเกจที่ติดตั้งแบบเลือกเอง\n" +" showhold - แสดงรายชื่อของแพกเกจที่คงรุ่นอยู่\n" +"\n" +"ตัวเลือก:\n" +" -h แสดงข้อความช่วยเหลือนี้\n" +" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n" +" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n" +" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n" +" -f อ่าน/เขียน เครื่องหมาย อัตโนมัติ/เลือกเอง ในแฟ้มที่กำหนด\n" +" -c=? อ่านแฟ้มค่าตั้งนี้\n" +" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" +"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-mark(8) และ apt.conf(5)" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "แฟ้มแคชของแพกเกจเสียหาย แฟ้มมีขนาดเล็กกว่าที่ควรจะเป็น" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" +"วิธีใช้: apt [ตัวเลือก] คำสั่ง\n" +"\n" +"บรรทัดคำสั่งสำหรับ apt\n" +"คำสั่งพื้นฐาน:\n" +" list - แสดงรายชื่อแพกเกจที่มีชื่อตรงกับรูปแบบที่กำหนด\n" +" search - ค้นหาในคำบรรยายแพกเกจ\n" +" show - แสดงรายละเอียดของแพกเกจ\n" +"\n" +" update - ปรับข้อมูลรายชื่อของแพกเกจที่มี\n" +"\n" +" install - ติดตั้งแพกเกจ\n" +" remove - ถอดถอนแพกเกจ\n" +"\n" +" upgrade - ปรับรุ่นระบบโดยติดตั้ง/ปรับรุ่นแพกเกจต่างๆ\n" +" full-upgrade - ปรับรุ่นระบบโดยถอดถอน/ติดตั้ง/ปรับรุ่นแพกเกจต่างๆ\n" +"\n" +" edit-sources - แก้ไขแฟ้มข้อมูลแหล่งแพกเกจ\n" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT รุ่นนี้ไม่รองรับระบบนับรุ่นแบบ '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "แคชของแพกเกจถูกสร้างมาสำหรับสถาปัตยกรรมอื่น" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "ต้องใช้" +msgid "Unable to read the cdrom database %s" +msgstr "ไม่สามารถอ่านฐานข้อมูลซีดีรอม %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "ต้องใช้ขณะติดตั้ง" +#: 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 "" +"กรุณาใช้ apt-cdrom เพื่อให้ APT รู้จักซีดีรอมนี้ apt-get update ไม่สามารถใช้เพิ่มซีดีรอมใหม่ได้" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "แนะนำ" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "ซีดีรอมผิดแผ่น" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "ควรใช้ร่วมกับ" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "ไม่สามารถเลิกเมานท์ซีดีรอมใน %s แผ่นอาจกำลังถูกใช้งานอยู่" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "ขัดแย้งกับ" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "ไม่พบแผ่น" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "แทนที่" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "ไม่พบแฟ้ม" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "ใช้แทน" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "stat ไม่สำเร็จ" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "ทำให้พัง" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "กำหนดเวลาแก้ไขไม่สำเร็จ" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "เพิ่มความสามารถ" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI ไม่ถูกต้อง URI ของแฟ้มในเครื่องต้องขึ้นต้นด้วย //" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "สำคัญ" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "เข้าระบบ" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "จำเป็น" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "ไม่สามารถอ่านชื่อของอีกฝ่ายได้" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "มาตรฐาน" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "ไม่สามารถอ่านชื่อของเครื่องนี้ได้" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "ตัวเลือก" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "เซิร์ฟเวอร์ปฏิเสธการเชื่อมต่อโดยรายงานว่า: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ส่วนเสริม" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'" +msgid "PASS failed, server said: %s" +msgstr "PASS ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "แคชมีระบบนับรุ่นที่ไม่ตรงกัน" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "มีการระบุพร็อกซี แต่ไม่มีสคริปต์สำหรับเข้าระบบ ค่า Acquire::ftp:ProxyLogin ว่างเปล่า" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:280 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (%s%d)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนรุ่นแพกเกจที่ APT สามารถรองรับได้แล้ว" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "หมดเวลารอเชื่อมต่อ" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนคำบรรยายแพกเกจที่ APT สามารถรองรับได้แล้ว" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "เซิร์ฟเวอร์ปิดการเชื่อมต่อ" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนความสัมพันธ์ระหว่างแพกเกจที่ APT สามารถรองรับได้แล้ว" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "คำตอบท่วมบัฟเฟอร์" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "มีความเสียหายของโพรโทคอล" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "ไม่สามารถสร้างซ็อกเก็ต" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "กำลังอ่านรายชื่อแพกเกจ" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "ไม่สามารถเชื่อมต่อซ็อกเก็ตข้อมูล เนื่องจากหมดเวลาคอย" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "ล้มเหลว" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "ไม่สามารถเขียนลงแฟ้ม %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "ไม่สามารถเชื่อมต่อซ็อกเกตแบบ passive" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "ส่งสภาวการณ์ไปยังกลไกการแก้ปัญหา" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "ไม่สามารถ bind ซ็อกเก็ต" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "ส่งคำสั่งไปยังกลไกการแก้ปัญหา" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "ไม่สามารถ listen ที่ซ็อกเก็ต" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "เตรียมรับคำตอบ" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "ไม่สามารถระบุชื่อซ็อกเก็ต" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "กลไกการแก้ปัญหาภายนอกทำงานล้มเหลวโดยไม่มีข้อความข้อผิดพลาดที่เหมาะสม" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "ไม่สามารถส่งคำสั่ง PORT" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "เรียกกลไกการแก้ปัญหาภายนอก" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "ไม่รู้จักตระกูลที่อยู่ %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)" +msgid "EPRT failed, server said: %s" +msgstr "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "ผลรวมแฮชไม่ตรงกัน" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "หมดเวลารอเชื่อมต่อซ็อกเก็ตข้อมูล" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "ขนาดไม่ตรงกัน" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "ไม่สามารถรับการเชื่อมต่อ" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "รูปแบบของแฟ้มไม่ถูกต้อง" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "เกิดปัญหาขณะคำนวณค่าแฮชของแฟ้ม" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"ไม่พบรายการ '%s' ที่ต้องการในแฟ้ม Release (รายการ sources.list ไม่ถูกต้อง " -"หรือแฟ้มผิดรูปแบบ)" +msgid "Unable to fetch file, server said '%s'" +msgstr "ไม่สามารถดาวน์โหลดแฟ้ม เซิร์ฟเวอร์ตอบว่า: '%s'" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "หมดเวลาคอยที่ซ็อกเก็ตข้อมูล" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:935 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "ไม่พบผลรวมแฮชสำหรับ '%s' ในแฟ้ม Release" +msgid "Data transfer failed, server said '%s'" +msgstr "ถ่ายโอนข้อมูลไม่สำเร็จ เซิร์ฟเวอร์ตอบว่า '%s'" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "ไม่มีกุญแจสาธารณะสำหรับกุญแจหมายเลขต่อไปนี้:\n" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "สอบถาม" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"แฟ้ม Release สำหรับ %s หมดอายุแล้ว (ตั้งแต่ %s ที่แล้ว) จะไม่ใช้รายการปรับรุ่นต่างๆ " -"ของคลังแพกเกจนี้" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "ไม่สามารถเรียก " -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "ชุดจัดแจกขัดแย้งกัน: %s (ต้องการ %s แต่พบ %s)" +msgid "Connecting to %s (%s)" +msgstr "เชื่อมต่อไปยัง %s (%s)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:87 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"เกิดข้อผิดพลาดขณะตรวจสอบลายเซ็น จะไม่ปรับข้อมูลคลังแพกเกจนี้ และจะใช้แฟ้มดัชนีเก่า " -"ข้อผิดพลาดจาก GPG: %s: %s\n" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:94 #, c-format -msgid "GPG error: %s: %s" -msgstr "ข้อผิดพลาดจาก GPG: %s: %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "ไม่สามารถสร้างซ็อกเก็ตสำหรับ %s (f=%u t=%u p=%u)" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:100 #, 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 คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง (ไม่มี arch)" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:108 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "ไม่พบแหล่งที่จะดาวน์โหลดรุ่น '%s' ของ '%s' ได้" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s) เนื่องจากหมดเวลาคอย" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:126 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: (ชื่อแฟ้ม) สำหรับแพกเกจ %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s)" -#: apt-pkg/vendorlist.cc:85 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "บล็อคผู้ผลิต %s ไม่มีลายนิ้วมือ" +msgid "Connecting to %s" +msgstr "เชื่อมต่อไปยัง %s" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "List directory %spartial is missing." -msgstr "ไม่มีไดเรกทอรีรายชื่อแพกเกจ %spartial" +msgid "Could not resolve '%s'" +msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "ไม่มีไดเรกทอรีแพกเกจ %spartial" +msgid "Temporary failure resolving '%s'" +msgstr "เกิดความล้มเหลวชั่วคราวขณะเปิดหาที่อยู่ '%s'" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:209 #, c-format -msgid "Unable to lock directory %s" -msgstr "ไม่สามารถล็อคไดเรกทอรี %s" +msgid "System error resolving '%s:%s'" +msgstr "เกิดข้อผิดพลาดในระบบขณะเปิดหาที่อยู่ '%s:%s'" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li (เหลืออีก %s)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li" +msgid "Unable to connect to %s:%s:" +msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "ดาวน์โหลดแฟ้มดัชนีบางแฟ้มไม่สำเร็จ จะข้ามรายการดังกล่าวไป หรือใช้ข้อมูลเก่าแทน" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "ข้อผิดพลาดภายใน: ลายเซ็นใช้การได้ แต่ไม่สามารถระบุลายนิ้วมือของกุญแจ?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "คุณต้องเพิ่ม URI ชนิด 'source' ใน sources.list ของคุณด้วย" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "พบลายเซ็นที่ใช้การไม่ได้อย่างน้อยหนึ่งรายการ" -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "ค่า '%s' ไม่สามารถใช้กับ APT::Default-Release ได้ เนื่องจากรุ่นดังกล่าวไม่มีในแหล่ง" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "ไม่สามารถเรียก 'gpgv' เพื่อตรวจสอบลายเซ็น (ได้ติดตั้ง gpgv ไว้หรือไม่?)" -#: apt-pkg/policy.cc:422 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "ระเบียนผิดรูปแบบในแฟ้มค่าปรับแต่ง %s: ไม่มีข้อมูลส่วนหัว 'Package'" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" +"แฟ้มที่เซ็นกำกับครอบข้อความมีเนื้อหาไม่ถูกต้อง ได้รับผลลัพธ์ " +"'%s' (เครือข่ายต้องยืนยันตัวบุคคลหรือไม่?)" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "ไม่เข้าใจชนิดการตรึง %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุขณะเรียก gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "ไม่ได้ระบุลำดับความสำคัญ (หรือค่าศูนย์) สำหรับการตรึง" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "ลายเซ็นต่อไปนี้ใช้การไม่ได้:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" -"ไม่สามารถตั้งค่า '%s' แบบทันทีได้ กรุณาอ่านรายละเอียดเพิ่มเติมจาก man 5 apt.conf ที่หัวข้อ " -"APT::Immediate-Configure (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "ลายเซ็นต่อไปนี้ไม่สามารถตรวจสอบได้ เพราะไม่มีกุญแจสาธารณะ:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "ไม่สามารถตั้งค่า '%s'" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "แฟ้มว่างเปล่าไม่สามารถเป็นแฟ้มจัดเก็บที่ใช้การได้" -#: apt-pkg/packagemanager.cc:583 -#, 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 "" -"การติดตั้งครั้งนี้จำเป็นต้องลบแพกเกจ %s ชั่วคราว " -"อันเนื่องมาจากความขัดแย้งหรือความขึ้นต่อกันระหว่างติดตั้งที่เป็นวงรอบ " -"ซึ่งแพกเกจดังกล่าวเป็นแพกเกจที่จำเป็นสำหรับระบบ การลบดังกล่าวมักเป็นอันตราย " -"แต่ถ้าคุณต้องการทำเช่นนั้นจริงๆ ก็ให้เปิดตัวเลือก APT::Force-LoopBreak" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ยาวเกินไป" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์ ปลายทางอีกด้านหนึ่งปิดการเชื่อมต่อ" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "กำลังเลิกเมานท์ซีดีรอม...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "กำลังใช้จุดเมานท์ซีดีรอม %s\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "กำลังรอแผ่น...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "select ไม่สำเร็จ" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "กำลังเมานท์ซีดีรอม...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "หมดเวลารอเชื่อมต่อ" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "กำลังตรวจสอบชื่อแผ่น... " +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "ชื่อที่เก็บไว้: %s\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "รอหัวข้อมูล" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "กำลังสำรวจข้อมูลในแผ่นเพื่อหาแฟ้มดัชนี...\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "บรรทัดข้อมูลส่วนหัวผิดพลาด" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"พบดัชนีแพกเกจ %zu รายการ, ดัชนีซอร์ส %zu รายการ, ดัชนีคำแปล %zu รายการ และลายเซ็น " -"%zu รายการ\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัวตอบมาไม่ถูกต้อง" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "ไม่พบแฟ้มแพกเกจใดๆ บางทีแผ่นนี้อาจจะไม่ใช่แผ่นเดเบียน หรือสถาปัตยกรรมอาจไม่ถูกต้อง" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูกต้อง" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "พบชื่อแผ่น '%s'\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Range มาไม่ถูกต้อง" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "ไม่ใช่ชื่อที่ใช้ได้ กรุณาลองใหม่\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ HTTP ผิดพลาด" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"แผ่นนี้เรียกชื่อว่า:\n" -"'%s'\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "กำลังคัดลอกรายชื่อแพกเกจ..." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "ข้อมูลส่วนหัวผิดพลาด" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "กำลังเขียนรายชื่อแหล่งแพกเกจแหล่งใหม่\n" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "เชื่อมต่อไม่สำเร็จ" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "ข้อผิดพลาดภายใน" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "กำลังคำนวณการปรับรุ่น... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "เสร็จแล้ว" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "กำลังเรียงลำดับ" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "กำลังแสดงรายชื่อ" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-list.cc:164 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "มีอีก %i รุ่น กรุณาใช้ตัวเลือก '-a' หากต้องการดูเพิ่ม" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย " -"อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "กำลังแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจ..." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " ล้มเหลว" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "กำลังสร้างโครงสร้างลำดับความสัมพันธ์" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "ไม่สามารถแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจได้" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "รุ่นแพกเกจที่มี" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "ไม่สามารถจำกัดรายการปรับรุ่นให้น้อยที่สุดได้" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "สร้างลำดับความสัมพันธ์" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " เสร็จแล้ว" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "กำลังอ่านข้อมูลสถานะ" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "คุณอาจต้องเรียก 'apt-get -f install' เพื่อแก้ปัญหาเหล่านี้" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "ไม่สามารถเปิดแฟ้มสถานะ %s" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "รายการแพกเกจที่ต้องใช้ไม่ครบ กรุณาลองใช้ตัวเลือก -f" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "ไม่สามารถเขียนแฟ้มสถานะชั่วคราว %s" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "ไม่ทราบ" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:234 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (1)" +msgid "[installed,upgradable to: %s]" +msgstr "[ติดตั้งอยู่,สามารถปรับรุ่นเป็น: %s]" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (2)" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[ติดตั้งอยู่,ในเครื่อง]" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "ไม่พบรุ่นย่อย '%s' ของ '%s'" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[ติดตั้งอยู่,ถอดถอนอัตโนมัติได้]" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "ไม่พบรุ่น '%s' ของ '%s'" +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[ติดตั้งอยู่,อัตโนมัติ]" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "ไม่พบงานติดตั้ง '%s'" +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[ติดตั้งอยู่]" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:249 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "ไม่พบแพกเกจที่ตรงกับนิพจน์เรกิวลาร์ '%s'" +msgid "[upgradable from: %s]" +msgstr "[สามารถปรับรุ่นจาก: %s]" -#: apt-pkg/cacheset.cc:615 -#, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "ไม่พบแพกเกจที่ตรงกับ glob '%s'" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[ค่าตั้งตกค้าง]" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "ไม่สามารถเลือกรุ่นต่างๆ ของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" +msgid "but %s is installed" +msgstr "แต่รุ่นที่ติดตั้งไว้คือ %s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:437 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"ไม่สามารถเลือกรุ่นที่ติดตั้งไว้หรือรุ่นสำหรับติดตั้งของแพกเกจ '%s' ได้ เนื่องจากไม่มีทั้งสองอย่าง" +msgid "but %s is to be installed" +msgstr "แต่รุ่นที่จะติดตั้งคือ %s" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "ไม่สามารถเลือกรุ่นใหม่ที่สุดของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "แต่ไม่สามารถติดตั้งได้" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "ไม่สามารถเลือกรุ่นสำหรับติดตั้งของแพกเกจ '%s' ได้ เนื่องจากไม่มีรุ่นสำหรับติดตั้ง" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "แต่แพกเกจนี้เป็นแพกเกจเสมือน" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "ไม่สามารถเลือกรุ่นที่ติดตั้งไว้ของแพกเกจ '%s' ได้ เนื่องจากแพกเกจไม่ได้ติดตั้งไว้" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "แต่ได้ติดตั้งไว้" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "ไม่สามารถแจงแฟ้ม Release %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "แต่แพกเกจนี้จะไม่ถูกติดตั้ง" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "ไม่มีหัวข้อย่อยในแฟ้ม Release %s" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " หรือ" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "ไม่มีรายการแฮชในแฟ้ม Release %s" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "แพกเกจต่อไปนี้ขาดแพกเกจที่ต้องใช้:" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "รายการ 'Valid-Until' ไม่ถูกต้องในแฟ้ม Release %s" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "จะติดตั้งแพกเกจ *ใหม่* ต่อไปนี้:" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "รายการ 'Date' ไม่ถูกต้องในแฟ้ม Release %s" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "จะ *ลบ* แพกเกจต่อไปนี้:" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "จะคงรุ่นแพกเกจต่อไปนี้:" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([ตัวเลือก] แจงไม่ผ่าน)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ขึ้น:" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([ตัวเลือก] สั้นเกินไป)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ *ลง*:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] ไม่ใช่การกำหนดค่า)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "จะเปลี่ยนแปลงรายการคงรุ่นแพกเกจต่อไปนี้:" -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] ไม่มีคีย์)" +msgid "%s (due to %s) " +msgstr "%s (เนื่องจาก %s) " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"*คำเตือน*: แพกเกจที่จำเป็นต่อไปนี้จะถูกถอดถอน\n" +"คุณ *ไม่ควร* ทำเช่นนี้ นอกจากคุณเข้าใจสิ่งที่จะทำ!" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] คีย์ %s ไม่มีค่า)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, " -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (URI)" +msgid "%lu reinstalled, " +msgstr "ติดตั้งซ้ำ %lu, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist)" +msgid "%lu downgraded, " +msgstr "ปรับรุ่นลง %lu, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist แบบสัมบูรณ์)" +msgid "%lu not fully installed or removed.\n" +msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n" + +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง dist)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-update.cc:90 #, c-format -msgid "Opening %s" -msgstr "กำลังเปิด %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ชนิด)" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-show.cc:156 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "มีอีก %i ระเบียน กรุณาใช้ตัวเลือก '-a' หากต้องการดูเพิ่ม" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "ไม่รู้จักชนิด '%s' ที่วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "ไม่ใช่แพกเกจจริง (เสมือน)" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "กำลังติดตั้ง %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "กำลังตั้งค่า %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "กำลังถอดถอน %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "กำลังถอดถอน %s อย่างสมบูรณ์" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "แปลกประหลาด... ขนาดไม่ตรงกัน กรุณาอีเมลแจ้ง apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:99 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Noting disappearance of %s" -msgstr "กำลังจดบันทึกการหายไปของ %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "ต้องดาวน์โหลดแพกเกจ %sB/%sB\n" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Running post-installation trigger %s" -msgstr "กำลังเรียกการสะกิด %s หลังการติดตั้ง" +msgid "Need to get %sB of archives.\n" +msgstr "ต้องดาวน์โหลดแพกเกจ %sB\n" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Directory '%s' missing" -msgstr "ไม่มีไดเรกทอรี '%s'" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "หลังจากการกระทำนี้ ต้องใช้เนื้อที่บนดิสก์อีก %sB\n" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file '%s'" -msgstr "ไม่สามารถเปิดแฟ้ม '%s'" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "หลังจากการกระทำนี้ เนื้อที่บนดิสก์จะว่างเพิ่มอีก %sB\n" -#: apt-pkg/deb/dpkgpm.cc:989 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing %s" -msgstr "กำลังเตรียม %s" +msgid "You don't have enough free space in %s." +msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "กำลังแตกแพกเกจ %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "มีปัญหาบางประการ และมีการใช้ -y โดยไม่ระบุ --force-yes" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "กำลังเตรียมตั้งค่า %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Trivial Only ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "ติดตั้ง %s แล้ว" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:222 #, c-format -msgid "Preparing for removal of %s" -msgstr "กำลังเตรียมถอดถอน %s" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"คุณกำลังจะทำสิ่งที่อาจเป็นอันตราย\n" +"หากต้องการดำเนินการต่อ ให้พิมพ์ประโยค '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "ถอดถอน %s แล้ว" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "เลิกทำ" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "กำลังเตรียมถอดถอน %s อย่างสมบูรณ์" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "ถอดถอน %s อย่างสมบูรณ์แล้ว" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) ล้มเหลว" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"ดาวน์โหลดบางแพกเกจไม่สำเร็จ บางที การเรียก apt-get update หรือลองใช้ตัวเลือก --fix-" +"missing อาจช่วยได้" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, c-format -msgid "Can not write log (%s)" -msgstr "ไม่สามารถเขียนปูม (%s)" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "ยังไม่รองรับ --fix-missing พร้อมกับการเปลี่ยนแผ่น" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "ได้เมานท์ /dev/pts ไว้หรือไม่?" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "stdout เป็นเทอร์มินัลหรือไม่?" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "จะล้มเลิกการติดตั้ง" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "ปฏิบัติการถูกขัดจังหวะก่อนที่จะสามารถทำงานเสร็จ" +#: apt-private/private-install.cc:366 +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] "" +"แพกเกจต่อไปนี้ได้หายไปจากระบบของคุณ เพราะแฟ้มทั้งหมดได้ถูกแทนที่\n" +"โดยแพกเกจอื่นแล้ว:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "ไม่มีการเขียนรายงาน apport เพราะถึงขีดจำกัด MaxReports แล้ว" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยอัตโนมัติโดยเจตนา" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "มีปัญหาความขึ้นต่อกัน - จะทิ้งไว้โดยไม่ตั้งค่า" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเป็นสิ่งที่ตามมาจากข้อผิดพลาดก่อนหน้า" +"ดูเหมือนการถอดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเกิดขึ้น\n" +"กรุณารายงานบั๊กนี้ของแพกเกจ apt" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากดิสก์เต็ม" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย" + +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากหน่วยความจำเต็ม" +"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] "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:517 +#, 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" + +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "ใช้ 'apt-get autoremove' เพื่อถอดถอนแพกเกจดังกล่าวได้" + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "คุณอาจเรียก 'apt-get -f install' เพื่อแก้ปัญหานี้ได้:" + +#: apt-private/private-install.cc:614 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากปัญหาของระบบในเครื่อง" +"มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ " +"(หรือจะระบุทางแก้ก็ได้)" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:638 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"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 "" -"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากปัญหาการอ่าน/เขียนของ dpkg" +"ไม่สามารถติดตั้งบางแพกเกจได้ คุณอาจระบุเงื่อนไขการติดตั้งที่เป็นไปไม่ได้\n" +"หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n" +"ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "ไม่สามารถล็อคไดเรกทอรีดูแลระบบ (%s) มีโพรเซสอื่นใช้งานอยู่หรือเปล่า?" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "แพกเกจมีปัญหา" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "ไม่สามารถล็อคไดเรกทอรีดูแลระบบ (%s) คุณเป็น root หรือเปล่า?" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg ถูกขัดจังหวะ คุณต้องเรียก '%s' เองเพื่อแก้ปัญหา" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "แพกเกจที่แนะนำ:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "ไม่ได้ล็อคอยู่" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "แพกเกจที่ควรใช้ร่วมกัน:" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: apt-private/private-install.cc:825 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%liวัน %liชม. %liนาที %liวิ" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "จะข้าม %s เนื่องจากแพกเกจติดตั้งไว้แล้ว และไม่มีการกำหนดให้ปรับรุ่น\n" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:829 #, c-format -msgid "%lih %limin %lis" -msgstr "%liชม. %liนาที %liวิ" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "จะข้าม %s เนื่องจากแพกเกจไม่ได้ติดตั้งไว้ และคำสั่งมีเพียงการปรับรุ่นเท่านั้น\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:841 #, c-format -msgid "%limin %lis" -msgstr "%liนาที %liวิ" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจากไม่สามารถดาวน์โหลดได้\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:846 #, c-format -msgid "%lis" -msgstr "%liวิ" +msgid "%s is already the newest version.\n" +msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:894 #, c-format -msgid "Selection %s not found" -msgstr "ไม่พบรายการเลือก %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:899 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่อ่านได้อย่างเดียว" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว อันเนื่องมาจาก '%s'\n" -#: apt-pkg/contrib/fileutl.cc:195 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Could not open lock file %s" -msgstr "ไม่สามารถเปิดแฟ้มล็อค %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน คุณหมายถึง '%s' หรือเปล่า?\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:947 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่เมานท์ผ่าน nfs" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "ไม่สามารถล็อค %s" +#: apt-private/private-main.cc:32 +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 "" +"หมายเหตุ: นี่เป็นเพียงการจำลองการทำงานเท่านั้น!\n" +" การทำงานจริงของ apt-get ต้องอาศัยสิทธิ์ผู้ดูแลระบบ\n" +" อย่าลืมด้วยว่าการล็อคก็ไม่ทำงานเช่นกัน\n" +" ดังนั้น อย่าถือผลลัพธ์นี้ว่าตรงกับสภาพความเป็นจริงของระบบ!" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "ไม่สามารถสร้างรายชื่อแฟ้มได้ เนื่องจาก '%s' ไม่ใช่ไดเรกทอรี" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "*คำเตือน*: แพกเกจต่อไปนี้ไม่สามารถยืนยันแหล่งต้นตอได้!" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่ใช่แฟ้มธรรมดา" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "จะข้ามการเตือนเกี่ยวกับการยืนยันแหล่งต้นตอ\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "มีบางแพกเกจไม่สามารถยืนยันแหล่งต้นตอได้" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "จะติดตั้งแพกเกจเหล่านี้โดยไม่ตรวจสอบหรือไม่?" + +#: apt-private/private-sources.cc:58 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่มีส่วนขยายในชื่อแฟ้ม" +msgid "Failed to parse %s. Edit again? " +msgstr "แจง %s ไม่สำเร็จ จะแก้ไขอีกครั้งหรือไม่? " -#: apt-pkg/contrib/fileutl.cc:421 +#: apt-private/private-sources.cc:70 #, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากส่วนขยายในชื่อแฟ้มไม่สามารถใช้การได้" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "แฟ้ม '%s' ของคุณมีการเปลี่ยนแปลง กรุณาเรียก 'apt-get update'" -#: apt-pkg/contrib/fileutl.cc:824 +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "ค้นทั่วทั้งเนื้อความ" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "เจอ " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "ดึง:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "ข้าม " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "ปัญหา " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "โพรเซสย่อย %s เกิดข้อผิดพลาดของการใช้ย่านหน่วยความจำ (segmentation fault)" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "ดาวน์โหลด %sB ใน %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "โพรเซสย่อย %s ได้รับสัญญาณ %u" +msgid " [Working]" +msgstr " [กำลังทำงาน]" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"เปลี่ยนแผ่น: กรุณาใส่แผ่นชื่อ\n" +" '%s'\n" +"ลงในไดรว์ %s แล้วกด enter\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "โพรเซสย่อย %s จบการทำงานกะทันหัน" +msgid "No mirror file '%s' found " +msgstr "ไม่พบแฟ้มแหล่งสำเนา '%s'" -#: apt-pkg/contrib/fileutl.cc:913 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "เกิดปัญหาขณะปิดแฟ้ม gzip %s" +msgid "Can not read mirror file '%s'" +msgstr "ไม่สามารถอ่านแฟ้มแหล่งสำเนา '%s'" -#: apt-pkg/contrib/fileutl.cc:1101 +#: methods/mirror.cc:315 #, c-format -msgid "Could not open file %s" -msgstr "ไม่สามารถเปิดแฟ้ม %s" +msgid "No entry found in mirror file '%s'" +msgstr "ไม่พบรายการในแฟ้มแหล่งสำเนา '%s'" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: methods/mirror.cc:445 #, c-format -msgid "Could not open file descriptor %d" -msgstr "ไม่สามารถเปิด file destriptor %d" +msgid "[Mirror: %s]" +msgstr "[แหล่งสำเนา: %s]" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "สร้าง IPC ของโพรเซสย่อยไม่สำเร็จ" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "ไม่สามารถสร้างไปป์ IPC ไปยังโพรเซสย่อย" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "เรียกทำงานตัวบีบอัดไม่สำเร็จ" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "การเชื่อมต่อถูกปิดก่อนเวลาอันควร" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "read: ยังเหลือ %llu ที่ยังไม่ได้อ่าน แต่ข้อมูลหมดแล้ว" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "ค่าตั้งปริยายผิดพลาด!" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "write: ยังเหลือ %llu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "กด enter เพื่อดำเนินการต่อ" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "เกิดปัญหาขณะปิดแฟ้ม %s" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "คุณต้องการจะลบแฟ้ม .deb ต่างๆ ที่ได้ดาวน์โหลดมาก่อนหน้านี้หรือไม่?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "เกิดปัญหาขณะเปลี่ยนชื่อแฟ้ม %s ไปเป็น %s" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "เกิดข้อผิดพลาดขณะแตกแพกเกจ โปรแกรมจะตั้งค่าแพกเกจที่ติดตั้งแล้ว" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "เกิดปัญหาขณะลบแฟ้ม %s" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "อาจทำให้เกิดข้อความแจ้งข้อผิดพลาดซ้ำ หรือข้อผิดพลาดเนื่องจากแพกเกจที่ต้องใช้ขาดหาย" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "เกิดปัญหาขณะ sync แฟ้ม" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "ซึ่งไม่มีปัญหาอะไร มีเฉพาะข้อผิดพลาดก่อนหน้าข้อความนี้เท่านั้นที่สำคัญ" + +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "กรุณาแก้ปัญหาเหล่านั้น แล้วเรียกติดตั้งใหม่อีกครั้ง" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... ผิดพลาด!" +#: dselect/update:30 +msgid "Merging available information" +msgstr "กำลังผสานรายชื่อของแพกเกจที่มี" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... เสร็จแล้ว" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode ถูกเรียกใช้กับโหนดที่ยังลิงก์อยู่" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "หาสมาชิกในตารางแฮชไม่สำเร็จ!" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "จองเนื้อที่สำหรับการเบนแฟ้มไม่สำเร็จ" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "ไม่สามารถ mmap แฟ้มเปล่า" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "ข้อผิดพลาดภายในที่ AddDiversion" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "ไม่สามารถทำซ้ำ file descriptor %i" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "พยายามเขียนทับการเบนแฟ้ม: %s -> %s กับ %s/%s" -#: apt-pkg/contrib/mmap.cc:119 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "ไม่สามารถสร้าง mmap ขนาด %llu ไบต์" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "ไม่สามารถปิด mmap" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "ไม่สามารถปรับ mmap ให้ตรงกัน" +msgid "Double add of diversion %s -> %s" +msgstr "เพิ่มการเบนแฟ้ม %s -> %s ซ้ำสอง" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "ไม่สามารถสร้าง mmap ขนาด %lu ไบต์" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "ไม่สามารถตัดท้ายแฟ้ม" +msgid "Duplicate conf file %s/%s" +msgstr "แฟ้มค่าตั้ง %s/%s ซ้ำ" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, 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 "" -"MMap แบบพลวัตมีเนื้อที่ไม่พอ กรุณาเพิ่มขนาดของ APT::Cache-Start ค่าปัจจุบัน: %lu (man 5 " -"apt.conf)" +msgid "The path %s is too long" +msgstr "พาธ %s ยาวเกินไป" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจากถึงขีดจำกัด %lu ไบต์แล้ว" +msgid "Unpacking %s more than once" +msgstr "พยายามแตกแพกเกจ %s มากกว่าหนึ่งครั้ง" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจากผู้ใช้ปิดการขยายขนาดอัตโนมัติ" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "ไดเรกทอรี %s ถูก divert" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "ไม่สามารถ stat จุดเมานท์ %s" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "แพกเกจนี้พยายามเขียนลงปลายทางของการเบนแฟ้ม %s/%s" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "ไม่สามารถ stat ซีดีรอม" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "พาธของการเบนแฟ้มยาวเกินไป" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "พบตัวย่อของชนิดที่ข้อมูลไม่รู้จัก: '%c'" +msgid "Failed to stat %s" +msgstr "stat %s ไม่สำเร็จ" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Opening configuration file %s" -msgstr "ขณะเปิดแฟ้มค่าตั้ง %s" +msgid "Failed to rename %s to %s" +msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไปเป็น %s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "ไวยากรณ์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ" +msgid "The directory %s is being replaced by a non-directory" +msgstr "ไดเรกทอรี %s กำลังจะถูกแทนที่ด้วยสิ่งที่ไม่ใช่ไดเรกทอรี" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: แท็กผิดรูปแบบ" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "หาโหนดใน bucket ของแฮชไม่พบ" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังค่า" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "พาธยาวเกินไป" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น" +msgid "Overwrite package match with no version for %s" +msgstr "พบแพกเกจที่เขียนทับโดยไม่มีข้อมูลรุ่นสำหรับ %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: ใช้ include ซ้อนกันมากเกินไป" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "แฟ้ม %s/%s เขียนทับแฟ้มในแพกเกจ %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: include จากที่นี่" +msgid "Unable to stat %s" +msgstr "ไม่สามารถ stat %s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รองรับ" +msgid "Failed to write file %s" +msgstr "ไม่สามารถเขียนแฟ้ม %s" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: directive 'clear' ต้องมีอาร์กิวเมนต์เป็นลำดับชั้นตัวเลือก" +msgid "Failed to close file %s" +msgstr "ไม่สามารถปิดแฟ้ม %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังจบแฟ้ม" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "แฟ้มนี้ไม่ใช่แพกเกจ DEB ที่ใช้การได้ ขาดสมาชิก '%s'" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "No keyring installed in %s." -msgstr "ไม่มีพวงกุญแจติดตั้งไว้ใน %s" +msgid "Internal error, could not locate member %s" +msgstr "ข้อผิดพลาดภายใน: ไม่พบสมาชิก %s" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "ไม่รู้จักตัวเลือกบรรทัดคำสั่ง '%c' [จาก %s]" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "ไม่สามารถแจงแฟ้มควบคุมได้" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "ไม่เข้าใจตัวเลือกบรรทัดคำสั่ง %s" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "เอกลักษณ์ของแฟ้มจัดเก็บไม่ถูกต้อง" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "ตัวเลือกบรรทัดคำสั่ง %s ไม่ได้เป็นค่าบูลีน" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลส่วนหัวของสมาชิกแฟ้มจัดเก็บ" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Option %s requires an argument." -msgstr "ตัวเลือก %s ต้องมีอาร์กิวเมนต์" +msgid "Invalid archive member header %s" +msgstr "ข้อมูลส่วนหัว %s ของสมาชิกแฟ้มจัดเก็บไม่ถูกต้อง" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "ตัวเลือก %s: การกำหนดรายการค่าตั้งต้องมี =<val>" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "ข้อมูลส่วนหัวของสมาชิกแฟ้มจัดเก็บไม่ถูกต้อง" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "ตัวเลือก %s ต้องการอาร์กิวเมนต์จำนวนเต็ม ไม่ใช่ '%s'" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "แฟ้มจัดเก็บสั้นเกินไป" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "ตัวเลือก '%s' ยาวเกินไป" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "อ่านข้อมูลส่วนหัวของแฟ้มจัดเก็บไม่สำเร็จ" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "ไม่เข้าใจค่าบูลีน %s กรุณาลองใช้ true หรือ false" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "สร้างไปป์ไม่สำเร็จ" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "เรียก gzip ไม่สำเร็จ" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "แฟ้มจัดเก็บเสียหาย" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "checksum ของแฟ้ม tar ผิดพลาด แฟ้มจัดเก็บเสียหาย" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "ไม่รู้จักคำสั่ง %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "พบชนิด %u ของข้อมูลส่วนหัว TAR ที่ไม่รู้จัก ที่สมาชิก %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3515,7 +3520,7 @@ msgstr "อ่านแฟ้มไม่สำเร็จขณะคำนว msgid "Problem unlinking %s" msgstr "มีปัญหาขณะลบแฟ้ม %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3568,6 +3573,9 @@ msgstr "" " -c=? อ่านแฟ้มค่าตั้งนี้\n" " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "เกิดข้อผิดพลาดภายใน: การปรับรุ่นทำความเสียหาย" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s ไม่ใช่แพกเกจ DEB ที่ใช้การได้" diff --git a/po/tl.po b/po/tl.po index d3ffb6603..2d4d698ef 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n" "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n" @@ -20,3170 +20,3174 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Hindi suportado ang uri ng talaksang index na '%s'" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n" +msgid "Unable to read %s" +msgstr "Hindi mabasa ang %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Kabuuan ng mga Pakete : " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Di makalipat sa %s" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Kabuuan ng mga Pakete : " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Hindi ma-stat ang %s" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normal na Pakete: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Purong Birtwual na Pakete: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Nag-iisang Birtwal na Pakete: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Hindi suportado ang sistema ng paketeng '%s'" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Halong Birtwal na Pakete: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete " -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Kulang/Nawawala: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Nagsulat ng %i na record.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Kabuuan ng Natatanging mga Bersyon: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Kabuuan ng Natatanging mga Bersyon: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Kabuuan ng mga Dependensiya: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang " +"mismatch\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Kabuuan ng ugnayang Ber/Talaksan: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "Kabuuan ng ugnayang Ber/Talaksan: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Di tugmang MD5Sum" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Kabuuan ng Mapping ng Provides: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Ang driver ng paraang %s ay hindi mahanap." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Kabuuan ng Globbed String: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Hindi umandar ng tama ang paraang %s" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Kabuuan ng Hindi Nagamit na puwang: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Kabuuan ng puwang na napag-tuosan: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Hindi ma-parse o mabuksan ang talaan ng mga pakete o ng talaksang estado." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Wala sa sync ang talaksan ng paketeng %s." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang " +"ito" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Walang nahanap na mga pakete" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Kailangan niyong magbigay ng isa lamang na pattern" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Walang laman ang cache ng pakete" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Sira ang talaksan ng cache ng pakete" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Sira ang talaksan ng cache ng pakete" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Hindi mahanap ang paketeng %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Talaksang Pakete:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Wala sa sync ang cache, hindi ma-x-ref ang talaksang pakete" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Dependensiya" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Mga naka-Pin na Pakete:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "PreDepends" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(hindi nahanap)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Mungkahi" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Nakaluklok: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Rekomendado" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidato: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Tunggali" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(wala)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Pumapalit" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Naka-Pin na Pakete: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Linalaos" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Talaang Bersyon:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para sa %s %s kinompile noong %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"Pag-gamit: apt-cache [mga option] utos\n" -" apt-cache [mga option] add talaksan1 [talaksan2 ...]\n" -" apt-cache [mga option] showpkg pkt1 [pkt2 ...]\n" -" apt-cache [mga option] showsrc pkt1 [pkt2 ...]\n" -"\n" -"apt-cache ay isang kagamitang low-level para sa pag-manipula\n" -"ng mga talaksan sa binary cache ng APT, at upang makakuha ng\n" -"impormasyon mula sa kanila\n" -"\n" -"Mga utos:\n" -" add - Magdagdag ng talaksang pakete sa source cache\n" -" gencaches - Buuin pareho ang cache ng pakete at source\n" -" showpkg - Ipakita ang impormasyon tungkol sa isang pakete\n" -" showsrc - Ipakita ang mga record ng source\n" -" stats - Ipakita ang ilang mga estadistika\n" -" dump - Ipakita ang buong talaksan sa anyong maikli\n" -" dumpavail - Ipakita ang talaksang available sa stdout\n" -" unmet - Ipakita ang mga kulang na mga dependensiya\n" -" search - Maghanap sa listahan ng mga pakete ng regex pattern\n" -" show - Ipakita ang nababasang record ng pakete\n" -" depends - Ipakita ang impormasyon tungkol sa ganap na dependensiya\n" -" ng pakete\n" -" rdepends - Ipakita ang impormasyong kabaliktarang dependensiya ng pakete\n" -" pkgnames - Ipakita ang listahan ng pangalan ng lahat ng mga pakete\n" -" dotty - Bumuo ng graph ng mga pakete para sa GraphViz\n" -" xvcg - Bumuo ng graph ng mga pakete para sa xvcg\n" -" policy - Ipakita ang pagkaayos ng mga policy\n" -"\n" -"Mga option:\n" -" -h Itong tulong na ito.\n" -" -p=? Ang cache ng mga pakete.\n" -" -s=? Ang cache ng mga source.\n" -" -q Huwag ipakita ang hudyat ng progreso.\n" -" -i Ipakita lamang ang importanteng mga dep para sa utos na unmet\n" -" -c=? Basahin ang talaksang pagkaayos na ito\n" -" -o=? Magtakda ng isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" -"Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n" -"karagdagang impormasyon\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "kailangan" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Bigo ang pagpangalan muli ng %s tungong %s" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "optional" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Hindi suportado ang uri ng talaksang index na '%s'" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Mga argumento ay hindi naka-pares" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Error sa pag-compile ng regex - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Pag-gamit: apt-config [mga option] utos\n" -"\n" -"Ang apt-config ay simpleng kagamitan sa pagbasa ng talaksang pagkaayos\n" -"ng APT\n" -"\n" -"Mga utos:\n" -" shell - modong shell\n" -" dump - ipakita ang pagkaayos\n" -"Mga option:\n" -" -h Itong tulong na ito.\n" -" -c=? Basahin itong talaksang pagkaayos\n" -" -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Hindi akma ang versioning system ng cache" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Hindi mahanap ang paketeng %s" +msgid "Error occurred while processing %s (%s%d)" +msgstr "May naganap na error habang prinoseso ang %s (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Hindi mahanap ang paketeng %s" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Hindi mahanap ang paketeng %s" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." -#: cmdline/apt-get.cc:423 +#: apt-pkg/pkgcachegen.cc:266 +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:576 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "Package %s %s was not found while processing file dependencies" msgstr "" +"Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Couldn't find package %s" -msgstr "Hindi mahanap ang paketeng %s" +msgid "Couldn't stat source package list %s" +msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "ngunit ang %s ay iluluklok" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Binabasa ang Listahan ng mga Pakete" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "ngunit ang %s ay iluluklok" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Kinukuha ang Talaksang Provides" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Hindi makapagsulat sa %s" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Error na internal, may nasira ang problem resolver" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO Error sa pag-imbak ng source cache" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Hindi maaldaba ang directory ng download" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Hindi mahanap ang paketeng source para sa %s" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Hindi matantsa ang libreng puwang sa %s" +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "Di tugmang MD5Sum" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Kulang kayo ng libreng puwang sa %s" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Di tugmang laki" -#. 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:891 +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Di tanggap na operasyon %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +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:896 +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Walang public key na magamit para sa sumusunod na key ID:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "Kunin ang Source %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Bigo sa pagkuha ng ilang mga arkibo." +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n" +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 "" +"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin " +"niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Bigo ang utos ng pagbuklat '%s'.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Sira ang talaksang index ng mga pakete. Walang Filename: field para sa " +"paketeng %s." -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Utos na build '%s' ay bigo.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Block ng nagbebenta %s ay walang fingerprint" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Bigo ang prosesong anak" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Nawawala ang directory ng talaan %spartial." -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Kailangang magtakda ng kahit isang pakete na susuriin ang builddeps" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Nawawala ang directory ng arkibo %spartial." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Hindi maaldaba ang directory ng talaan" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Hindi makuha ang impormasyong build-dependency para sa %s" +msgid "Retrieving file %li of %li" +msgstr "Kinukuha ang talaksang %li ng %li" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "%s has no build depends.\n" -msgstr "Walang build depends ang %s.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Bigo sa pagkuha ng %s %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " -"mahanap" +"May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang " +"mga luma na lamang." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " -"mahanap" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header" + +#: apt-pkg/policy.cc:444 #, 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." +msgid "Did not understand pin type %s" +msgstr "Hindi naintindihan ang uri ng pin %s" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Walang prioridad (o sero) na nakatakda para sa pin" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" 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:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Hindi mabuksan ang talaksang %s" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " -"mahanap" +"Ang takbo ng pag-instol na ito ay nangangailangan ng pansamantalang " +"pagtanggal ng paketeng esensyal na %s dahil sa isang Conflicts/Pre-Depends " +"loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-" +"activate ang APT::Force-LoopBreak na option." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Ina-unmount ang CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Hindi mabuo ang build-dependencies para sa %s." +msgid "Using CD-ROM mount point %s\n" +msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Bigo sa pagproseso ng build dependencies" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Hinihintay ang disc...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Kumokonekta sa %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Sinasalang ang CD-ROM...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Suportadong mga Module:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Kinikilala..." -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Naka-imbak na Label: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Sinisiyasat ang Disc para sa talaksang index...\n" + +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format 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 "" -"Pag-gamit: apt-get [mga option] utos\n" -" apt-get [mga option] install|remove pkt1 [pkt2 ...]\n" -" apt-get [mga option] source pkt1 [pkt2 ...]\n" -"\n" -"Ang apt-get ay payak na command line interface para sa pagkuha at\n" -"pag-instol ng mga pakete. Ang pinakamadalas na gamiting utos ay update\n" -"at install.\n" -"\n" -"Mga utos:\n" -" update - Kunin ang bagong listahan ng mga pakete\n" -" upgrade - Gumawa ng upgrade\n" -" install - Mag-instol ng bagong mga pakete (pkt ay libc6 hindi libc6.deb)\n" -" remove - Mag-tanggal ng mga pakete\n" -" source - Kumuha ng arkibong source\n" -" build-dep - Magsaayos ng build-dependencies para sa mga paketeng source\n" -" dist-upgrade - Mag-upgrade ng pamudmod, basahin ang apt-get(8)\n" -" dselect-upgrade - Sundan ang mga pinili sa dselect\n" -" clean - Burahin ang mga nakuhang mga talaksang naka-arkibo\n" -" autoclean - Burahin ang mga lumang naka-arkibo na nakuhang mga talaksan\n" -" check - Tiyakin na walang mga sirang dependensiya\n" -"\n" -"Mga option:\n" -" -h Itong tulong na ito.\n" -" -q Output na maaaring itala - walang indikator ng progreso\n" -" -qq Walang output maliban sa mga error\n" -" -d Kunin lamang - HINDI mag-instol o mag-buklat ng mga arkibo\n" -" -s Walang gagawin. Mag-simulate lamang ang pagkasunod-sunod.\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Subukang magpatuloy kung bigo ang pagsuri ng integridad\n" -" -m Subukang magpatuloy kung hindi mahanap ang mga arkibo\n" -" -u Ipakita rin ang listahan ng mga paketeng i-upgrade\n" -" -b Ibuo ang paketeng source matapos kunin ito\n" -" -V Ipakita ng buo ang bilang ng bersyon\n" -" -c=? Basahin itong talaksang pagkaayos\n" -" -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" -"Basahin ang pahinang manwal ng apt-get(8), sources.list(5) at apt.conf(5)\n" -"para sa karagdagang impormasyon at mga option.\n" -" Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na " +"signature\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ngunit ito ay hindi nakaluklok" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ngunit ang %s ay iluluklok" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ngunit ang %s ay iluluklok" - -#: cmdline/apt-mark.cc:241 +#: apt-pkg/cdrom.cc:771 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ay pinakabagong bersyon na.\n" +msgid "Found label '%s'\n" +msgstr "Naka-imbak na Label: %s \n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ay pinakabagong bersyon na.\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Hindi yan tanggap na pangalan, subukan muli.\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Naghintay, para sa %s ngunit wala nito doon" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Ang Disc na ito ay nagngangalang: \n" +"'%s'\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ngunit ang %s ay iluluklok" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kinokopya ang Listahan ng mga Pakete" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Bigo ang pagbukas ng %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " +"para dito." -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " +"ito ng mga paketeng naka-hold." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Hindi mabasa ang database ng cdrom %s" - -#: 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" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -"Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi " -"maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Maling CD" +"Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold." -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Ginagawa ang puno ng mga dependensiya" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Hindi nahanap ang Disk." +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Bersyong Kandidato" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Hindi Nahanap ang Talaksan" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Pagbuo ng Dependensiya" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Bigo ang pag-stat" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "Pinagsasama ang magagamit na impormasyon" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Bigo ang pagtakda ng oras ng pagbago" +#: apt-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "Bigo ang pagbukas ng %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Bigo sa pagsulat ng talaksang %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Pumapasok" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Hindi malaman ang pangalan ng peer" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Hindi ma-parse ang talaksang pakete %s (2)" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Hindi malaman ang pangalang lokal" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' para sa '%s' ay hindi nahanap" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s" +msgid "Version '%s' for '%s' was not found" +msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "USER failed, server said: %s" -msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s" +msgid "Unable to locate package %s" +msgstr "Hindi mahanap ang paketeng %s" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Hindi mahanap ang paketeng %s" + +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Hindi mahanap ang paketeng %s" + +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Hindi mahanap ang paketeng %s" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Bigo ang PASS, sabi ng server ay: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:252 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"May tinakdang katuwang na server ngunit walang login script, walang laman " -"ang Acquire::ftp::ProxyLogin." -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Bigo ang TYPE, sabi ng server ay: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Lumipas ang koneksyon" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Sinarhan ng server ang koneksyon" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Error sa pagbasa" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "May sagot na bumubo sa buffer." +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Paunawa, pinili ang %s imbes na %s\n" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Sira ang protocol" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Error sa pagsulat" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Di tanggap na linya sa talaksang diversion: %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Hindi maka-likha ng socket" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Hindi maka-konekta sa socket ng datos, nag-time-out ang koneksyon" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Bigo" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Hindi maka-konekta sa socket na passive." +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "di makakuha ang getaddrinfo ng socket na nakikinig" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Hindi maka-bind ng socket" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Hindi makarinig sa socket" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Hindi malaman ang pangalan ng socket" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Hindi makapagpadala ng utos na PORT" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Di kilalang pamilya ng address %u (AF_*)" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Bigo ang EPRT, sabi ng server ay: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Nag-timeout ang socket ng datos" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Hindi makatanggap ng koneksyon" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Binubuksan %s" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema sa pag-hash ng talaksan" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'" +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" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Nag-timeout ang socket ng datos" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "Iniluklok ang %s" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'" +msgid "Configuring %s" +msgstr "Isasaayos ang %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Tanong" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Tinatanggal ang %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Hindi ma-invoke " +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Natanggal ng lubusan ang %s" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Kumokonekta sa %s (%s)" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Running post-installation trigger %s" +msgstr "" -#: methods/connect.cc:94 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "Nawawala ang directory ng talaan %spartial." + +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Hindi mabuksan ang talaksang %s" + +#: apt-pkg/deb/dpkgpm.cc:989 #, 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)" +msgid "Preparing %s" +msgstr "Hinahanda ang %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)." +msgid "Unpacking %s" +msgstr "Binubuklat ang %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:995 #, 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" +msgid "Preparing to configure %s" +msgstr "Hinahanda ang %s upang isaayos" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Hindi maka-konekta sa %s:%s (%s)." +msgid "Installed %s" +msgstr "Iniluklok ang %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Connecting to %s" -msgstr "Kumokonekta sa %s" +msgid "Preparing for removal of %s" +msgstr "Naghahanda para sa pagtanggal ng %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Could not resolve '%s'" -msgstr "Hindi maresolba ang '%s'" +msgid "Removed %s" +msgstr "Tinanggal ang %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'" +msgid "Preparing to completely remove %s" +msgstr "Naghahanda upang tanggalin ng lubusan ang %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Natanggal ng lubusan ang %s" -#: 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)" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Hindi maka-konekta sa %s %s:" +msgid "Can not write log (%s)" +msgstr "Hindi makapagsulat sa %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -"Error na internal: Tanggap na lagda, ngunit hindi malaman ang key " -"fingerprint?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro." -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -"Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gpgv?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Waited for %s but it wasn't there" +msgstr "Naghintay, para sa %s ngunit wala nito doon" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Hindi kilalang error sa pag-execute ng gpgv" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Ang sumusunod na mga lagda ay imbalido:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi " -"available:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Error sa pagsusulat sa talaksan" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Error sa pagbasa mula sa server" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Error sa pagsulat sa talaksan" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Bigo ang pagpili" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Nag-timeout ang koneksyon" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Error sa pagsulat ng talaksang output" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Naghihintay ng panimula" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Maling linyang panimula" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Nagpadala ang HTTP server ng di tanggap na reply header" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header" - -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Sira ang range support ng HTTP server na ito" - -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Di kilalang anyo ng petsa" - -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Maling datos sa panimula" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Bigo ang koneksyon" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Internal na error" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Sinusuri ang pag-upgrade... " +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Hindi maaldaba ang directory ng talaan" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Tapos" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" msgstr "" -#: apt-private/private-list.cc:164 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Inaayos ang mga dependensiya..." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ay bigo." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Hindi maayos ang mga dependensiya" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Piniling %s ay hindi nahanap" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Hindi mai-minimize ang upgrade set" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Tapos" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Hindi mabuksan ang talaksang aldaba %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Maaari ninyong patakbuhin ang 'apt-get -f install' upang ayusin ito." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa " +"nfs" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "hindi makuha ang aldaba %s" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Nakaluklok]" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Nakaluklok]" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Nakaluklok]" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Nakaluklok]" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Naghudyat ang sub-process %s ng error code (%u)" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Ang sub-process %s ay lumabas ng di inaasahan" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Error sa pagsulat" -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "ngunit ang %s ay nakaluklok" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema sa pagsara ng talaksan" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "but %s is to be installed" -msgstr "ngunit ang %s ay iluluklok" +msgid "Could not open file %s" +msgstr "Hindi mabuksan ang talaksang %s" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ngunit hindi ito maaaring iluklok" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Hindi makapag-bukas ng pipe para sa %s" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ngunit ito ay birtwal na pakete" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Bigo ang paglikha ng subprocess IPC" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ngunit ito ay hindi nakaluklok" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Bigo ang pag-exec ng taga-compress" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "ngunit ito ay hindi iluluklok" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Error sa pagbasa" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " o" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problema sa pagsara ng talaksan" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problema sa pag-sync ng talaksan" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Ang susunod na mga pakete ay iu-upgrade:" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Problema sa pag-unlink ng talaksan" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problema sa pag-sync ng talaksan" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Error!" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%s (due to %s) " -msgstr "%s (dahil sa %s) " +msgid "%c%s... Done" +msgstr "%c%s... Tapos" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n" -"HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!" -#: apt-private/private-output.cc:694 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu na nai-upgrade, %lu na bagong luklok, " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Tapos" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu iniluklok muli, " +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Hindi mai-mmap ang talaksang walang laman" -#: apt-private/private-output.cc:700 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu nai-downgrade, " +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Hindi makapag-bukas ng pipe para sa %s" -#: apt-private/private-output.cc:702 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Hindi makagawa ng mmap ng %lu na byte" -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Hindi mabuksan %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[O/h]" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Hindi ma-invoke " -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[o/H]" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Hindi makagawa ng mmap ng %lu na byte" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "O" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Bigo sa pagsulat ng talaksang %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "H" +#: 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 "" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "Regex compilation error - %s" -msgstr "Error sa pag-compile ng regex - %s" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Unable to stat the mount point %s" +msgstr "Di mai-stat ang mount point %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Bigo sa pag-stat ng cdrom" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Hindi kilalang katagang uri: '%c'" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Binubuksan ang talaksang pagsasaayos %s" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan." -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "" -"May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove." +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntax error %s:%u: Maling anyo ng Tag" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntax error %s:%u: May basura matapos ng halaga" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Nakapagtataka... Hindi magkatugma ang laki, mag-email sa apt@packages.debian." -"org" +"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Kailangang kumuha ng %sB ng arkibo.\n" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntax error %s:%u: Sinama mula dito" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'" + +#: apt-pkg/contrib/configuration.cc:900 #, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Matapos magbuklat ay %sB na karagdagang puwang sa disk ang magagamit.\n" +"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan" + +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n" +msgid "No keyring installed in %s." +msgstr "Ina-abort ang pag-instol." -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Kulang kayo ng libreng puwang sa %s." +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala." -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "May mga problema at -y ay ginamit na walang --force-yes" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opsyon sa command line %s ay di naintindihan." -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial." +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opsyon sa command line %s ay hindi boolean" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Oo, gawin ang sinasabi ko!" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Opsyon %s ay nangangailangan ng argumento" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -"Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n" -"Upang magpatuloy, ibigay ang pariralang '%s'\n" -" ?] " +"Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng " +"=<halaga>." -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Abort." +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Nais niyo bang magpatuloy?" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Opsyon '%s' ay labis ang haba" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "May mga talaksang hindi nakuha" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Hindi naintindihan ang %s, subukan ang true o false." -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o " -"subukang may --fix-missing?" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Di tanggap na operasyon %s" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Hindi maayos ang mga kulang na pakete." +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Kabuuan ng mga Pakete : " -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Ina-abort ang pag-instol." +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Kabuuan ng mga Pakete : " -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normal na Pakete: " -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Purong Birtwual na Pakete: " -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Nag-iisang Birtwal na Pakete: " -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Halong Birtwal na Pakete: " -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -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-cache.cc:323 +msgid " Missing: " +msgstr " Kulang/Nawawala: " + +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Kabuuan ng Natatanging mga Bersyon: " -#: apt-private/private-install.cc:505 +#: cmdline/apt-cache.cc:327 #, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Error na internal, may nasira ang problem resolver" +msgid "Total distinct descriptions: " +msgstr "Kabuuan ng Natatanging mga Bersyon: " -#: apt-private/private-install.cc:512 -#, fuzzy -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] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Kabuuan ng mga Dependensiya: " -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Kabuuan ng ugnayang Ber/Talaksan: " -#: apt-private/private-install.cc:518 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Kabuuan ng ugnayang Ber/Talaksan: " -#: apt-private/private-install.cc:612 -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-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Kabuuan ng Mapping ng Provides: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " -"mga pakete (o magtakda ng solusyon)." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Kabuuan ng Globbed String: " -#: apt-private/private-install.cc:628 -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 "" -"May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n" -"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-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Sirang mga pakete" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Kabuuan ng Hindi Nagamit na puwang: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Kabuuan ng puwang na napag-tuosan: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Mga paketeng mungkahi:" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Wala sa sync ang talaksan ng paketeng %s." -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Mga paketeng rekomendado:" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Walang nahanap na mga pakete" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Kailangan niyong magbigay ng isa lamang na pattern" -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Talaksang Pakete:" -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ay pinakabagong bersyon na.\n" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Wala sa sync ang cache, hindi ma-x-ref ang talaksang pakete" -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Ang napiling bersyon %s (%s) para sa %s\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Mga naka-Pin na Pakete:" -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Ang napiling bersyon %s (%s) para sa %s\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(hindi nahanap)" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Nakaluklok: " -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidato: " -#: apt-private/private-main.cc:32 -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 "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(wala)" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "" -"BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Naka-Pin na Pakete: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "" -"Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Talaang Bersyon:" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para sa %s %s kinompile noong %s %s\n" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +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 "" +"Pag-gamit: apt-cache [mga option] utos\n" +" apt-cache [mga option] add talaksan1 [talaksan2 ...]\n" +" apt-cache [mga option] showpkg pkt1 [pkt2 ...]\n" +" apt-cache [mga option] showsrc pkt1 [pkt2 ...]\n" +"\n" +"apt-cache ay isang kagamitang low-level para sa pag-manipula\n" +"ng mga talaksan sa binary cache ng APT, at upang makakuha ng\n" +"impormasyon mula sa kanila\n" +"\n" +"Mga utos:\n" +" add - Magdagdag ng talaksang pakete sa source cache\n" +" gencaches - Buuin pareho ang cache ng pakete at source\n" +" showpkg - Ipakita ang impormasyon tungkol sa isang pakete\n" +" showsrc - Ipakita ang mga record ng source\n" +" stats - Ipakita ang ilang mga estadistika\n" +" dump - Ipakita ang buong talaksan sa anyong maikli\n" +" dumpavail - Ipakita ang talaksang available sa stdout\n" +" unmet - Ipakita ang mga kulang na mga dependensiya\n" +" search - Maghanap sa listahan ng mga pakete ng regex pattern\n" +" show - Ipakita ang nababasang record ng pakete\n" +" depends - Ipakita ang impormasyon tungkol sa ganap na dependensiya\n" +" ng pakete\n" +" rdepends - Ipakita ang impormasyong kabaliktarang dependensiya ng pakete\n" +" pkgnames - Ipakita ang listahan ng pangalan ng lahat ng mga pakete\n" +" dotty - Bumuo ng graph ng mga pakete para sa GraphViz\n" +" xvcg - Bumuo ng graph ng mga pakete para sa xvcg\n" +" policy - Ipakita ang pagkaayos ng mga policy\n" +"\n" +"Mga option:\n" +" -h Itong tulong na ito.\n" +" -p=? Ang cache ng mga pakete.\n" +" -s=? Ang cache ng mga source.\n" +" -q Huwag ipakita ang hudyat ng progreso.\n" +" -i Ipakita lamang ang importanteng mga dep para sa utos na unmet\n" +" -c=? Basahin ang talaksang pagkaayos na ito\n" +" -o=? Magtakda ng isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" +"Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n" +"karagdagang impormasyon\n" + +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Bigo sa pagkuha ng %s %s\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " +msgid "Failed to mount '%s' to '%s'" msgstr "Bigo ang pagpangalan muli ng %s tungong %s" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Tumama " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Kunin: " - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "DiPansin " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Nakakuha ng %sB ng %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [May ginagawa]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Mga argumento ay hindi naka-pares" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Pagpalit ng Media: Ikasa ang disk na may pangalang\n" -" '%s'\n" -"sa drive '%s' at pindutin ang enter\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Hindi mabasa ang %s" +"Pag-gamit: apt-config [mga option] utos\n" +"\n" +"Ang apt-config ay simpleng kagamitan sa pagbasa ng talaksang pagkaayos\n" +"ng APT\n" +"\n" +"Mga utos:\n" +" shell - modong shell\n" +" dump - ipakita ang pagkaayos\n" +"Mga option:\n" +" -h Itong tulong na ito.\n" +" -c=? Basahin itong talaksang pagkaayos\n" +" -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Di makalipat sa %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#. 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 "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Hindi mabuksan ang talaksang %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Hindi mabuksan ang talaksang %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:423 #, c-format -msgid "[Mirror: %s]" -msgstr "" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Bigo sa paglikha ng IPC pipe sa subprocess" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Nagsara ng maaga ang koneksyon" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Maling nakatakda na default!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pindutin ang enter upang magpatuloy." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Hindi mahanap ang paketeng %s" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "ngunit ang %s ay iluluklok" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"o mga error na dulot ng kulang na dependensiya. Ito ay ayos lamang, yun lang" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "ngunit ang %s ay iluluklok" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"sa taas nitong kalatas ang importante. Paki-ayusin ang mga ito at patakbuhin " -"muli ang [I]luklok/Instol." - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Pinagsasama ang magagamit na impormasyon" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Tinawagan ang DropNode sa naka-link pa na node" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Bigo sa paghanap ng elemento ng hash!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Bigo ang pagreserba ng diversion" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Internal error sa AddDiversion" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Error na internal, may nasira ang problem resolver" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Sinusubukang patungan ang diversion, %s -> %s at %s/%s" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Hindi maaldaba ang directory ng download" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobleng pagdagdag ng diversion %s -> %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Nadobleng talaksang conf %s/%s" +msgid "Unable to find a source package for %s" +msgstr "Hindi mahanap ang paketeng source para sa %s" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:786 #, c-format -msgid "The path %s is too long" -msgstr "Sobrang haba ang path na %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Unpacking %s more than once" -msgstr "Binubuklat ang %s ng labis sa isang beses" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:843 #, c-format -msgid "The directory %s is diverted" -msgstr "Ang directory %s ay divertado" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, 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" +msgid "Couldn't determine free space in %s" +msgstr "Hindi matantsa ang libreng puwang sa %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Sobrang haba ng path na diversion" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Kulang kayo ng libreng puwang sa %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#. 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:891 #, c-format -msgid "Failed to stat %s" -msgstr "Bigo ang pag-stat ng %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. 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:896 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Bigo ang pagpangalan muli ng %s tungong %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Ang directory %s ay papalitan ng hindi-directory" +msgid "Fetch source %s\n" +msgstr "Kunin ang Source %s\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Bigo ang paghanap ng node sa kanyang hash bucket" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Bigo sa pagkuha ng ilang mga arkibo." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Sobrang haba ng path" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:962 #, 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" +msgid "Unpack command '%s' failed.\n" +msgstr "Bigo ang utos ng pagbuklat '%s'.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to stat %s" -msgstr "Hindi ma-stat ang %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Failed to write file %s" -msgstr "Bigo sa pagsulat ng talaksang %s" +msgid "Build command '%s' failed.\n" +msgstr "Utos na build '%s' ay bigo.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Bigo ang prosesong anak" + +#: cmdline/apt-get.cc:1029 +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:1054 #, c-format -msgid "Failed to close file %s" -msgstr "Bigo sa pagsara ng talaksang %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'" +msgid "Unable to get build-dependency information for %s" +msgstr "Hindi makuha ang impormasyong build-dependency para sa %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Internal error, hindi mahanap ang miyembrong %s" +msgid "%s has no build depends.\n" +msgstr "Walang build depends ang %s.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Di maintindihang talaksang control" +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " +"mahanap" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Hindi tanggap na signature ng arkibo" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " +"mahanap" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Error sa pagbasa ng header ng miyembro ng arkibo" +#: cmdline/apt-get.cc:1312 +#, 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." -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1351 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Hindi tanggap na header ng miyembro ng arkibo" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Hindi tanggap na header ng miyembro ng arkibo" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon " +"ng paketeng %s na tumutugon sa kinakailangang bersyon" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Bitin ang arkibo. Sobrang iksi." +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " +"mahanap" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Bigo ang pagbasa ng header ng arkibo" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Bigo sa paglikha ng mga pipe" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Hindi mabuo ang build-dependencies para sa %s." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Bigo sa pagtakbo ng gzip " +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Bigo sa pagproseso ng build dependencies" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Sirang arkibo" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Kumokonekta sa %s (%s)" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Bigo ang checksum ng tar, sira ang arkibo" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Suportadong mga Module:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Hindi kilalang uri ng TAR header %u, miyembrong %s" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"Pag-gamit: apt-get [mga option] utos\n" +" apt-get [mga option] install|remove pkt1 [pkt2 ...]\n" +" apt-get [mga option] source pkt1 [pkt2 ...]\n" +"\n" +"Ang apt-get ay payak na command line interface para sa pagkuha at\n" +"pag-instol ng mga pakete. Ang pinakamadalas na gamiting utos ay update\n" +"at install.\n" +"\n" +"Mga utos:\n" +" update - Kunin ang bagong listahan ng mga pakete\n" +" upgrade - Gumawa ng upgrade\n" +" install - Mag-instol ng bagong mga pakete (pkt ay libc6 hindi libc6.deb)\n" +" remove - Mag-tanggal ng mga pakete\n" +" source - Kumuha ng arkibong source\n" +" build-dep - Magsaayos ng build-dependencies para sa mga paketeng source\n" +" dist-upgrade - Mag-upgrade ng pamudmod, basahin ang apt-get(8)\n" +" dselect-upgrade - Sundan ang mga pinili sa dselect\n" +" clean - Burahin ang mga nakuhang mga talaksang naka-arkibo\n" +" autoclean - Burahin ang mga lumang naka-arkibo na nakuhang mga talaksan\n" +" check - Tiyakin na walang mga sirang dependensiya\n" +"\n" +"Mga option:\n" +" -h Itong tulong na ito.\n" +" -q Output na maaaring itala - walang indikator ng progreso\n" +" -qq Walang output maliban sa mga error\n" +" -d Kunin lamang - HINDI mag-instol o mag-buklat ng mga arkibo\n" +" -s Walang gagawin. Mag-simulate lamang ang pagkasunod-sunod.\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Subukang magpatuloy kung bigo ang pagsuri ng integridad\n" +" -m Subukang magpatuloy kung hindi mahanap ang mga arkibo\n" +" -u Ipakita rin ang listahan ng mga paketeng i-upgrade\n" +" -b Ibuo ang paketeng source matapos kunin ito\n" +" -V Ipakita ng buo ang bilang ng bersyon\n" +" -c=? Basahin itong talaksang pagkaayos\n" +" -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" +"Basahin ang pahinang manwal ng apt-get(8), sources.list(5) at apt.conf(5)\n" +"para sa karagdagang impormasyon at mga option.\n" +" Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Hindi ma-stat ang %s" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Hindi suportado ang sistema ng paketeng '%s'" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete " - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Nagsulat ng %i na record.\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, 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:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "ngunit ito ay hindi nakaluklok" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang " -"mismatch\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Di tugmang MD5Sum" +msgid "%s was already set on hold.\n" +msgstr "%s ay pinakabagong bersyon na.\n" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Ang driver ng paraang %s ay hindi mahanap." +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ay pinakabagong bersyon na.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" +msgid "%s set on hold.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Hindi umandar ng tama ang paraang %s" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Bigo ang pagbukas ng %s" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter." -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"Hindi ma-parse o mabuksan ang talaan ng mga pakete o ng talaksang estado." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang " -"ito" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Hindi mabasa ang database ng cdrom %s" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Walang laman ang cache ng pakete" +#: 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 "" +"Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi " +"maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Sira ang talaksan ng cache ng pakete" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Maling CD" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito." -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Sira ang talaksan ng cache ng pakete" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Hindi nahanap ang Disk." -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Hindi Nahanap ang Talaksan" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Bigo ang pag-stat" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dependensiya" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Bigo ang pagtakda ng oras ng pagbago" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PreDepends" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Mungkahi" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Pumapasok" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Rekomendado" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Hindi malaman ang pangalan ng peer" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Tunggali" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Hindi malaman ang pangalang lokal" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Pumapalit" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Linalaos" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Bigo ang PASS, sabi ng server ay: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"May tinakdang katuwang na server ngunit walang login script, walang laman " +"ang Acquire::ftp::ProxyLogin." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "kailangan" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "Bigo ang TYPE, sabi ng server ay: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optional" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Lumipas ang koneksyon" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Sinarhan ng server ang koneksyon" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Hindi suportado ang uri ng talaksang index na '%s'" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "May sagot na bumubo sa buffer." -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Hindi akma ang versioning system ng cache" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Sira ang protocol" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "May naganap na error habang prinoseso ang %s (FindPkg)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Hindi maka-likha ng socket" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito." +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Hindi maka-konekta sa socket ng datos, nag-time-out ang koneksyon" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Bigo" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Hindi maka-konekta sa socket na passive." -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "di makakuha ang getaddrinfo ng socket na nakikinig" -#: apt-pkg/pkgcachegen.cc:576 -#, 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." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Hindi maka-bind ng socket" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Hindi makarinig sa socket" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Binabasa ang Listahan ng mga Pakete" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Hindi malaman ang pangalan ng socket" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Kinukuha ang Talaksang Provides" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Hindi makapagpadala ng utos na PORT" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr "Hindi makapagsulat sa %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Di kilalang pamilya ng address %u (AF_*)" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO Error sa pag-imbak ng source cache" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "Bigo ang EPRT, sabi ng server ay: %s" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Nag-timeout ang socket ng datos" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Hindi makatanggap ng koneksyon" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema sa pag-hash ng talaksan" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Nag-timeout ang socket ng datos" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:935 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "Di tugmang MD5Sum" +msgid "Data transfer failed, server said '%s'" +msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Di tugmang laki" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Tanong" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Di tanggap na operasyon %s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Hindi ma-invoke " -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Hindi ma-parse ang talaksang pakete %s (1)" - -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Walang public key na magamit para sa sumusunod na key ID:\n" +msgid "Connecting to %s (%s)" +msgstr "Kumokonekta sa %s (%s)" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:87 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:94 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +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)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:100 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)." -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:108 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Hindi maka-konekta sa %s:%s (%s), nag-timeout ang koneksyon" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:126 #, 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 "" -"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin " -"niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)" +msgid "Could not connect to %s:%s (%s)." +msgstr "Hindi maka-konekta sa %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "Kumokonekta sa %s" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Sira ang talaksang index ng mga pakete. Walang Filename: field para sa " -"paketeng %s." +msgid "Could not resolve '%s'" +msgstr "Hindi maresolba ang '%s'" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Block ng nagbebenta %s ay walang fingerprint" +msgid "Temporary failure resolving '%s'" +msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Nawawala ang directory ng talaan %spartial." +msgid "System error resolving '%s:%s'" +msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Nawawala ang directory ng arkibo %spartial." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Hindi maaldaba ang directory ng talaan" +msgid "Unable to connect to %s:%s:" +msgstr "Hindi maka-konekta sa %s %s:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Error na internal: Tanggap na lagda, ngunit hindi malaman ang key " +"fingerprint?!" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Kinukuha ang talaksang %li ng %li" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang " -"mga luma na lamang." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list" +"Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gpgv?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Hindi naintindihan ang uri ng pin %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Hindi kilalang error sa pag-execute ng gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Walang prioridad (o sero) na nakatakda para sa pin" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Ang sumusunod na mga lagda ay imbalido:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi " +"available:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Hindi mabuksan ang talaksang %s" - -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"Ang takbo ng pag-instol na ito ay nangangailangan ng pansamantalang " -"pagtanggal ng paketeng esensyal na %s dahil sa isang Conflicts/Pre-Depends " -"loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-" -"activate ang APT::Force-LoopBreak na option." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Error sa pagsusulat sa talaksan" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Ina-unmount ang CD-ROM...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Error sa pagbasa mula sa server" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Hinihintay ang disc...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Error sa pagsulat sa talaksan" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Sinasalang ang CD-ROM...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Bigo ang pagpili" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Kinikilala..." +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Nag-timeout ang koneksyon" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Naka-imbak na Label: %s \n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Error sa pagsulat ng talaksang output" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Sinisiyasat ang Disc para sa talaksang index...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Naghihintay ng panimula" -#: apt-pkg/cdrom.cc:734 -#, fuzzy, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na " -"signature\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Maling linyang panimula" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Nagpadala ang HTTP server ng di tanggap na reply header" -#: apt-pkg/cdrom.cc:771 -#, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "Naka-imbak na Label: %s \n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Hindi yan tanggap na pangalan, subukan muli.\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Ang Disc na ito ay nagngangalang: \n" -"'%s'\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Sira ang range support ng HTTP server na ito" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kinokopya ang Listahan ng mga Pakete" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Di kilalang anyo ng petsa" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Maling datos sa panimula" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Bigo ang koneksyon" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " -"para dito." +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Internal na error" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " -"ito ng mga paketeng naka-hold." +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Sinusuri ang pag-upgrade... " -#: apt-pkg/algorithms.cc:1088 -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-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Tapos" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Ginagawa ang puno ng mga dependensiya" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Bersyong Kandidato" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Pagbuo ng Dependensiya" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "Pinagsasama ang magagamit na impormasyon" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Inaayos ang mga dependensiya..." -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Bigo ang pagbukas ng %s" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " ay bigo." -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Bigo sa pagsulat ng talaksang %s" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Hindi maayos ang mga dependensiya" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Hindi ma-parse ang talaksang pakete %s (1)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Hindi mai-minimize ang upgrade set" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Hindi ma-parse ang talaksang pakete %s (2)" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Tapos" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release '%s' para sa '%s' ay hindi nahanap" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Maaari ninyong patakbuhin ang 'apt-get -f install' upang ayusin ito." -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f." -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Hindi mahanap ang paketeng %s" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Hindi mahanap ang paketeng %s" +msgid "[installed,upgradable to: %s]" +msgstr " [Nakaluklok]" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Hindi mahanap ang paketeng %s" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Nakaluklok]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Nakaluklok]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Nakaluklok]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "ngunit ang %s ay nakaluklok" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "but %s is to be installed" +msgstr "ngunit ang %s ay iluluklok" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Hindi ma-parse ang talaksang pakete %s (1)" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ngunit hindi ito maaaring iluklok" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Paunawa, pinili ang %s imbes na %s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ngunit ito ay birtwal na pakete" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ngunit ito ay hindi nakaluklok" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Di tanggap na linya sa talaksang diversion: %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ngunit ito ay hindi iluluklok" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Hindi ma-parse ang talaksang pakete %s (1)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " o" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Ang susunod na mga pakete ay iu-upgrade:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)" +msgid "%s (due to %s) " +msgstr "%s (dahil sa %s) " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n" +"HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu na nai-upgrade, %lu na bagong luklok, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)" +msgid "%lu reinstalled, " +msgstr "%lu iniluklok muli, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)" +msgid "%lu downgraded, " +msgstr "%lu nai-downgrade, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:719 #, c-format -msgid "Opening %s" -msgstr "Binubuksan %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n" + +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[O/h]" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[o/H]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "O" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "H" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" + +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-show.cc:156 #, 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" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "Iniluklok ang %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Isasaayos ang %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Tinatanggal ang %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Natanggal ng lubusan ang %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Nakapagtataka... Hindi magkatugma ang laki, mag-email sa apt@packages.debian." +"org" -#: apt-pkg/deb/dpkgpm.cc:99 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Noting disappearance of %s" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Running post-installation trigger %s" -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "Kailangang kumuha ng %sB ng arkibo.\n" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:167 #, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "Nawawala ang directory ng talaan %spartial." +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Matapos magbuklat ay %sB na karagdagang puwang sa disk ang magagamit.\n" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:172 #, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Hindi mabuksan ang talaksang %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n" -#: apt-pkg/deb/dpkgpm.cc:989 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing %s" -msgstr "Hinahanda ang %s" +msgid "You don't have enough free space in %s." +msgstr "Kulang kayo ng libreng puwang sa %s." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Binubuklat ang %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "May mga problema at -y ay ginamit na walang --force-yes" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Hinahanda ang %s upang isaayos" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial." -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Iniluklok ang %s" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Oo, gawin ang sinasabi ko!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:222 #, c-format -msgid "Preparing for removal of %s" -msgstr "Naghahanda para sa pagtanggal ng %s" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n" +"Upang magpatuloy, ibigay ang pariralang '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Tinanggal ang %s" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abort." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Naghahanda upang tanggalin ng lubusan ang %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Nais niyo bang magpatuloy?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Natanggal ng lubusan ang %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "May mga talaksang hindi nakuha" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o " +"subukang may --fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Hindi makapagsulat sa %s" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Hindi maayos ang mga kulang na pakete." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Ina-abort ang pag-instol." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:366 +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] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" msgstr "" +"Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Error na internal, may nasira ang problem resolver" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +"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] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: apt-private/private-install.cc:517 +#, fuzzy, 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] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" + +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:612 +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:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " +"mga pakete (o magtakda ng solusyon)." -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Hindi maaldaba ang directory ng talaan" - -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" +"May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n" +"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." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Sirang mga pakete" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Mga paketeng mungkahi:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Mga paketeng rekomendado:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "%limin %lis" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" +"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" +"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:841 #, c-format -msgid "Selection %s not found" -msgstr "Piniling %s ay hindi nahanap" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %s" +msgid "%s is already the newest version.\n" +msgstr "%s ay pinakabagong bersyon na.\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Hindi mabuksan ang talaksang aldaba %s" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Ang napiling bersyon %s (%s) para sa %s\n" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa " -"nfs" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Ang napiling bersyon %s (%s) para sa %s\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "hindi makuha ang aldaba %s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: apt-private/private-main.cc:32 +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 "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" msgstr "" +"BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" msgstr "" +"Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Nakatanggap ang sub-process %s ng segmentation fault." +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?" + +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Nakatanggap ang sub-process %s ng segmentation fault." +msgid "Failed to parse %s. Edit again? " +msgstr "Bigo ang pagpangalan muli ng %s tungong %s" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Naghudyat ang sub-process %s ng error code (%u)" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Ang sub-process %s ay lumabas ng di inaasahan" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema sa pagsara ng talaksan" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Tumama " -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Hindi mabuksan ang talaksang %s" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Kunin: " -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Hindi makapag-bukas ng pipe para sa %s" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "DiPansin " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Bigo ang paglikha ng subprocess IPC" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Bigo ang pag-exec ng taga-compress" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Nakakuha ng %sB ng %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira" +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [May ginagawa]" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat" +#: apt-private/acqprogress.cc:297 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Pagpalit ng Media: Ikasa ang disk na may pangalang\n" +" '%s'\n" +"sa drive '%s' at pindutin ang enter\n" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Problema sa pagsara ng talaksan" +#. 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 "" -#: apt-pkg/contrib/fileutl.cc:1927 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problema sa pag-sync ng talaksan" +msgid "Can not read mirror file '%s'" +msgstr "Hindi mabuksan ang talaksang %s" -#: apt-pkg/contrib/fileutl.cc:1938 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Problema sa pag-unlink ng talaksan" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problema sa pag-sync ng talaksan" - -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Error!" +msgid "No entry found in mirror file '%s'" +msgstr "Hindi mabuksan ang talaksang %s" -#: apt-pkg/contrib/progress.cc:150 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Tapos" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +msgid "[Mirror: %s]" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Tapos" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Bigo sa paglikha ng IPC pipe sa subprocess" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Hindi mai-mmap ang talaksang walang laman" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Nagsara ng maaga ang koneksyon" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Hindi makapag-bukas ng pipe para sa %s" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Maling nakatakda na default!" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Hindi makagawa ng mmap ng %lu na byte" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pindutin ang enter upang magpatuloy." -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Hindi mabuksan %s" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:102 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Hindi ma-invoke " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Hindi makagawa ng mmap ng %lu na byte" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang" -#: apt-pkg/contrib/mmap.cc:322 +#: dselect/install:103 #, fuzzy -msgid "Failed to truncate file" -msgstr "Bigo sa pagsulat ng talaksang %s" +msgid "will be configured. This may result in duplicate errors" +msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble" -#: 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)" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"o mga error na dulot ng kulang na dependensiya. Ito ay ayos lamang, yun lang" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: dselect/install:105 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"sa taas nitong kalatas ang importante. Paki-ayusin ang mga ito at patakbuhin " +"muli ang [I]luklok/Instol." -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Pinagsasama ang magagamit na impormasyon" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Di mai-stat ang mount point %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Tinawagan ang DropNode sa naka-link pa na node" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Bigo sa pag-stat ng cdrom" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Bigo sa paghanap ng elemento ng hash!" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Hindi kilalang katagang uri: '%c'" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Bigo ang pagreserba ng diversion" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Binubuksan ang talaksang pagsasaayos %s" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Internal error sa AddDiversion" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Sinusubukang patungan ang diversion, %s -> %s at %s/%s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntax error %s:%u: Maling anyo ng Tag" +msgid "Double add of diversion %s -> %s" +msgstr "Dobleng pagdagdag ng diversion %s -> %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntax error %s:%u: May basura matapos ng halaga" +msgid "Duplicate conf file %s/%s" +msgstr "Nadobleng talaksang conf %s/%s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas" +msgid "The path %s is too long" +msgstr "Sobrang haba ang path na %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include" +msgid "Unpacking %s more than once" +msgstr "Binubuklat ang %s ng labis sa isang beses" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntax error %s:%u: Sinama mula dito" +msgid "The directory %s is diverted" +msgstr "Ang directory %s ay divertado" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'" +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-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Sobrang haba ng path na diversion" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan" +msgid "Failed to stat %s" +msgstr "Bigo ang pag-stat ng %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Ina-abort ang pag-instol." +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Bigo ang pagpangalan muli ng %s tungong %s" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:249 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Ang directory %s ay papalitan ng hindi-directory" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Bigo ang paghanap ng node sa kanyang hash bucket" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Sobrang haba ng path" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "Opsyon sa command line %s ay di naintindihan." +msgid "Overwrite package match with no version for %s" +msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Opsyon sa command line %s ay hindi boolean" +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-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "Opsyon %s ay nangangailangan ng argumento" +msgid "Unable to stat %s" +msgstr "Hindi ma-stat ang %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng " -"=<halaga>." +msgid "Failed to write file %s" +msgstr "Bigo sa pagsulat ng talaksang %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'" +msgid "Failed to close file %s" +msgstr "Bigo sa pagsara ng talaksang %s" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "Opsyon '%s' ay labis ang haba" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Hindi naintindihan ang %s, subukan ang true o false." +msgid "Internal error, could not locate member %s" +msgstr "Internal error, hindi mahanap ang miyembrong %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Di maintindihang talaksang control" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Hindi tanggap na signature ng arkibo" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Error sa pagbasa ng header ng miyembro ng arkibo" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Hindi tanggap na header ng miyembro ng arkibo" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Hindi tanggap na header ng miyembro ng arkibo" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Bitin ang arkibo. Sobrang iksi." + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Bigo ang pagbasa ng header ng arkibo" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Bigo sa paglikha ng mga pipe" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Bigo sa pagtakbo ng gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Sirang arkibo" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Bigo ang checksum ng tar, sira ang arkibo" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Di tanggap na operasyon %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Hindi kilalang uri ng TAR header %u, miyembrong %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3534,7 +3538,7 @@ msgstr "Bigo ang pagbasa habang tinutuos ang MD5" msgid "Problem unlinking %s" msgstr "Problema sa pag-unlink ng %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3588,6 +3592,10 @@ msgstr "" " -c=? Basahin ang talaksang pagkaayos na ito\n" " -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s ay hindi balido na paketeng DEB." diff --git a/po/tr.po b/po/tr.po index 6c4f64593..4a6b4344c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2013-02-18 03:41+0200\n" "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n" "Language-Team: Debian l10n Turkish\n" @@ -16,3239 +16,3243 @@ msgstr "" "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" +"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:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "İndeks dosyası türü '%s' desteklenmiyor" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, 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" +msgid "Unable to read %s" +msgstr "%s okunamıyor" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Toplam paketlerin adları: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "%s olarak değiştirilemedi" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Toplam paket yapıları: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s için dosya bilgisi alınamadı." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normal paketler: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Saf sanal paketler: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "dpkg çalıştırılıyor" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Tekil sanal paketler: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Paketleme sistemi '%s' desteklenmiyor" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Karışık sanal paketler: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Uygun bir paketleme sistemi türü bulunamıyor" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Eksik: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i kayıt yazıldı.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Toplam farklı sürümler: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%2$i eksik dosyayla %1$i kayıt yazıldı.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Toplam farklı açıklamalar: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, 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" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Toplam bağımlılıklar: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, 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" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Toplam sürüm/dosya ilişkileri: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "%s için kimlik doğrulama kaydı bulunamadı." -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Toplam Tanım/Dosya ilişkileri: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Sağlama yapılamadı: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Toplam destekleme eşleştirmeleri: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Yöntem sürücüsü %s bulunamadı." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Toplam birikmiş dizgiler: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Toplam bağlımlık sürümü alanı: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "%s yöntemi düzgün şekilde başlamadı" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Toplam serbest alan: " +#: apt-pkg/acquire-worker.cc:455 +#, 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." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Hesaplanan toplam alan: " +#: apt-pkg/cachefile.cc:94 +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ı." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "%s paket dosyası eşzamansız." +#: apt-pkg/cachefile.cc:98 +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." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Hiç paket bulunamadı" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Kaynak listesi okunamadı." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "En az bir arama örüntüsü vermelisiniz" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Boş paket önbelleği" -#: cmdline/apt-cache.cc:1420 -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." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Paket önbelleği dosyası bozulmuş" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Paket önbelleği dosyası uyumsuz bir sürümde" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Paket önbellek dosyası bozulmuş, çok küçük" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "%s paketi bulunamadı" +msgid "This APT does not support the versioning system '%s'" +msgstr "Bu APT '%s' sürümleme sistemini desteklemiyor." -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Paket dosyaları:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Paket önbelleği farklı bir mimarı için yapılmış" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -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." +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Bağımlılıklar" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Sabitlenmiş paketler:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "ÖnBağımlılıklar" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(bulunamadı)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Önerdikleri" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Kurulu: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Tavsiye ettikleri" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Aday: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Çakışmalar" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(hiçbiri)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Değiştirilenler" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paket sabitleme: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Eskiyenler" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Sürüm çizelgesi:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Bozdukları" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: 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" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Geliştirdikleri" -#: cmdline/apt-cache.cc:1749 -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" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "önemli" -#: cmdline/apt-cdrom.cc:76 -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'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "gerekli" -#: cmdline/apt-cdrom.cc:91 -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" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standart" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "'%s', '%s' konumuna bağlanamadı" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "seçimlik" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ilave" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Kalan CD'leriniz için bu işlemi yineleyin." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "İndeks dosyası türü '%s' desteklenmiyor" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Değişkenler (argüman) çiftler halinde değil" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex derleme hatası - %s" -#: cmdline/apt-config.cc:89 -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" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Önbelleğin uyumsuz bir sürümleme sistemi var" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s paketi işlenirken sorunlarla karşılaşıldı (%s%d)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +#: apt-pkg/pkgcachegen.cc:257 +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." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +#: apt-pkg/pkgcachegen.cc:260 +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." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n" +#: apt-pkg/pkgcachegen.cc:263 +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." -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "'%2$s' paketinin mevcut olmayan '%1$s' sürümünü görmezden gel" +#: apt-pkg/pkgcachegen.cc:266 +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." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "%s paketi bulunamadı" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Dosya bağımlılıkları işlenirken %s %s paketi bulunamadı" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s elle kurulmuş olarak ayarlı.\n" +msgid "Couldn't stat source package list %s" +msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Paket listeleri okunuyor" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Dosya Sağlananları Toplanıyor" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\n" +msgid "Unable to write to %s" +msgstr "%s dosyasına yazılamıyor" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -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." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Kaynak önbelleği kaydedilirken GÇ Hatası" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "İç hata, sorun çözücü nesneyi bozdu" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Çözücüye senaryo gönder" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "İndirme dizini kilitlenemiyor" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Çözücüye istek gönder" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Kaynağının indirileceği en az bir paket seçilmeli" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Çözüm almak için hazırlan" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/edsp.cc:327 +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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Harici çözücüyü çalıştır" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s paketinin kaynak paketi bulunamadı" +msgid "rename failed, %s (%s -> %s)." +msgstr "yeniden adlandırma başarısız, %s (%s -> %s)." -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Sağlama toplamları eşleşmiyor" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Boyutlar eşleşmiyor" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Geçersiz işlem: %s" + +#: apt-pkg/acquire-item.cc:1573 #, 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" +"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ı)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 +#, 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:1631 +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:1669 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." 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" +"%s konumundaki 'Release' dosyasının vâdesi dolmuş (%s önce). Bu deponun " +"güncelleştirmeleri uygulanmayacak." -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s içindeki boş alan miktarı belirlenemedi" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\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" -#: cmdline/apt-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s üzerinde yeterli boş alan yok" +msgid "GPG error: %s: %s" +msgstr "GPG hatası: %s: %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:891 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%sB/%sB kaynak arşivi indirilecek.\n" +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ı)" -#. 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:896 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "%sB kaynak arşivi indirilecek.\n" +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:902 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Fetch source %s\n" -msgstr "%s kaynağını al\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Paket indeks dosyaları bozuk. %s paketinin 'Filename:' alanı yok." -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Bazı arşivler alınamadı." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Sağlayıcı bloğu %s parmak izi içermiyor" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Liste dizini %spartial bulunamadı." -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:91 #, 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" +msgid "Archives directory %spartial is missing." +msgstr "Arşiv dizini %spartial bulunamadı." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Paket açma komutu '%s' başarısız.\n" +msgid "Unable to lock directory %s" +msgstr "%s dizini kilitlenemiyor" -#: cmdline/apt-get.cc:963 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Alınan dosya: %li / %li (%s kaldı)" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "İnşa komutu '%s' başarısız oldu.\n" +msgid "Retrieving file %li of %li" +msgstr "Alınan dosya: %li / %li" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Alt süreç başarısız" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "%s ağdan alınamadı. %s\n" -#: cmdline/apt-get.cc:1029 -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" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +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ı." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/srcrecords.cc:52 +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/policy.cc:83 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" 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." +"APT::Default-Release için '%s' değeri geçersizdir, çünkü kaynaklarda böyle " +"bir sürüm yok." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "%s tercihler dosyasında geçersiz kayıt, Paket başlığı yok" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s paketinin hiç inşa bağımlılığı yok.\n" +msgid "Did not understand pin type %s" +msgstr "İğne türü %s anlaşılamadı" -#: cmdline/apt-get.cc:1271 -#, 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." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "İğne için öncelik belirlenmedi (ya da sıfır)" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı." +"\"%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)" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, 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." +msgid "Could not configure '%s'. " +msgstr "'%s' paketi yapılandırılamadı. " -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"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 "" -"%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" +"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." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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" +msgid "Line %u too long in source list %s." +msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı çok uzun." -#: cmdline/apt-get.cc:1380 -#, 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" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM ayrılıyor...\n" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s için inşa bağımlılıkları karşılanamadı." +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM bağlama noktası %s kullanılıyor\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "İnşa bağımlılıklarını işleme başarısız oldu" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Disk bekleniliyor...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM bağlanıyor...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Tanımlanıyor... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) paketinin değişim günlüğü" +msgid "Stored label: %s\n" +msgstr "Kayıtlı etiket: %s\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Desteklenen birimler:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Disk, indeks dosyaları için taranıyor...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:734 +#, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\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" +"%zu paket indeksi, %zu kaynak indeksi, %zu çeviri indeksi ve %zu imza " +"bulundu\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Kaynağının indirileceği en az bir paket seçilmeli" +#: apt-pkg/cdrom.cc:744 +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." -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "'%s' etiketi bulundu\n" + +#: apt-pkg/cdrom.cc:800 +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:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Disk adı: \n" +"'%s'\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Paket listeleri kopyalanıyor.." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Yeni kaynak listesi yazılıyor\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Bu disk için olan kaynak listesi girdileri:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"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." -#: cmdline/apt-mark.cc:68 +#: apt-pkg/algorithms.cc:1086 +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:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Bağımlılık ağacı oluşturuluyor" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Aday sürümler" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Bağımlılık oluşturma" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Durum bilgisi okunuyor" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s kurulu olmadığı için işaretlenemedi.\n" +msgid "Failed to open StateFile %s" +msgstr "Durum dosyası (StateFile) %s açılamadı." -#: cmdline/apt-mark.cc:74 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s zaten elle kurulmuş olarak ayarlı.\n" +msgid "Failed to write temporary StateFile %s" +msgstr "Geçici durum dosyasına (%s) yazma başarısız oldu" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s zaten otomatik kurulmuş olarak ayarlı.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Paket dosyası %s ayrıştırılamadı (1)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s zaten tutulacak şekilde ayarlanmış.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Paket dosyası %s ayrıştırılamadı (2)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s zaten tutulmayacak şekilde ayarlanmış.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s için beklenildi ama o gelmedi" +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "%s set on hold.\n" -msgstr "%s paketi tutuluyor.\n" +msgid "Unable to locate package %s" +msgstr "%s paketi bulunamadı" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s paketini tutma işlemi iptal edildi.\n" +msgid "Couldn't find task '%s'" +msgstr "'%s' görevi bulunamadı" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" -#: cmdline/apt-mark.cc:392 -#, fuzzy +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" + +#: apt-pkg/cacheset.cc:626 +#, 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:633 apt-pkg/cacheset.cc:640 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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." +"'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de " +"seçilemiyor" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/cacheset.cc:647 +#, 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" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "'cdrom' veritabanı %s okunamıyor" +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" -#: 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." +#: apt-pkg/cacheset.cc:663 +#, 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" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Yanlış CD-ROM" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "'Release' dosyası (%s) ayrıştırılamadı" -#: methods/cdrom.cc:249 +#: apt-pkg/indexrecords.cc:86 #, 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." +msgid "No sections in Release file %s" +msgstr "'Release' dosyası %s içinde hiç bölüm yok" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk bulunamadı." +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "'Release' dosyasında (%s) sağlama girdisi yok" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Dosya bulunamadı" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "'Release' dosyasında (%s) geçersiz 'Valid-Until' girdisi" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Durum bilgisi okunamadı" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Değişiklik zamanı ayarlanamadı" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Geçersiz URI, yerel URI'ler // ile başlamamalıdır" +#: apt-pkg/sourcelist.cc:170 +#, 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)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Giriş yapılıyor" +#: apt-pkg/sourcelist.cc:173 +#, 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)" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Eş adı belirlenemiyor" +#: apt-pkg/sourcelist.cc:184 +#, 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)" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Yerel ad belirlenemiyor" +#: apt-pkg/sourcelist.cc:190 +#, 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)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Sunucu bağlantıyı reddetti, sunucunun iletisi: %s" +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ış)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER başarısız, sunucunun iletisi: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS başarısız, sunucunun iletisi: %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dist)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -"Bir Vekil sunucu belirtildi ancak oturum açma betiği belirtilmedi, Acquire::" -"ftp::ProxyLogin boş." +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:217 #, 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" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (mutlak dist)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE başarısız, sunucunun iletisi: %s" +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)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Bağlantı zaman aşımına uğradı" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s Açılıyor" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Sunucu bağlantıyı kesti" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı hatalı (tür)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Okuma hatası" +#: apt-pkg/sourcelist.cc:375 +#, 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)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Bir yanıt arabelleği taşırdı." +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "İletişim kuralları bozulması" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "%s kuruluyor" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Yazma hatası" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s yapılandırılıyor" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Bir soket oluşturulamadı" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s kaldırılıyor" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Veri soketine bağlanılamadı, bağlantı zaman aşımına uğradı" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s tamamen kaldırılıyor" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Başarısız" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "%s paketinin kaybolduğu not ediliyor" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Edilgen sokete bağlanılamadı." +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo bir dinleme soketi alamıyor" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "'%s' dizini bulunamadı" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Bir sokete bağlanılamadı" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Soket dinlenemedi" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "'%s' dosyası açılamadı" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Soketin adı belirlenemedi" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s hazırlanıyor" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT komutu gönderilemedi" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "%s paketi açılıyor" -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Bilinmeyen adres ailesi %u (AF_*)" +msgid "Preparing to configure %s" +msgstr "%s paketini yapılandırmaya hazırlanılıyor" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT başarısız, sunucunun iletisi: %s" +msgid "Installed %s" +msgstr "%s kuruldu" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Veri soketi bağlantısı zaman aşımına uğradı" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "%s paketinin kaldırılmasına hazırlanılıyor" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Bağlantı kabul edilemiyor" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s kaldırıldı" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Dosya sağlaması yapılamadı" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "%s paketinin tamamen kaldırılmasına hazırlanılıyor" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'" +msgid "Completely removed %s" +msgstr "%s tamamen kaldırıldı" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Veri soketi zaman aşımına uğradı" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Veri aktarımı başarısız, sunucunun iletisi: '%s'" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "%s dosyasına yazılamıyor" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Sorgu" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Çağrılamıyor " +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Bağlanılıyor %s (%s)" +msgid "Waited for %s but it wasn't there" +msgstr "%s için beklenildi ama o gelmedi" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "İşlem yarıda kesildi" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:1631 +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:1636 +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:1638 +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:1644 +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:1651 +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:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı" + +#: apt-pkg/deb/dpkgpm.cc:1685 +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:91 #, 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)" +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?" -#: methods/connect.cc:100 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s bağlantısı başlatılamıyor (%s)." +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?" -#: methods/connect.cc:108 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, 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ı" +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. " -#: methods/connect.cc:126 +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Kilitlenmemiş" + +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Adrese bağlanılamadı: %s:%s (%s)." +msgid "%lid %lih %limin %lis" +msgstr "%li gün %li saat %li dk. %li sn." -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "Connecting to %s" -msgstr "Bağlanılıyor: %s" +msgid "%lih %limin %lis" +msgstr "%li saat %li dk. %li sn." -#: methods/connect.cc:180 methods/connect.cc:199 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "Could not resolve '%s'" -msgstr "'%s' çözümlenemedi" +msgid "%limin %lis" +msgstr "%li dk. %li sn." -#: methods/connect.cc:205 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" +msgid "%lis" +msgstr "%li sn." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "%s seçimi bulunamadı" -#: methods/connect.cc:211 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s' (%i - %s) adresi çözümlenirken bir şeyler kötü gitti" +msgid "Not using locking for read only lock file %s" +msgstr "Kilitleme dosyası %s salt okunur olduğu için kilitleme kullanılmıyor" -#: methods/connect.cc:258 +#: apt-pkg/contrib/fileutl.cc:195 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Bağlanılamıyor %s:%s:" +msgid "Could not open lock file %s" +msgstr "Kilit dosyası %s açılamadı" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "İç hata: İmza iyi, ancak anahtar parmak izi belirlenemedi?!" +#: apt-pkg/contrib/fileutl.cc:218 +#, 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" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "En az bir geçersiz imza ile karşılaşıldı." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "%s kilidi alınamadı" -#: methods/gpgv.cc:174 -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?)" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, 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" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +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." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv çalıştırılırken bilinmeyen hata" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Aşağıdaki imzalar geçersiz:\n" +#: apt-pkg/contrib/fileutl.cc:412 +#, 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." -#: methods/gpgv.cc:231 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format 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:69 -msgid "Empty files can't be valid archives" -msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Dosyaya yazılamadı" +"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." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "%s altsüreci bir bölümleme hatası aldı (segmentation fault)." -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Sunucundan okunurken hata" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "%s altsüreci %u sinyali aldı" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Dosyaya yazılamadı" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s altsüreci bir hata kodu gönderdi (%u)" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Seçme başarısız" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "%s altsüreci beklenmeyen bir şekilde sona erdi" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Bağlantı zaman aşımına uğradı" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Yazma hatası" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Çıktı dosyasına yazılırken hata" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gzip dosyası %s kapatılamadı" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Başlıklar bekleniyor" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "%s dosyası açılamadı" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Kötü başlık satırı" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Dosya tanımlayıcı %d açılamadı" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP sunucusu geçersiz bir cevap başlığı gönderdi" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Altsüreç IPC'si oluşturulamadı" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP sunucusu geçersiz bir Content-Length başlığı gönderdi" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Sıkıştırma programı çalıştırılamadı " -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP sunucusu geçersiz bir Content-Range başlığı gönderdi" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Okuma hatası" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP sunucusunun aralık desteği bozuk" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "read, %llu bayt okunması gerekli fakat hiç kalmamış" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Bilinmeyen tarih biçimi" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "write, yazılması gereken %llu bayt yazılamıyor" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Kötü başlık verisi" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "%s dosyası kapatılamadı" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Bağlantı başarısız" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "%s dosyası %s olarak yeniden adlandırılamadı" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "İç hata" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "%s dosyasından bağ kaldırma sorunu" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Yükseltme hesaplanıyor... " +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Dosya eşitlenirken sorun çıktı" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "İç hata, AllUpgrade bazı şeyleri bozdu" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Hata!" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Bitti" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Bitti" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Bitti" -#: apt-private/private-list.cc:164 +#: 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 "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Dosya tanımlayıcı %i çoğaltılamadı" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Bağımlılıklar düzeltiliyor..." +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "%llu baytlık mmap yapılamaz" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " başarısız oldu." +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap kapatılamıyor" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Bağımlılıklar düzeltilemedi" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap eşlenemiyor" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Yükseltme kümesi küçültülemiyor" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu baytlık mmap yapılamaz" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Tamamlandı" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Dosya kesilemedi" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: 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 "" -"Bu sorunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " -"gerekebilir." +"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-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin." +#: apt-pkg/contrib/mmap.cc:446 +#, 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-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/contrib/mmap.cc:449 +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ı." -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Kuruldu]" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Bağlama noktasının (%s) durum bilgisi alınamadı" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Kuruldu]" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Cdrom durum bilgisi alınamadı" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" - -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Kuruldu]" - -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Kuruldu]" - -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tanınamayan tür kısaltması: '%c'" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Yapılandırma dosyası (%s) açılıyor" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "but %s is installed" -msgstr "ama %s kurulu" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Sözdizim hatası %s:%u: Blok ad olmadan başlıyor." -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "but %s is to be installed" -msgstr "ama %s kurulacak" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Sözdizim hatası %s:%u: Kötü biçimlendirilmiş etiket" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "ama kurulabilir değil" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Sözdizim hatası %s:%u: Değerden sonra ilave gereksiz" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "ama o bir sanal paket" +#: apt-pkg/contrib/configuration.cc:877 +#, 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-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "ama kurulu değil" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Sözdizim hatası %s:%u: Çok fazla yuvalanmış 'include'" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "ama kurulmayacak" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Sözdizim hatası %s:%u: Buradan 'include' edilmiş" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " ya da" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Sözdizim hatası %s:%u: Desteklenmeyen yönerge '%s'" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Aşağıdaki YENİ paketler kurulacak:" +#: apt-pkg/contrib/configuration.cc:900 +#, 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-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Aşağıdaki paketler KALDIRILACAK:" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Sözdizim hatası %s:%u: Dosya sonunda ilave gereksiz" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "%s dizininde kurulu bir anahtar yok." -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Aşağıdaki paketler yükseltilecek:" +#: apt-pkg/contrib/cmndline.cc:121 +#, 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-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Komut satırı seçeneği %s anlaşılamadı" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:" +#: apt-pkg/contrib/cmndline.cc:168 +#, 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-private/private-output.cc:655 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%s (due to %s) " -msgstr "%s (%s nedeniyle) " +msgid "Option %s requires an argument." +msgstr "%s seçeneği bir bağımsız değişkene gerek duyar." -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -"UYARI: Aşağıdaki temel paketler kaldırılacak.\n" -"Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!" +"%s seçeneği: Yapılandırma öğesi tanımlaması =<değer> şeklinde değer " +"içermelidir." -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, " +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-private/private-output.cc:698 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu paket yeniden kurulacak, " +msgid "Option '%s' is too long" +msgstr "'%s' seçeneği çok uzun" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%lu downgraded, " -msgstr "%lu paketin sürümü düşürülecek, " +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-private/private-output.cc:702 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n" +msgid "Invalid operation %s" +msgstr "Geçersiz işlem: %s" -#: apt-private/private-output.cc:706 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n" +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" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[E/h]" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Toplam paketlerin adları: " -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[e/H]" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Toplam paket yapıları: " -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "E" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normal paketler: " -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "H" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Saf sanal paketler: " -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Regex derleme hatası - %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Tekil sanal paketler: " -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "'update' komutu bağımsız değişken almamaktadır" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Karışık sanal paketler: " -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Eksik: " -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Toplam farklı sürümler: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Toplam farklı açıklamalar: " -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Toplam bağımlılıklar: " -#: apt-private/private-install.cc:90 -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-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Toplam sürüm/dosya ilişkileri: " -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "İç hata, Sıralama tamamlanamadı" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Toplam Tanım/Dosya ilişkileri: " -#: apt-private/private-install.cc:147 -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." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Toplam destekleme eşleştirmeleri: " -#. 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 -#: apt-private/private-install.cc:154 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%sB/%sB arşiv dosyası indirilecek.\n" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Toplam birikmiş dizgiler: " -#. 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 -#: apt-private/private-install.cc:159 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%sB arşiv dosyası indirilecek.\n" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Toplam bağlımlık sürümü alanı: " -#. 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 -#: apt-private/private-install.cc:166 -#, 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" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Toplam serbest alan: " -#. 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 -#: apt-private/private-install.cc:171 -#, 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-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Hesaplanan toplam alan: " -#: apt-private/private-install.cc:199 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s içinde yeterli boş alanınız yok." - -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -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ı" +msgid "Package file %s is out of sync." +msgstr "%s paket dosyası eşzamansız." -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -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-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Hiç paket bulunamadı" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Evet, söylediğim şekilde yap!" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "En az bir arama örüntüsü vermelisiniz" -#: apt-private/private-install.cc:221 -#, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Tehlikeli bir iş yapmak üzeresiniz.\n" -"Devam etmek için '%s' ifadesini yazınız\n" -" ?] " +"Bu komutun kullanımı bırakılmıştır. Lütfen bunun yerine 'apt-mark showauto' " +"komutunu kullanın." -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Vazgeç." +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Paket dosyaları:" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Devam etmek istiyor musunuz?" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +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." -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Bazı dosyalar indirilemedi" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Sabitlenmiş paketler:" -#: apt-private/private-install.cc:319 -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-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(bulunamadı)" -#: apt-private/private-install.cc:323 -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-cache.cc:1586 +msgid " Installed: " +msgstr " Kurulu: " -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Eksik paketler düzeltilemedi." +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Aday: " -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Kurulum iptal ediliyor." +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(hiçbiri)" -#: apt-private/private-install.cc:365 -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-cache.cc:1620 +msgid " Package pin: " +msgstr " Paket sabitleme: " -#: apt-private/private-install.cc:369 -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." +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Sürüm çizelgesi:" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: 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" -#: apt-private/private-install.cc:498 +#: cmdline/apt-cache.cc:1749 msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"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 "" -"AutoRemover yapmaması gereken bir yıkıma\n" -"sebep oldu. Lütfen apt hakkında bir hata raporu doldurun." - -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:" +"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" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "İç hata, AutoRemover bazı şeyleri bozdu" +#: cmdline/apt-cdrom.cc:76 +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'" -#: apt-private/private-install.cc:512 -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-cdrom.cc:91 +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" -#: apt-private/private-install.cc:516 +#: cmdline/apt-cdrom.cc:139 #, 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" - -#: apt-private/private-install.cc:518 -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." - -#: apt-private/private-install.cc:612 -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:" +msgid "Failed to mount '%s' to '%s'" +msgstr "'%s', '%s' konumuna bağlanamadı" -#: apt-private/private-install.cc:614 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneği " -"vermeden deneyin (ya da bir çözüm belirtin)." -#: apt-private/private-install.cc:628 -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." - -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Bozuk paketler" - -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Aşağıdaki ek paketler de kurulacak:" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Kalan CD'leriniz için bu işlemi yineleyin." -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Önerilen paketler:" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Değişkenler (argüman) çiftler halinde değil" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Tavsiye edilen paketler:" +#: cmdline/apt-config.cc:89 +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" -#: apt-private/private-install.cc:815 -#, 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:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" -#: apt-private/private-install.cc:819 -#, 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:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" -#: apt-private/private-install.cc:831 -#, 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:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" -#: apt-private/private-install.cc:836 +#: cmdline/apt-get.cc:367 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s zaten en yeni sürümde.\n" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n" -#: apt-private/private-install.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:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "'%2$s' paketinin mevcut olmayan '%1$s' sürümünü görmezden gel" -#: apt-private/private-install.cc:889 +#: cmdline/apt-get.cc:454 #, 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" +msgid "Couldn't find package %s" +msgstr "%s paketi bulunamadı" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, 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" +msgid "%s set to manually installed.\n" +msgstr "%s elle kurulmuş olarak ayarlı.\n" -#: apt-private/private-install.cc:937 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "'%s' kurulu değildi, dolayısıyla kaldırılmadı.\n" +msgid "%s set to automatically installed.\n" +msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 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!" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." 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." - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "UYARI: Aşağıdaki paketler doğrulanamıyor!" +"Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark " +"manual' kullanın." -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "İç hata, sorun çözücü nesneyi bozdu" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Bazı paketlerin kimlik denetimi yapılamadı" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "İndirme dizini kilitlenemiyor" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Paketler doğrulanmadan kurulsun mu?" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Kaynağının indirileceği en az bir paket seçilmeli" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s ağdan alınamadı. %s\n" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s, %s olarak yeniden adlandırılamadı" +msgid "Unable to find a source package for %s" +msgstr "%s paketinin kaynak paketi bulunamadı" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +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" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-get.cc:791 +#, 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" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Bağlandı " +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\n" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Alınıyor: " +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "%s içindeki boş alan miktarı belirlenemedi" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Yoksay " +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "%s üzerinde yeterli boş alan yok" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Hata " +#. 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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%sB/%sB kaynak arşivi indirilecek.\n" -#: apt-private/acqprogress.cc:146 +#. 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:896 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n" +msgid "Need to get %sB of source archives.\n" +msgstr "%sB kaynak arşivi indirilecek.\n" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:902 #, c-format -msgid " [Working]" -msgstr " [Çalışıyor]" +msgid "Fetch source %s\n" +msgstr "%s kaynağını al\n" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Bazı arşivler alınamadı." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde" + +#: cmdline/apt-get.cc:950 #, 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" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s için zaten açılmış bazı paketlerin açılması atlanıyor.\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to read %s" -msgstr "%s okunamıyor" +msgid "Unpack command '%s' failed.\n" +msgstr "Paket açma komutu '%s' başarısız.\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to change to %s" -msgstr "%s olarak değiştirilemedi" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-get.cc:991 #, c-format -msgid "No mirror file '%s' found " -msgstr "'%s' yansı dosyası bulunamadı " +msgid "Build command '%s' failed.\n" +msgstr "İnşa komutu '%s' başarısız oldu.\n" -#. 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" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Alt süreç başarısız" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Yansı dosyası %s okunamıyor" +#: cmdline/apt-get.cc:1029 +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" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:1054 #, c-format -msgid "[Mirror: %s]" -msgstr "[Yansı: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Altsürece IPC borusu oluşturulamadı" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Bağlantı vaktinden önce kapandı" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Geçersiz öntanımlı ayar!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Devam etmek için giriş (enter) tuşuna basın." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Daha önceden indirilmiş .deb dosyalarını silmek istiyor musunuz?" - -#: dselect/install:102 -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:103 -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:104 -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:105 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" 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" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode hala bağlı olan düğüm üzerinde çağrıldı" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Sağlama elementi bulunamadı" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Yönlendirme tahsisi başarısız oldu" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion'da iç hata" - -#: apt-inst/filelist.cc:477 -#, 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:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Aynı dosya iki kez yönlendirilemez: %s -> %s" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "%s/%s yapılandırma dosyası zaten mevcut" - -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "%s yolu çok uzun" - -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "%s paketi bir çok kez açıldı" - -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "%s dizini yönlendirilmiş" - -#: apt-inst/extract.cc:152 -#, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Yönlendirme yolu çok uzun" - -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "%s durum bilgisi alınamadı" +"%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." -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s, %s olarak yeniden adlandırılamadı" +msgid "Unable to get build-dependency information for %s" +msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:1101 #, 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:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Düğüm sağlama kovasında bulunamadı" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Yol çok uzun" +msgid "%s has no build depends.\n" +msgstr "%s paketinin hiç inşa bağımlılığı yok.\n" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "%s paketinin sürümü yok" +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." -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1289 #, 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" +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ı." -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Unable to stat %s" -msgstr "%s durum bilgisi alınamadı" +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." -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "Failed to write file %s" -msgstr "%s dosyasına yazılamadı" +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" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Failed to close file %s" -msgstr "%s dosyası kapatılamadı" +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" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1380 #, 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" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%2$s için %1$s bağımlılığı karşılanamadı: %3$s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "İç hata, %s üyesi bulunamadı" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ayrıştırılamayan 'control' dosyası" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Geçersiz arşiv imzası" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s için inşa bağımlılıkları karşılanamadı." -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Arşiv üyesi başlığı okuma hatası" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "İnşa bağımlılıklarını işleme başarısız oldu" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Invalid archive member header %s" -msgstr "Geçerşiz arşiv üyesi başlığı %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Geçersiz arşiv üyesi başlığı" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arşiv çok kısa" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Arşiv başlıkları okunamadı" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Boru oluşturulamadı" - -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Gzip çalıştırılamadı " +msgid "Changelog for %s (%s)" +msgstr "%s (%s) paketinin değişim günlüğü" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Bozuk arşiv" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Desteklenen birimler:" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar sağlama toplamı başarısız, arşiv bozulmuş" - -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Bilinmeyen TAR başlığı türü %u, üye %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "%s için dosya bilgisi alınamadı." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1632 +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" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "dpkg çalıştırılıyor" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Kaynağının indirileceği en az bir paket seçilmeli" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketleme sistemi '%s' desteklenmiyor" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Uygun bir paketleme sistemi türü bulunamıyor" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Wrote %i records.\n" -msgstr "%i kayıt yazıldı.\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s kurulu olmadığı için işaretlenemedi.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%2$i eksik dosyayla %1$i kayıt yazıldı.\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s zaten elle kurulmuş olarak ayarlı.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-mark.cc:76 #, 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" +msgid "%s was already set to automatically installed.\n" +msgstr "%s zaten otomatik kurulmuş olarak ayarlı.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-mark.cc:241 #, 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" +msgid "%s was already set on hold.\n" +msgstr "%s zaten tutulacak şekilde ayarlanmış.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "%s için kimlik doğrulama kaydı bulunamadı." +msgid "%s was already not hold.\n" +msgstr "%s zaten tutulmayacak şekilde ayarlanmış.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Sağlama yapılamadı: %s" +msgid "%s set on hold.\n" +msgstr "%s paketi tutuluyor.\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, 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:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" +msgid "Canceled hold on %s.\n" +msgstr "%s paketini tutma işlemi iptal edildi.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "%s yöntemi düzgün şekilde başlamadı" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -"Lütfen '%s' olarak etiketlenmiş diski '%s' sürücüsüne yerleştirin ve giriş " -"(enter) tuşuna basın." - -#: apt-pkg/cachefile.cc:94 -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ı." +"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." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Bu sorunları gidermek için apt-get update komutunu çalıştırabilirsiniz." - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Kaynak listesi okunamadı." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Boş paket önbelleği" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Paket önbelleği dosyası bozulmuş" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Paket önbelleği dosyası uyumsuz bir sürümde" - -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Paket önbellek dosyası bozulmuş, çok küçük" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, 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:179 -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:321 -msgid "Depends" -msgstr "Bağımlılıklar" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "ÖnBağımlılıklar" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Önerdikleri" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Tavsiye ettikleri" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Çakışmalar" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Değiştirilenler" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Eskiyenler" - -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Bozdukları" - -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Geliştirdikleri" +msgid "Unable to read the cdrom database %s" +msgstr "'cdrom' veritabanı %s okunamıyor" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "önemli" +#: 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." -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "gerekli" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Yanlış CD-ROM" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standart" +#: 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." -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "seçimlik" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk bulunamadı." -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ilave" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Dosya bulunamadı" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "İndeks dosyası türü '%s' desteklenmiyor" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Durum bilgisi okunamadı" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Önbelleğin uyumsuz bir sürümleme sistemi var" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Değişiklik zamanı ayarlanamadı" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s paketi işlenirken sorunlarla karşılaşıldı (%s%d)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Geçersiz URI, yerel URI'ler // ile başlamamalıdır" -#: apt-pkg/pkgcachegen.cc:257 -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." +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Giriş yapılıyor" -#: apt-pkg/pkgcachegen.cc:260 -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." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Eş adı belirlenemiyor" -#: apt-pkg/pkgcachegen.cc:263 -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." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Yerel ad belirlenemiyor" -#: apt-pkg/pkgcachegen.cc:266 -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." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Sunucu bağlantıyı reddetti, sunucunun iletisi: %s" -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:225 #, 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ı" +msgid "USER failed, server said: %s" +msgstr "USER başarısız, sunucunun iletisi: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:232 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı" +msgid "PASS failed, server said: %s" +msgstr "PASS başarısız, sunucunun iletisi: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Paket listeleri okunuyor" +#: methods/ftp.cc:252 +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ş." -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Dosya Sağlananları Toplanıyor" +#: methods/ftp.cc:280 +#, 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" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:306 #, c-format -msgid "Unable to write to %s" -msgstr "%s dosyasına yazılamıyor" +msgid "TYPE failed, server said: %s" +msgstr "TYPE başarısız, sunucunun iletisi: %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Kaynak önbelleği kaydedilirken GÇ Hatası" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Bağlantı zaman aşımına uğradı" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Çözücüye senaryo gönder" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Sunucu bağlantıyı kesti" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Çözücüye istek gönder" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Bir yanıt arabelleği taşırdı." -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Çözüm almak için hazırlan" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "İletişim kuralları bozulması" -#: apt-pkg/edsp.cc:320 -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" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Bir soket oluşturulamadı" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Harici çözücüyü çalıştır" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Veri soketine bağlanılamadı, bağlantı zaman aşımına uğradı" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "yeniden adlandırma başarısız, %s (%s -> %s)." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Başarısız" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Sağlama toplamları eşleşmiyor" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Edilgen sokete bağlanılamadı." -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Boyutlar eşleşmiyor" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo bir dinleme soketi alamıyor" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Geçersiz işlem: %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Bir sokete bağlanılamadı" -#: apt-pkg/acquire-item.cc:1581 -#, 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ı)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Soket dinlenemedi" -#: apt-pkg/acquire-item.cc:1597 -#, 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ı" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Soketin adı belirlenemedi" -#: apt-pkg/acquire-item.cc:1639 -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" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "PORT komutu gönderilemedi" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:802 #, 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." +msgid "Unknown address family %u (AF_*)" +msgstr "Bilinmeyen adres ailesi %u (AF_*)" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:811 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)" +msgid "EPRT failed, server said: %s" +msgstr "EPRT başarısız, sunucunun iletisi: %s" -#: apt-pkg/acquire-item.cc:1729 -#, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\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" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Veri soketi bağlantısı zaman aşımına uğradı" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 -#, c-format -msgid "GPG error: %s: %s" -msgstr "GPG hatası: %s: %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Bağlantı kabul edilemiyor" -#: apt-pkg/acquire-item.cc:1867 -#, 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ı)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Dosya sağlaması yapılamadı" -#: apt-pkg/acquire-item.cc:1933 +#: methods/ftp.cc:890 #, 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ı" +msgid "Unable to fetch file, server said '%s'" +msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'" -#: apt-pkg/acquire-item.cc:1991 -#, 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." +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Veri soketi zaman aşımına uğradı" -#: apt-pkg/vendorlist.cc:85 +#: methods/ftp.cc:935 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Sağlayıcı bloğu %s parmak izi içermiyor" +msgid "Data transfer failed, server said '%s'" +msgstr "Veri aktarımı başarısız, sunucunun iletisi: '%s'" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Liste dizini %spartial bulunamadı." +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Sorgu" -#: apt-pkg/acquire.cc:91 +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Çağrılamıyor " + +#: methods/connect.cc:76 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arşiv dizini %spartial bulunamadı." +msgid "Connecting to %s (%s)" +msgstr "Bağlanılıyor %s (%s)" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:87 #, c-format -msgid "Unable to lock directory %s" -msgstr "%s dizini kilitlenemiyor" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:94 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Alınan dosya: %li / %li (%s kaldı)" +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)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:100 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Alınan dosya: %li / %li" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s bağlantısı başlatılamıyor (%s)." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -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ı." +#: methods/connect.cc:108 +#, 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ı" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "'sources.list' dosyası içine bazı 'source' adresleri koymalısınız." +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Adrese bağlanılamadı: %s:%s (%s)." -#: apt-pkg/policy.cc:83 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, 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." +msgid "Connecting to %s" +msgstr "Bağlanılıyor: %s" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:180 methods/connect.cc:199 #, 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" +msgid "Could not resolve '%s'" +msgstr "'%s' çözümlenemedi" -#: apt-pkg/policy.cc:444 +#: methods/connect.cc:205 #, c-format -msgid "Did not understand pin type %s" -msgstr "İğne türü %s anlaşılamadı" +msgid "Temporary failure resolving '%s'" +msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "İğne için öncelik belirlenmedi (ya da sıfır)" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: methods/connect.cc:211 #, 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)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s' (%i - %s) adresi çözümlenirken bir şeyler kötü gitti" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: methods/connect.cc:258 #, c-format -msgid "Could not configure '%s'. " -msgstr "'%s' paketi yapılandırılamadı. " +msgid "Unable to connect to %s:%s:" +msgstr "Bağlanılamıyor %s:%s:" -#: apt-pkg/packagemanager.cc:583 +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "İç hata: İmza iyi, ancak anahtar parmak izi belirlenemedi?!" + +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "En az bir geçersiz imza ile karşılaşıldı." + +#: methods/gpgv.cc:174 +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?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, 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." +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" 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/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı çok uzun." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv çalıştırılırken bilinmeyen hata" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM ayrılıyor...\n" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Aşağıdaki imzalar geçersiz:\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "CD-ROM bağlama noktası %s kullanılıyor\n" +#: methods/gpgv.cc:231 +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" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Disk bekleniliyor...\n" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM bağlanıyor...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Dosyaya yazılamadı" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Tanımlanıyor... " +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Kayıtlı etiket: %s\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Sunucundan okunurken hata" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Disk, indeks dosyaları için taranıyor...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Dosyaya yazılamadı" -#: apt-pkg/cdrom.cc:734 -#, 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" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Seçme başarısız" -#: apt-pkg/cdrom.cc:744 -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." +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Bağlantı zaman aşımına uğradı" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "'%s' etiketi bulundu\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Çıktı dosyasına yazılırken hata" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Bu, geçerli bir ad değil, yeniden deneyin.\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Başlıklar bekleniyor" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Disk adı: \n" -"'%s'\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Kötü başlık satırı" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Paket listeleri kopyalanıyor.." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP sunucusu geçersiz bir cevap başlığı gönderdi" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Yeni kaynak listesi yazılıyor\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP sunucusu geçersiz bir Content-Length başlığı gönderdi" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Bu disk için olan kaynak listesi girdileri:\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP sunucusu geçersiz bir Content-Range başlığı gönderdi" -#: apt-pkg/algorithms.cc:265 -#, 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." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP sunucusunun aralık desteği bozuk" -#: apt-pkg/algorithms.cc:1086 -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." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Bilinmeyen tarih biçimi" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Kötü başlık verisi" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Bağımlılık ağacı oluşturuluyor" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Bağlantı başarısız" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Aday sürümler" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "İç hata" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Bağımlılık oluşturma" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Yükseltme hesaplanıyor... " -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Durum bilgisi okunuyor" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Bitti" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Durum dosyası (StateFile) %s açılamadı." +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Geçici durum dosyasına (%s) yazma başarısız oldu" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-list.cc:164 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Paket dosyası %s ayrıştırılamadı (1)" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Bağımlılıklar düzeltiliyor..." + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " başarısız oldu." + +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Bağımlılıklar düzeltilemedi" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Paket dosyası %s ayrıştırılamadı (2)" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Yükseltme kümesi küçültülemiyor" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Tamamlandı" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" +#: apt-private/private-cachefile.cc:108 +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." -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "'%s' görevi bulunamadı" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin." -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +msgid "[installed,upgradable to: %s]" +msgstr " [Kuruldu]" -#: apt-pkg/cacheset.cc:626 -#, 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-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Kuruldu]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de " -"seçilemiyor" -#: apt-pkg/cacheset.cc:647 -#, 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-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Kuruldu]" -#: apt-pkg/cacheset.cc:655 -#, 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-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Kuruldu]" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:249 #, 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" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "'Release' dosyası (%s) ayrıştırılamadı" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:435 #, c-format -msgid "No sections in Release file %s" -msgstr "'Release' dosyası %s içinde hiç bölüm yok" +msgid "but %s is installed" +msgstr "ama %s kurulu" -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:437 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "'Release' dosyasında (%s) sağlama girdisi yok" +msgid "but %s is to be installed" +msgstr "ama %s kurulacak" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "'Release' dosyasında (%s) geçersiz 'Valid-Until' girdisi" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ama kurulabilir değil" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ama o bir sanal paket" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ama kurulu değil" -#: apt-pkg/sourcelist.cc:170 -#, 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-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ama kurulmayacak" -#: apt-pkg/sourcelist.cc:173 -#, 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-private/private-output.cc:454 +msgid " or" +msgstr " ya da" -#: apt-pkg/sourcelist.cc:184 -#, 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-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:" -#: apt-pkg/sourcelist.cc:190 -#, 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-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Aşağıdaki YENİ paketler kurulacak:" -#: apt-pkg/sourcelist.cc:193 -#, 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-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Aşağıdaki paketler KALDIRILACAK:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dist)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Aşağıdaki paketler yükseltilecek:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" +msgid "%s (due to %s) " +msgstr "%s (%s nedeniyle) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" +"UYARI: Aşağıdaki temel paketler kaldırılacak.\n" +"Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:707 #, 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)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, 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)" +msgid "%lu reinstalled, " +msgstr "%lu paket yeniden kurulacak, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "%s Açılıyor" +msgid "%lu downgraded, " +msgstr "%lu paketin sürümü düşürülecek, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı hatalı (tür)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, 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)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[E/h]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "%s kuruluyor" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[e/H]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s yapılandırılıyor" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "E" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s kaldırılıyor" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "H" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "'update' komutu bağımsız değişken almamaktadır" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Completely removing %s" -msgstr "%s tamamen kaldırılıyor" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "%s paketinin kaybolduğu not ediliyor" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "'%s' dizini bulunamadı" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "'%s' dosyası açılamadı" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s hazırlanıyor" +#: apt-private/private-install.cc:91 +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ış." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s paketi açılıyor" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "İç hata, Sıralama tamamlanamadı" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s paketini yapılandırmaya hazırlanılıyor" +#: apt-private/private-install.cc:148 +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." -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "%s kuruldu" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%sB/%sB arşiv dosyası indirilecek.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s paketinin kaldırılmasına hazırlanılıyor" +msgid "Need to get %sB of archives.\n" +msgstr "%sB arşiv dosyası indirilecek.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "%s kaldırıldı" +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" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "%s paketinin tamamen kaldırılmasına hazırlanılıyor" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Bu işlem tamamlandıktan sonra %sB disk alanı boşalacak.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "%s tamamen kaldırıldı" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "You don't have enough free space in %s." +msgstr "%s içinde yeterli boş alanınız yok." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "%s dosyasına yazılamıyor" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +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ı" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +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." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Evet, söylediğim şekilde yap!" + +#: apt-private/private-install.cc:222 +#, 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" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "İşlem yarıda kesildi" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Vazgeç." -#: apt-pkg/deb/dpkgpm.cc:1631 -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ı" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Devam etmek istiyor musunuz?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "bağımlılık sorunları - yapılandırılmamış durumda bırakılıyor" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Bazı dosyalar indirilemedi" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Apport raporu yazılmadı çünkü hata iletisi bu durumun bir önceki hatadan " -"kaynaklanan bir hata olduğunu belirtiyor." +"Bazı arşivler alınamıyor, apt-get update'i çalıştırmayı ya da --fix-missing " +"seçeneğini ekleyerek düzeltmeyi deneyin." -#: apt-pkg/deb/dpkgpm.cc:1644 -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-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing seçeneği ve ortam takası şu an için desteklenmiyor" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Eksik paketler düzeltilemedi." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Kurulum iptal ediliyor." + +#: apt-private/private-install.cc:366 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ı" +"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:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:370 +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." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı" +"AutoRemover yapmaması gereken bir yıkıma\n" +"sebep oldu. Lütfen apt hakkında bir hata raporu doldurun." -#: apt-pkg/deb/dpkgpm.cc:1685 +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "İç hata, AutoRemover bazı şeyleri bozdu" + +#: apt-private/private-install.cc:513 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ı" +"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:" -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:517 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +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" + +#: apt-private/private-install.cc:519 +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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Yönetim dizini (%s) kilitlenemiyor, başka bir işlem tarafından kullanılıyor " -"olmasın?" +"Bunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " +"gerekebilir:" -#: apt-pkg/deb/debsystem.cc:94 -#, 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?" +#: apt-private/private-install.cc:614 +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)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"dpkg kesintiye uğradı, sorunu düzeltmek için elle '%s' komutunu çalıştırın. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Kilitlenmemiş" +"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." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li gün %li saat %li dk. %li sn." +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Bozuk paketler" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%li saat %li dk. %li sn." +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Aşağıdaki ek paketler de kurulacak:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%li dk. %li sn." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Önerilen paketler:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%li sn." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Tavsiye edilen paketler:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "%s seçimi bulunamadı" +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" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, 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" +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" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Kilit dosyası %s açılamadı" +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" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, 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" +msgid "%s is already the newest version.\n" +msgstr "%s zaten en yeni sürümde.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "%s kilidi alınamadı" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "'%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, 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" +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" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"'%2$s' dizinindeki '%1$s' normal bir dosya olmadığı için görmezden geliniyor." +"'%s' kurulu değildi, dolayısıyla kaldırılmadı. Bunu mu demek istediniz: " +"'%s'?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, 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." +msgid "Package '%s' is not installed, so not removed\n" +msgstr "'%s' kurulu değildi, dolayısıyla kaldırılmadı.\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"'%2$s' dizinindeki '%1$s' dosyası geçersiz bir dosya uzantısı olduğu için " -"yok sayılıyor." +"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." -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "%s altsüreci bir bölümleme hatası aldı (segmentation fault)." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "UYARI: Aşağıdaki paketler doğrulanamıyor!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "%s altsüreci %u sinyali aldı" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "%s altsüreci bir hata kodu gönderdi (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Bazı paketlerin kimlik denetimi yapılamadı" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "%s altsüreci beklenmeyen bir şekilde sona erdi" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Paketler doğrulanmadan kurulsun mu?" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gzip dosyası %s kapatılamadı" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "%s, %s olarak yeniden adlandırılamadı" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "%s dosyası açılamadı" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Dosya tanımlayıcı %d açılamadı" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Altsüreç IPC'si oluşturulamadı" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Bağlandı " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Sıkıştırma programı çalıştırılamadı " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Alınıyor: " -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "read, %llu bayt okunması gerekli fakat hiç kalmamış" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Yoksay " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "write, yazılması gereken %llu bayt yazılamıyor" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Hata " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the file %s" -msgstr "%s dosyası kapatılamadı" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "%s dosyası %s olarak yeniden adlandırılamadı" +msgid " [Working]" +msgstr " [Çalışıyor]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem unlinking the file %s" -msgstr "%s dosyasından bağ kaldırma sorunu" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Dosya eşitlenirken sorun çıktı" +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" -#: apt-pkg/contrib/progress.cc:148 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Hata!" +msgid "No mirror file '%s' found " +msgstr "'%s' yansı dosyası bulunamadı " -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Bitti" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "Can not read mirror file '%s'" +msgstr "Yansı dosyası %s okunamıyor" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Bitti" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Boş dosya mmap yapılamıyor" +msgid "No entry found in mirror file '%s'" +msgstr "Yansı dosyası %s okunamıyor" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Dosya tanımlayıcı %i çoğaltılamadı" +msgid "[Mirror: %s]" +msgstr "[Yansı: %s]" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%llu baytlık mmap yapılamaz" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Altsürece IPC borusu oluşturulamadı" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Bağlantı vaktinden önce kapandı" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Geçersiz öntanımlı ayar!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Devam etmek için giriş (enter) tuşuna basın." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "mmap kapatılamıyor" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Daha önceden indirilmiş .deb dosyalarını silmek istiyor musunuz?" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "mmap eşlenemiyor" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Paket açılırken bazı sorunlar çıktı. Kurulan paketler yapılandırılacak." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu baytlık mmap yapılamaz" +#: dselect/install:103 +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" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Dosya kesilemedi" +#: dselect/install:104 +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" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"above this message are important. Please fix them and run [I]nstall again" 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)" +"üstündeki hatalar önemlidir. Lütfen bunları onarın ve [I]nstall komutunu " +"yeniden çalıştırın" -#: apt-pkg/contrib/mmap.cc:446 -#, 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ı." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Kullanılabilir bilgiler birleştiriliyor" -#: apt-pkg/contrib/mmap.cc:449 -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ı." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode hala bağlı olan düğüm üzerinde çağrıldı" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Bağlama noktasının (%s) durum bilgisi alınamadı" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Sağlama elementi bulunamadı" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Cdrom durum bilgisi alınamadı" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Yönlendirme tahsisi başarısız oldu" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Tanınamayan tür kısaltması: '%c'" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion'da iç hata" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "Yapılandırma dosyası (%s) açılıyor" +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-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Sözdizim hatası %s:%u: Blok ad olmadan başlıyor." +msgid "Double add of diversion %s -> %s" +msgstr "Aynı dosya iki kez yönlendirilemez: %s -> %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Sözdizim hatası %s:%u: Kötü biçimlendirilmiş etiket" +msgid "Duplicate conf file %s/%s" +msgstr "%s/%s yapılandırma dosyası zaten mevcut" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Sözdizim hatası %s:%u: Değerden sonra ilave gereksiz" +msgid "The path %s is too long" +msgstr "%s yolu çok uzun" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, 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" +msgid "Unpacking %s more than once" +msgstr "%s paketi bir çok kez açıldı" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Sözdizim hatası %s:%u: Çok fazla yuvalanmış 'include'" +msgid "The directory %s is diverted" +msgstr "%s dizini yönlendirilmiş" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Sözdizim hatası %s:%u: Buradan 'include' edilmiş" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Bu paket yönlendirme hedefine (%s/%s) yazmayı deniyor" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Sözdizim hatası %s:%u: Desteklenmeyen yönerge '%s'" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Yönlendirme yolu çok uzun" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, 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." +msgid "Failed to stat %s" +msgstr "%s durum bilgisi alınamadı" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Sözdizim hatası %s:%u: Dosya sonunda ilave gereksiz" +msgid "Failed to rename %s to %s" +msgstr "%s, %s olarak yeniden adlandırılamadı" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "%s dizininde kurulu bir anahtar yok." +msgid "The directory %s is being replaced by a non-directory" +msgstr "%s dizini dizin olmayan bir öğeyle değiştirildi" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Düğüm sağlama kovasında bulunamadı" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Yol çok uzun" + +#: apt-inst/extract.cc:421 #, 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." +msgid "Overwrite package match with no version for %s" +msgstr "%s paketinin sürümü yok" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Komut satırı seçeneği %s anlaşılamadı" +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-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Komut satırı seçeneği %s mantıksal değer değil" +msgid "Unable to stat %s" +msgstr "%s durum bilgisi alınamadı" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "%s seçeneği bir bağımsız değişkene gerek duyar." +msgid "Failed to write file %s" +msgstr "%s dosyasına yazılamadı" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"%s seçeneği: Yapılandırma öğesi tanımlaması =<değer> şeklinde değer " -"içermelidir." +msgid "Failed to close file %s" +msgstr "%s dosyası kapatılamadı" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, 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" +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" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "'%s' seçeneği çok uzun" +msgid "Internal error, could not locate member %s" +msgstr "İç hata, %s üyesi bulunamadı" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ayrıştırılamayan 'control' dosyası" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Geçersiz arşiv imzası" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Arşiv üyesi başlığı okuma hatası" + +#: apt-inst/contrib/arfile.cc:96 #, 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." +msgid "Invalid archive member header %s" +msgstr "Geçerşiz arşiv üyesi başlığı %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Geçersiz arşiv üyesi başlığı" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arşiv çok kısa" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Arşiv başlıkları okunamadı" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Boru oluşturulamadı" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Gzip çalıştırılamadı " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Bozuk arşiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar sağlama toplamı başarısız, arşiv bozulmuş" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Geçersiz işlem: %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Bilinmeyen TAR başlığı türü %u, üye %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3596,7 +3600,7 @@ msgstr "MD5 hesaplanırken okunamadı" msgid "Problem unlinking %s" msgstr "%s bağı koparılırken sorun çıktı" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3650,6 +3654,10 @@ msgstr "" " -o=? Herhangi bir yapılandırma seçeneği ayarla, örneğin -o dir::cache=/" "tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "İç hata, AllUpgrade bazı şeyleri bozdu" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s geçerli bir DEB paketi değil." diff --git a/po/uk.po b/po/uk.po index 922da3120..2b65dd191 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2012-09-25 20:19+0300\n" "Last-Translator: A. Bondarenko <artem.brz@gmail.com>\n" "Language-Team: Українська <uk@li.org>\n" @@ -24,3263 +24,3267 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Тип '%s' індексного файлу не підтримується" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Пакунок %s версії %s має незадоволену залежність:\n" +msgid "Unable to read %s" +msgstr "Неможливо прочитати %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Всього імен пакунків: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Неможливо змінити на %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Всього структур пакунків: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Неможливо прочитати атрибути %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Нормальних пакунків: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Цілком віртуальних пакунків: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Виконується dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Окремих віртуальних пакунків: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Система пакування '%s' не підтримується" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Змішаних віртуальних пакунків: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Неможливо визначити тип необхідної системи пакування" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Відсутні: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Записано %i записів.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Всього унікальних версій: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Записано %i записів з %i відсутніми файлами.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Всього унікальних описів: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Записано %i записів з %i невідповідними файлам\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Всього залежностей: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Записано %i записів з %i відсутніми і %i невідповідними файлами\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Всього відносин Версія/Файл: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Неможливо знайти аутентифікаційний запис для: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Всього відносин Опис/Файл: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Невідповідність хешу для: %s" -#: cmdline/apt-cache.cc:336 -#, fuzzy -msgid "Total Provides mappings: " -msgstr "Всього карт 'Provides': " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Драйвер для метода %s не знайдено." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Всього відфільтрованих (globbed) рядків: " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" -#: cmdline/apt-cache.cc:362 -#, fuzzy -msgid "Total dependency version space: " -msgstr "Всього інформації про залежності: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Метод %s стартував некоректно" -#: cmdline/apt-cache.cc:367 -#, fuzzy -msgid "Total slack space: " -msgstr "Порожнього місця в кеші: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Будь-ласка, вставте диск з поміткою: '%s' в привід '%s' і натисніть Enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Загальний простір полічений для: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Не можу обробити чи відкрити перелік пакунків чи статусний файл." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Перелік пакунків %s розсинхронізований." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Для виправлення цих помилок Ви можете виконати apt-get update" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Не знайдено жодного пакунка" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Неможливо прочитати перелік вихідних кодів." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Ви повинні задати не менше одного шаблону пошуку" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Кеш пакунків пустий" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Ця команда є застарілою. Будь-ласка використовуйте 'apt-mark showauto'" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Файл кешу пакунків пошкоджений" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Файл кешу пакунків має несумісну версію" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Файл кешу пакунків пошкоджений, занадто малий" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Не можу знайти пакунок %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Цей APT не підтримує систему призначення версій '%s'" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Переліки пакунків:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Кеш пакунків був побудований для іншої архітектури" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Кеш не синхронізований, неможливо знайти посилання на перелік пакунків" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Залежності (Depends)" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Зафіксовані пакунки:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Пре-Залежності (PreDepends)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(не знайдено)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Пропонує (Suggests)" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Встановлено: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Рекомендує (Recommends)" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Кандидат: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Конфлікти (Conflicts)" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(відсутній)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Заміняє (Replaces)" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Фіксатор(pin) пакунка: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Застарілі (Obsoletes)" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Таблиця версій:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ламає (Breaks)" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s для %s скомпільовано %s %s\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Покращує (Enhances)" -#: cmdline/apt-cache.cc:1749 -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 "" -"Використання: apt-cache [опції] команда\n" -" apt-cache [опції] showpkg пакунок1 [пкн2 ...]\n" -" apt-cache [опції] showsrc пакунок1 [пкн2 ...]\n" -"\n" -"apt-cache - низькорівневий інструмент, що використовується для запиту\n" -"інформації з двійкових кеш-файлів APT\n" -"\n" -"Команди:\n" -" gencaches - побудувати обидва кеші - бінарний і з вихідними текстами\n" -" showpkg - показати загальну інформацію про конкретний пакунок\n" -" showsrc - показати інформацію про вихідний текст (source)\n" -" stats - показати основну статистику\n" -" dump - показати весь файл у стислій формі\n" -" dumpavail - видати доступний файл на stdout\n" -" unmet - показати незадоволені залежності\n" -" search - знайти пакунки, назва яких задовольняє регулярний вираз\n" -" show - показати інформацію про пакунок в зрозумілій формі\n" -" depends - показати інформацію про залежності пакунка\n" -" rdepends - показати інформацію про зворотні залежності пакунка\n" -" pkgnames - показати імена всіх пакунків у системі\n" -" dotty - генерувати графік пакунків у форматі GraphViz\n" -" xvcg - генерувати графік пакунків у форматі xvcg\n" -" policy - показати поточну політику\n" -"\n" -"Опції:\n" -" -h Цей текст допомоги.\n" -" -p=? Кеш пакунків.\n" -" -s=? Кеш вихідних текстів.\n" -" -q Не показувати індикатор прогресу.\n" -" -i Показувати тільки важливі залежності для команди unmet.\n" -" -c=? Читати зазначений файл конфігурації.\n" -" -o=? Встановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" -"Дивіться подробиці на man-сторінках apt-cache(8) і apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "важливі (important)" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Задайте назву для цього Диска, наприклад 'Debian 5.0.3 Disk 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "необхідні (required)" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Будь-ласка, вставте Диск у пристрій і натисніть Enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "стандартні (standard)" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Не вдалося під'єднати '%s' до '%s'" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "необов'язкові (optional)" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "додаткові (extra)" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Повторіть цей процес для решти CD з вашого набору." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Тип '%s' індексного файлу не підтримується" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Аргументи не в парах" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Помилка компіляції регулярного виразу - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Використання: apt-config [опції] команда\n" -"\n" -"apt-config - простий інструмент для зчитування конфігураційного файла APT\n" -"\n" -"Команди:\n" -" shell - режим shell\n" -" dump - показати конфігурацію\n" -"\n" -"Опції:\n" -" -h Цей текст допомоги.\n" -" -с=? Читати зазначений конфігураційний файл.\n" -" -o=? Встановити умовну опцію, наприклад, -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Кеш має несумісну систему призначення версій" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Виникла помилка під час обробки %s (%s%d)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Ого! Ви перевищили кількість імен пакунків, які APT може обробити." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Ого! Ви перевищили кількість версій, які APT може обробити." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Обираю '%s' як пакунок вихідних текстів, замість '%s'\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Ого! Ви перевищили кількість описів, які APT може обробити." -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ігнорувати недоступну версію '%s' пакунку '%s'" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Ого! Ви перевищили кількість залежностей, які APT може обробити." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Не можу знайти пакунок %s" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Пакунок %s %s не був знайдений під час обробки залежностей" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s позначений як встановлений вручну.\n" +msgid "Couldn't stat source package list %s" +msgstr "Не вдалося прочитати атрибути переліку вихідних текстів %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Зчитування переліків пакунків" + +#: apt-pkg/pkgcachegen.cc:1316 +#, fuzzy +msgid "Collecting File Provides" +msgstr "Збирання інформації про 'File Provides'" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s позначений як автоматично встановлений.\n" +msgid "Unable to write to %s" +msgstr "Неможливо записати в %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Ця команда застаріла. Будь-ласка, використовуйте замість неї 'apt-mark auto' " -"і 'apt-mark manual'." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Помилка IO під час збереження кешу вихідних текстів" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Внутрішня помилка, вирішувач проблем щось поламав" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +#, fuzzy +msgid "Send scenario to solver" +msgstr "Відправити сценарій розв'язувачу" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Неможливо заблокувати директорію для завантаження" +#: apt-pkg/edsp.cc:241 +#, fuzzy +msgid "Send request to solver" +msgstr "Відправити запит розв'язувачу" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/edsp.cc:320 +#, fuzzy +msgid "Prepare for receiving solution" +msgstr "Пригодуватися до отримання розв'язку" + +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " -"тексти" +"Зовнішній розв'язувач завершився невдало без відповідного повідомлення про " +"помилку" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +#, fuzzy +msgid "Execute external solver" +msgstr "Виконати зовнішній розв'язувач" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Неможливо знайти пакунок з вихідними текстами для %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "не вдалося перейменувати, %s (%s -> %s)." -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Невідповідність хешу MD5Sum" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Невідповідність розміру" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Невірна дія %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"УВАГА: Пакування '%s' відбувається в системі контролю версій '%s' на:\n" -"%s\n" +"Неможливо знайти очікуваний запис '%s' у 'Release' файлі (Невірний запис у " +"sources.list, або пошкоджений файл)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Неможливо знайти хеш-суму для '%s' у 'Release' файлі" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Відсутній публічний ключ для заданих ідентифікаторів (ID) ключа:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Будь-ласка використовуйте:\n" -"bzr branch %s\n" -"щоб отримати найновіші (потенційно не випущені) оновлення до пакунку.\n" +"Файл 'Release' для %s застарів (недійсний з %s). Оновлення для цього " +"репозиторія не будуть застосовані." -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Пропускаємо вже завантажений файл '%s'\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Конфліктуючий дистрибутив: %s (очікувався %s, але є %s)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Не вдалося визначити кількість вільного місця в %s" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Виникла помилка під час перевірки підпису. Репозиторій не оновлено, " +"попередні індексні файли будуть використані. Помилка GPG: %s: %s\n" -#: cmdline/apt-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Недостатньо місця в %s" +msgid "GPG error: %s: %s" +msgstr "Помилка GPG: %s: %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:891 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n" +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. Можливо, це значить, що вам потрібно " +"власноруч виправити цей пакунок. (через відсутність 'arch')" -#. 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:896 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Неможливо знайти джерело для завантаження версії '%s' для '%s'" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Fetch source %s\n" -msgstr "Завантаження вихідних текстів %s\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Індексні файли пакунків пошкоджені. Немає поля 'Filename' для пакунку %s." -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Деякі архіви не вдалося завантажити." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Блок постачальника %s не містить відбитку (fingerprint)" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Завантаження завершено в режимі \"тільки завантаження\"" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Відсутня директорія зі списками: %spartial" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "" -"Пропускається розпакування вихідних текстів, тому що вже розпаковано в %s\n" +msgid "Archives directory %spartial is missing." +msgstr "Відсутня директорія для архівів: %spartial" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Команда розпакування '%s' завершилася невдало.\n" +msgid "Unable to lock directory %s" +msgstr "Неможливо заблокувати директорію %s" -#: cmdline/apt-get.cc:963 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Завантажується файл %li з %li (залишилось %s)" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Команда побудови '%s' закінчилася невдало.\n" +msgid "Retrieving file %li of %li" +msgstr "Завантажується файл %li з %li" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Породжений процес завершився невдало" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Не вдалося завантажити %s %s\n" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Для перевірки залежностей для побудови необхідно вказати як мінімум один " -"пакунок" +"Деякі індексні файли не вдалося завантажити. Вони були зігноровані, або " +"замість них були використані старіші версії." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Додайте деякі посилання (URI) на вихідні тексти у ваш sources.list" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Відсутня інформація про архітектуру для %s. Дивись apt.conf(5) APT::" -"Архітектури для налащтування" +"Невірне значення '%s' для APT::Default-Release, так як такий випуск не є " +"доступним у вихідних кодах" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Неможливо одержати інформацію про залежності для побудови %s" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Невірний запис у файлі налаштувань %s, відсутній заголовок Package" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s не має залежностей для побудови.\n" +msgid "Did not understand pin type %s" +msgstr "Не зрозумів тип %s для фіксатора пакунків (pin)" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо %s не є дозволеним на " -"'%s' пакунках" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Не встановлено пріоритету (або стоїть 0) для фіксатора пакунків (pin)" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено" +"Неможливо прямо налаштувати конфігурацію на '%s'. Будь-ласка, дивіться man 5 " +"apt.conf, нижче APT::Immediate-Configure для деталей. (%d)" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Не вдалося задовольнити залежність типу %s для %s: Встановлений пакунок %s " -"новіше, аніж треба" +msgid "Could not configure '%s'. " +msgstr "Неможливо налаштувати '%s'." -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"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 "" -"Залежність типу %s для %s не може бути задоволена, бо версія пакунку-" -"кандидата %s не задовольняє умови по версіям" +"Для виконання даного встановлення потрібне тимчасове видалення важливого " +"пакунку %s через петлеві конфлікти/пре-залежності (Pre-Depends loop). Це " +"погано, але якщо Ви дійсно бажаєте зробити це, активуйте параметр APT::Force-" +"LoopBreak." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо немає пакунку-" -"кандидата %s потрібної версії" +msgid "Line %u too long in source list %s." +msgstr "Рядок %u є занадто довгим у переліку джерел %s." -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Демонтується CD-ROM...\n" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Залежності для побудови %s не можуть бути задоволені." +msgid "Using CD-ROM mount point %s\n" +msgstr "Використовується точка монтування CD-ROM: %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Обробка залежностей для побудови закінчилася невдало" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Чекаю на диск...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Монтується CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Ідентифікація... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Журнал змін для %s (%s)" +msgid "Stored label: %s\n" +msgstr "Записано мітку: %s\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Підтримувані модулі:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Сканується диск на вміст індексних файлів...\n" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cdrom.cc:734 +#, c-format 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Використання: apt-get [опції] команда\n" -" apt-get [опції] install|remove пакунок1 [пкн2 ...]\n" -" apt-get [опції] source пакунок1 [пкн2 ...]\n" -"\n" -"apt-get - простий інтерфейс командного рядка для завантаження й\n" -"встановлення пакунків. Найбільш часто використовувані команди - update\n" -"і install.\n" -"\n" -"Команди:\n" -" update - завантажити нові переліки пакунків\n" -" upgrade - виконати оновлення пакунків\n" -" install - встановити нові пакунки (назва пакунка вказується\n" -" як libc6, а не libc6.deb)\n" -" remove - видалити пакунки\n" -" autoremove - видалити автоматично усі пакунки, що не використовуються\n" -" purge - видалити пакунки разом з іхніми конфігураційними файлами\n" -" source - завантажити архіви з вихідними текстами\n" -" build-dep - завантажити все необхідне для побудови зазначеного\n" -" пакунку з вихідних текстів\n" -" dist-upgrade - оновити всю систему, докладніше в apt-get(8)\n" -" dselect-upgrade - керуватися вибором, зробленим у dselect\n" -" clean - видалити завантажені архіви\n" -" autoclean - видалити старі завантажені архіви\n" -" check - перевірити наявність порушених залежностей\n" -" changelog - завантажити і показати журнал змін для визначеного пакунку\n" -" download - завантажити двійковий пакунок у поточну директорію\n" -"\n" -"Опції:\n" -" -h Цей текст допомоги.\n" -" -q Виводити повідомлення, придатні для запису у файл журналу.\n" -" Не виводити індикатор прогресу\n" -" -qq Виводити тільки повідомлення про помилки\n" -" -d Тільки завантажити - не встановлювати й не розпаковувати архіви\n" -" -s Не виконувати реальних дій. Імітація роботи\n" -" -y Відповідати 'Так' на всі запитання. Самі запитання при цьому не\n" -" виводяться\n" -" -f Спробувати виправити систему зі зламаними залежностями\n" -" -m Продовжувати, навіть якщо місце розташування архівів невідомо\n" -" -u Показувати список оновлюваних пакунків\n" -" -b Компілювати пакунок з вихідними текстами після завантаження\n" -" -V Показувати докладну інформацію про версії пакунків\n" -" -c=? Читати зазначений файл конфігурації\n" -" -o=? Встановити умовну опцію, наприклад, -o dir::cache=/tmp\n" -"Сторінки керівництв apt-get(8), sources.list(5) і apt.conf(5)\n" -"містять більше інформації і опцій.\n" -" Цей APT має Супер-Коров'ячу Силу.\n" +"Знайдено %zu індексів пакунків, %zu індексів вихідних текстів, %zu індексів " +"перекладів і %zu підписів\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " -"тексти" +"Неможливо знайти ніякі файли пакунків, можливо, що це не диск з Debian, або " +"невірна архітектура?" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Знайдено мітку: '%s'\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Не є вірною назвою, спробуйте ще.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Цей диск зветься: \n" +"'%s'\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Копіюються переліки пакунків..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Записується новий перелік вихідних текстів\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Перелік вихідних текстів для цього диска:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Пакунок %s повинен бути перевстановленим, але я не можу знайти його архів." -#: cmdline/apt-mark.cc:68 +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " +"пов'язано з зафіксованими пакунками." + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Неможливо усунути проблеми, ви маєте поламані зафіксовані пакунки." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Побудова дерева залежностей" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Версії кандидатів" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Ґенерація залежностей" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Зчитування інформації про стан" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s не може бути позначений, тому що він не встановлений.\n" +msgid "Failed to open StateFile %s" +msgstr "Не вдалося відкрити StateFile %s" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s вже був позначений, як встановлений вручну.\n" +msgid "Failed to write temporary StateFile %s" +msgstr "Не вдалося записати до тимчасового StateFile файла %s" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s вже був позначений, як автоматично встановлений.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Неможливо проаналізувати файл пакунку %s (1)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s вже був зафіксований.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Неможливо проаналізувати файл пакунку %s (2)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s вже був незафіксований.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Випуск '%s' для '%s' не знайдено" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Очікував на %s, але його там не було" +msgid "Version '%s' for '%s' was not found" +msgstr "Версія '%s' для '%s' не знайдена" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, c-format -msgid "%s set on hold.\n" -msgstr "%s зафіксовано.\n" +msgid "Unable to locate package %s" +msgstr "Не можу знайти пакунок %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Фіксацію для %s відмінено.\n" +msgid "Couldn't find task '%s'" +msgstr "Неможливо знайти завдання '%s'" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Не вдалося виконати dpkg. Ви root?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" -#: cmdline/apt-mark.cc:392 -#, fuzzy +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" + +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Неможливо вибирати версії пакунку '%s', так як він є чисто віртуальним" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" -"Використання: apt-mark [опції] {auto|manual} пакунок1 [пакунок2 ...]\n" -"\n" -"apt-mark - це простий інтерфейс командного рядка для позначення\n" -"пакунків як встановлені вручну, або автоматично. Він також уміє\n" -"показувати позначки.\n" -"\n" -"Команди:\n" -" auto - позначити вказані пакунки як автоматично встановлені\n" -" manual - позначити вказані пакунки як встановлені вручну\n" -"\n" -"Опції:\n" -" -h Цей текст допомоги.\n" -" -q Не показувати індикатор прогресу.\n" -" -qq Виводити тільки повідомлення про помилки\n" -" -s Не виконувати реальних дій. Імітація роботи\n" -" -f Читати/писати позначки авто/вручну у вказаному файлі\n" -" -c=? Читати зазначений файл конфігурації.\n" -" -o=? Встановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" -"Для докладної інформації дивіться керівництва для apt-mark(8) і apt.conf(5)." - -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" +"Неможливо вибрати встановлений пакунок, або версію-кандидат пакунку '%s', " +"так як вони відсутні" -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Неможливо прочитати базу %s з cdrom" - -#: 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" +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Будь-ласка запустіть apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get update " -"не може додавати нові CD-ROM" +"Неможливо вибрати найновішу версію пакунку '%s', так як він є чисто " +"віртуальним" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Невірний CD-ROM" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "Неможливо вибрати версію пакунку %s, так як він не має кандидатів" -#: methods/cdrom.cc:249 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"Неможливо відмонтувати CDROM в %s, можливо він все ще використовується." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Диск не знайдено." +"Неможливо вибрати встановлену версію пакунку %s, так як такий пакунок не " +"встановлено" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Файл не знайдено" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Неможливо проаналізувати 'Release' файл %s" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -#, fuzzy -msgid "Failed to stat" -msgstr "Не вдалося одержати атрибути (stat)" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Немає секцій у 'Release' файлі %s" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Не вдалося встановити час модифікації" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Немає запису 'Hash' у 'Release' файлі %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Невірне посилання (URI), локальні посилання не повинні починатися з //" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Невірний запис 'Valid-Until' у 'Release' файлі %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Логінюсь в" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Невірний запис 'Date' у 'Release' файлі %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Неможливо визначити назву вузла" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Неможливо визначити локальну назву" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Спотворений рядок %lu у переліку джерел %s (нечитабельний [параметр])" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Сервер розірвав з'єднання, відповівши: %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Спотворений рядок %lu у переліку джерел %s ([параметр] занадто короткий)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER невдало, сервер мовив: %s" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не є призначенням)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS невдало, сервер мовив: %s" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не має ключа)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin " -"пустий." +"Спотворений рядок %lu у переліку джерел %s ([%s] ключ %s не має значення)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Команда '%s' у скрипті логіна не вдалася, сервер мовив: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Спотворений рядок %lu у переліку джерел %s (проблема з URI)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE невдало, сервер мовив: %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Спотворений рядок %lu у переліку джерел %s (dist)" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Час з'єднання вичерпався" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Сервер закрив з'єднання" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Спотворений рядок %lu у переліку джерел %s (absolute dist)" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Помилка зчитування" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Спотворений рядок %lu у переліку джерел %s (dist parse)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Відповідь переповнила буфер." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Відкриття %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Спотворений протокол" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Спотворений рядок %u у переліку джерел %s (тип)" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Помилка запису" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Неможливо створити сокет (socket)" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Встановлюється %s" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Невдача" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Налаштовується %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Неможливо під'єднати пасивний сокет (passive socket)." +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Видаляється %s" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Виклик getaddrinfo не зміг отримати слухаючий сокет" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Повністю видаляється %s" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Неможливо приєднатися до сокета" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Взято до відома зникнення %s" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Неможливо прослухати на сокеті" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Виконується післяустановочний ініціатор %s" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Не вдалося визначити назву сокета" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Неможливо відіслати команду PORT" - -#: methods/ftp.cc:802 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Невідоме адресове сімейство %u (AF_*)" +msgid "Directory '%s' missing" +msgstr "Директорія '%s' відсутня" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT невдало, сервер мовив: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Час з'єднання з сокетом даних вичерпався" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Неможливо прийняти з'єднання" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Проблема хешування файла" +msgid "Could not open file '%s'" +msgstr "Неможливо відкрити файл '%s'" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Неможливо завантажити файл, сервер мовив: '%s'" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Час з'єднання з сокетом (socket) з даними вичерпався" +msgid "Preparing %s" +msgstr "Підготовка %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Передача даних обірвалася, сервер мовив '%s'" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Черга" - -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Неможливо викликати " +msgid "Unpacking %s" +msgstr "Розпакування %s" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Connecting to %s (%s)" -msgstr "З'єднання з %s (%s)" +msgid "Preparing to configure %s" +msgstr "Підготовка до конфігурації %s" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Installed %s" +msgstr "Встановлено %s" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Неможливо створити сокет для %s (f=%u t=%u p=%u)" +msgid "Preparing for removal of %s" +msgstr "Підготовка до видалення %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Неможливо почати з'єднання з %s:%s (%s)." +msgid "Removed %s" +msgstr "Видалено %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався" +msgid "Preparing to completely remove %s" +msgstr "Підготовка до повного видалення %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Неможливо під'єднатися до %s:%s (%s)." +msgid "Completely removed %s" +msgstr "Повністю видалено %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "З'єднання з %s" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Не можу знайти IP адрес для %s" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Неможливо записати в %s" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Тимчасова помилка при отриманні IP адреси '%s'" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" +msgid "Waited for %s but it wasn't there" +msgstr "Очікував на %s, але його там не було" -#: methods/connect.cc:258 -#, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Неможливо під'єднатися до %s:%s:" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Операцію було перервано до того, як вона мала завершитися" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -"Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його " -"відбиток?!" +"Звіт apport не був записаний, тому що параметр MaxReports вже досягнув " +"максимальної величини" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Знайдено як мінімум один невірний підпис." +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "проблеми з залежностями - залишено неналаштованим" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Неможливо виконати 'gpgv' для перевірки підпису (чи встановлено gpgv?)" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на те, " +"що ця помилка є наслідком попередньої невдачі." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#: apt-pkg/deb/dpkgpm.cc:1644 msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"відсутність вільного місця на диску" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Невідома помилка виконання gpgv" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"відсутність вільного місця у пам'яті" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Наступні підписи були невірними:\n" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"відсутність вільного місця на диску" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1685 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -"Наступні підписи не можуть бути перевірені, тому що публічний ключ " -"відсутній:\n" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"помилку В/В (I/O) у dpkg" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Пусті файли не можуть бути правильними архівами" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Неможливо заблокувати адміністративну директорію (%s), може її використовує " +"інший процес?" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Помилка запису у файл" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Неможливо заблокувати адміністративну директорію (%s), ви root?" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Помилка зчитування з сервера. Віддалена сторона закрила з'єднання" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg було перервано, ви повинні вручну запустити '%s' аби виправити " +"проблему. " -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Помилка зчитування з сервера" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Не заблоковано" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Помилка запису у файл" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%liд %liг %liхв %liс" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Вибір провалився" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%liг %liхв %liс" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Час очікування з'єднання вийшов" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Помилка запису у вихідний файл" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liхв %liс" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Очікування на заголовки" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liс" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Невірний рядок заголовку" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Вибір %s не знайдено" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP сервер відіслав невірний заголовок 'reply'" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Блокування не використовується, так як файл блокування %s доступний тільки " +"для зчитування" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Неможливо відкрити 'lock' файл %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP сервер відіслав невірний заголовок 'Content-Range'" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Блокування не використовується, так як файл блокування %s знаходиться на " +"файловій системі nfs" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Цей HTTP сервер має поламану підтримку 'range'" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Неможливо отримати замок %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Невідомий формат дати" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Неможливо створити перелік файлів, так як '%s' не є директорією" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Погана заголовкова інформація" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ігнорується '%s' у директорії '%s', так як не є звичайним файлом" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "З'єднання не вдалося" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Ігнорується файл '%s' у директорії '%s', так як він не має розширення" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Внутрішня помилка" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"Ігнорується файл '%s' у директорії '%s', так як він має невірне розширення" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Обчислення оновлень... " +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Підпроцес %s отримав 'segmentation fault' (фатальна помилка)." -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "Внутрішня помилка, AllUpgrade щось поламав" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Підпроцес %s отримав сигнал %u." -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Виконано" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Підпроцес %s повернув код помилки (%u)" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Підпроцес %s раптово завершився" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Помилка запису" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Виправлення залежностей..." +msgid "Problem closing the gzip file %s" +msgstr "Проблема з закриттям gzip файла %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " невдача." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Неможливо відкрити файл %s" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Неможливо скоригувати залежності" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Неможливо відкрити файловий дескриптор %d" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Неможливо мінімізувати набір оновлень" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Не вдалося створити IPC з породженим процесом" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Виконано" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Не вдалося виконати компресор " -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "" -"Для виправлення цих помилок ви можете скористатися 'apt-get -f install'." +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Помилка зчитування" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Незадоволені залежності. Спробуйте використати -f." +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "зчитування, повинен зчитати ще %llu байт, але нічого більше нема" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "записування, повинен був записати ще %llu байт, але не вдалося" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Встановлено]" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Проблема з закриттям файла %s" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Встановлено]" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Проблема з перейменуванням файла %s на %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Проблема з роз'єднанням файла %s" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Встановлено]" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Проблема з синхронізацією файла" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Встановлено]" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Помилка!" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Виконано" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Пакунки, що мають незадоволені залежності:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Виконано" + +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Неможливо відобразити в пам'яті (mmap) пустий файл" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "but %s is installed" -msgstr "але %s вже встановлений" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Неможливо створити копію файлового дескриптора %i" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "but %s is to be installed" -msgstr "але %s буде встановлений" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Неможливо зробити mmap для %llu байт" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "але він не може бути встановлений" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Не вдалося закрити mmap" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "але це віртуальний пакунок" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Не вдалося синхронізувати mmap" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "але він не встановлений" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Неможливо відобразити в пам'яті %lu байт" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "але він не буде встановлений" - -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " чи" - -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "НОВІ пакунки, які будуть встановлені:" - -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Пакунки, які будуть ВИДАЛЕНІ:" - -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Пакунки, які залишені в незмінному стані:" - -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Пакунки, які будуть ОНОВЛЕНІ:" - -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Пакунки, які будуть замінені на СТАРІШІ версії:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Не вдалося обрізати файл" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Пакунки, які мали б залишитися без змін, але будуть замінені:" +#: apt-pkg/contrib/mmap.cc:341 +#, fuzzy, 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 "" +"Динамічний MMap використав усе місце. Будь-ласка, збільшіть розмір APT::" +"Cache-Start. Поточне значення: %lu. (man 5 apt.conf)" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (внаслідок %s) " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Неможливо збільшити розмір MMap, так як обмеження в %lu байт вже досягнуто." -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"УВАГА: Наступні важливі пакунки будуть вилучені.\n" -"НЕ РОБІТЬ цього, якщо ви НЕ уявляєте собі всі можливі наслідки!" +"Неможливо збільшити розмір MMap, так як автоматичне збільшення вимкнено " +"користувачем." -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "оновлено %lu, встановлено %lu нових, " +msgid "Unable to stat the mount point %s" +msgstr "Неможливо прочитати атрибути точки монтування %s" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu перевстановлено, " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Не вдалося прочитати атрибути cdrom" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu downgraded, " -msgstr "%lu замінено на старіші версії, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Нерозпізнаваний тип абревіатури: '%c'" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu відмічено для видалення і %lu не оновлено.\n" +msgid "Opening configuration file %s" +msgstr "Відкривається конфігураційний файл %s" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "не встановлено(видалено) до кінця %lu пакунків.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Синтаксична помилка %s:%u: Блок починається без назви." -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Синтаксична помилка %s:%u: спотворений тег" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Синтаксична помилка %s:%u: зайві символи після величини" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" +"Синтаксична помилка %s:%u: Директиви можуть бути виконані тільки на " +"найвищому рівні" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "Regex compilation error - %s" -msgstr "Помилка компіляції регулярного виразу - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Команді update не потрібні аргументи" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Синтаксична помилка %s:%u: Забагато вмонтованих (nested) включень" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Syntax error %s:%u: Included from here" +msgstr "Синтаксична помилка %s:%u: Включено звідси" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Синтаксична помилка %s:%u: Директива '%s' не підтримується" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Внутрішня помилка, InstallPackages була викликана з непрацездатними " -"пакунками!" +"Синтаксична помилка %s:%u: 'clear directive' потребує дерево налаштувань як " +"аргумент" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "Необхідно видалити пакунки, але видалення заборонене." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Синтаксична помилка %s:%u: Зайве сміття в кінці файла" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Внутрішня помилка, Ordering не завершилася" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Не встановлено 'keyring' у %s." -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "Дивно... Розбіжність розмірів, напишіть на apt@packages.debian.org" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Невідомий параметр командного рядка '%c' [з %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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Необхідно завантажити %sB/%sB архівів.\n" +msgid "Command line option %s is not understood" +msgstr "Незрозумілий параметр %s командного рядка" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Необхідно завантажити %sB архівів.\n" +msgid "Command line option %s is not boolean" +msgstr "Параметр %s командного рядка не є логічного типу 'boolean'" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Після цієї операції об'єм зайнятого дискового простору зросте на %sB.\n" +msgid "Option %s requires an argument." +msgstr "Параметр %s потребує аргумента." -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -"Після цієї операції об'єм зайнятого дискового простору зменшиться на %sB.\n" +"Опція %s: Специфікація вимагає, щоб рядки у конфігурації мали вираз =<val>." -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Недостатньо вільного місця в %s." - -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Виявлено проблеми, а опція -y була використана без --force-yes" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Параметр %s потребує цілочислений аргумент, але не '%s'" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"Вказано виконання тільки тривіальних операцій, але це не тривіальна операція." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Параметр '%s' є занадто довгим" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Так, робити, як я скажу!" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Незрозумілий вираз %s, спробуйте true чи false." -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Те, що ви хочете зробити, може мати небажані наслідки.\n" -"Щоб продовжити, введіть фразу: '%s'\n" -" ?] " +msgid "Invalid operation %s" +msgstr "Невірна дія %s" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Перервано." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Пакунок %s версії %s має незадоволену залежність:\n" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Бажаєте продовжити?" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Всього імен пакунків: " -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Деякі файли не вдалося завантажити" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Всього структур пакунків: " -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update " -"або спробувати повторити запуск з ключем --fix-missing?" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Нормальних пакунків: " -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing і зміна носія в даний момент не підтримується" - -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Неможливо виправити втрачені пакунки." - -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Переривається встановлення." - -#: apt-private/private-install.cc:365 -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] "" -"Вказаний пакунок зник з вашої системи, так як\n" -"усі файли були перезаписані іншими пакунками:" -msgstr[1] "" -"Вказані пакунки зникли з вашої системи, так як\n" -"усі файли були перезаписані іншими пакунками:" -msgstr[2] "" -"Вказані пакунки зникли з вашої системи, так як\n" -"усі файли були перезаписані іншими пакунками:" - -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Увага: це зроблено автоматично і умисно dpkg'ем." - -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Нам не дозволено видаляти, неможливо запустити AutoRemover" - -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Хм, виглядає так, що AutoRemover помилково знищив щось потрібне.\n" -"Будь-ласка відправте багрепорт щодо apt." - -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Наступна інформація можливо допоможе Вам виправити ситуацію:" - -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Внутрішня Помилка, AutoRemover щось поламав" - -#: apt-private/private-install.cc:512 -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] "" -"Наступний пакунок був встановлений автоматично і більше не потрібен:" -msgstr[1] "Наступні пакунки були встановлені автоматично і більше не потрібні:" -msgstr[2] "Наступні пакунки були встановлені автоматично і більше не потрібні:" - -#: apt-private/private-install.cc:516 -#, 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" -msgstr[1] "" -"%lu пакунка було встановлено автоматично і вони більше не потрібні.\n" -msgstr[2] "" -"%lu пакунків було встановлено автоматично і вони більше не потрібні.\n" - -#: apt-private/private-install.cc:518 -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' щоб видалити їх." - -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f " -"install':" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Цілком віртуальних пакунків: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не " -"вказуючи назв пакунків (або вкажіть рішення)." +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Окремих віртуальних пакунків: " -#: apt-private/private-install.cc:628 -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 "" -"Деякі пакунки неможливо встановити. Можливо, Ви просите неможливого,\n" -"або ж використовуєте нестабільний дистрибутив, і запитані Вами пакунки\n" -"ще не створені або були вилучені з Incoming." +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Змішаних віртуальних пакунків: " -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Зламані пакунки" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Відсутні: " -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Будуть встановлені наступні додаткові пакунки:" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Всього унікальних версій: " -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Пропоновані пакунки:" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Всього унікальних описів: " -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Рекомендовані пакунки:" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Всього залежностей: " -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Пропускається %s, пакунок вже встановлений і опція ОНОВИТИ не встановлена.\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Всього відносин Версія/Файл: " -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Пропускається %s, пакунок не встановлений, а запитуються тільки оновлення.\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Всього відносин Опис/Файл: " -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n" +#: cmdline/apt-cache.cc:336 +#, fuzzy +msgid "Total Provides mappings: " +msgstr "Всього карт 'Provides': " -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "Вже встановлена найновіша версія %s.\n" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Всього відфільтрованих (globbed) рядків: " -#: apt-private/private-install.cc:884 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Обрана версія '%s' (%s) для '%s'\n" +#: cmdline/apt-cache.cc:362 +#, fuzzy +msgid "Total dependency version space: " +msgstr "Всього інформації про залежності: " -#: apt-private/private-install.cc:889 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Обрана версія '%s' (%s) для '%s' через '%s'\n" +#: cmdline/apt-cache.cc:367 +#, fuzzy +msgid "Total slack space: " +msgstr "Порожнього місця в кеші: " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Пакунок '%s' не встановлений, тому не видалений. Можливо ви мали на увазі " -"'%s'?\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Загальний простір полічений для: " -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Пакунок '%s' не встановлений, тому не видалений\n" - -#: apt-private/private-main.cc:32 -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 "" -"УВАГА: Це тільки симуляція!\n" -" apt-get потребує права root для реального запуску.\n" -" Також не забувайте, що блокування вимикається,\n" -" тому не очікуйте на відповідність поточній реальній ситуації!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "УВАГА: Наступні пакунки неможливо автентифікувати!" +msgid "Package file %s is out of sync." +msgstr "Перелік пакунків %s розсинхронізований." -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Автентифікаційне попередження не прийнято до уваги.\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Не знайдено жодного пакунка" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Деякі пакунки неможливо автентифікувати" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Ви повинні задати не менше одного шаблону пошуку" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Встановити ці пакунки без перевірки?" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Ця команда є застарілою. Будь-ласка використовуйте 'apt-mark showauto'" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Не вдалося завантажити %s %s\n" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Переліки пакунків:" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Не вдалося перейменувати %s на %s" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Кеш не синхронізований, неможливо знайти посилання на перелік пакунків" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Зафіксовані пакунки:" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(не знайдено)" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "В кеші " +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Встановлено: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Отр:" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Кандидат: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ігн " +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(відсутній)" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Пом " +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Фіксатор(pin) пакунка: " -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Отримано %sB за %sB (%sB/s)\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Таблиця версій:" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid " [Working]" -msgstr " [Йде робота]" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s для %s скомпільовано %s %s\n" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-cache.cc:1749 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"Зміна носія: вставте диск з міткою\n" -" '%s'\n" -"у пристрій '%s' і натисніть Enter\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Неможливо прочитати %s" - -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Неможливо змінити на %s" - -#. 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' " +"Використання: apt-cache [опції] команда\n" +" apt-cache [опції] showpkg пакунок1 [пкн2 ...]\n" +" apt-cache [опції] showsrc пакунок1 [пкн2 ...]\n" +"\n" +"apt-cache - низькорівневий інструмент, що використовується для запиту\n" +"інформації з двійкових кеш-файлів APT\n" +"\n" +"Команди:\n" +" gencaches - побудувати обидва кеші - бінарний і з вихідними текстами\n" +" showpkg - показати загальну інформацію про конкретний пакунок\n" +" showsrc - показати інформацію про вихідний текст (source)\n" +" stats - показати основну статистику\n" +" dump - показати весь файл у стислій формі\n" +" dumpavail - видати доступний файл на stdout\n" +" unmet - показати незадоволені залежності\n" +" search - знайти пакунки, назва яких задовольняє регулярний вираз\n" +" show - показати інформацію про пакунок в зрозумілій формі\n" +" depends - показати інформацію про залежності пакунка\n" +" rdepends - показати інформацію про зворотні залежності пакунка\n" +" pkgnames - показати імена всіх пакунків у системі\n" +" dotty - генерувати графік пакунків у форматі GraphViz\n" +" xvcg - генерувати графік пакунків у форматі xvcg\n" +" policy - показати поточну політику\n" +"\n" +"Опції:\n" +" -h Цей текст допомоги.\n" +" -p=? Кеш пакунків.\n" +" -s=? Кеш вихідних текстів.\n" +" -q Не показувати індикатор прогресу.\n" +" -i Показувати тільки важливі залежності для команди unmet.\n" +" -c=? Читати зазначений файл конфігурації.\n" +" -o=? Встановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" +"Дивіться подробиці на man-сторінках apt-cache(8) і apt.conf(5).\n" -#. 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 "Неможливо прочитати файл дзеркала '%s'" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Задайте назву для цього Диска, наприклад 'Debian 5.0.3 Disk 1'" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Неможливо прочитати файл дзеркала '%s'" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Будь-ласка, вставте Диск у пристрій і натисніть Enter" -#: methods/mirror.cc:445 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "[Mirror: %s]" -msgstr "[Дзеркало: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Не вдалося створити IPC канал для підпроцесу" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "З'єднання завершено передчасно" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Неправильне значення за умовчанням!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Для продовження натисніть Enter." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Чи хочете ви видалити всі раніше завантажені .deb файли?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Під час розпакування виникли якісь помилки. Пакунки, які були встановлені" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "будуть налаштовані. Це може призвести до повторення помилок" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"або виникнення нових через незадоволені залежності. Це нормально,тільки " -"помилки" +msgid "Failed to mount '%s' to '%s'" +msgstr "Не вдалося під'єднати '%s' до '%s'" -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"зазначені вище цього повідомлення є важливими. Будь-ласка, виправте їх і " -"виконайте установку '[I]nstall' ще раз" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Об'єднання доступної інформації" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode було викликано для вузла, що ще використовувався" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Не вдалося знайти елемент хеша!" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Повторіть цей процес для решти CD з вашого набору." -#: apt-inst/filelist.cc:459 -#, fuzzy -msgid "Failed to allocate diversion" -msgstr "Не вдалося створити diversion" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Аргументи не в парах" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Внутрішня помилка в AddDiversion" +#: cmdline/apt-config.cc:89 +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 "" +"Використання: apt-config [опції] команда\n" +"\n" +"apt-config - простий інструмент для зчитування конфігураційного файла APT\n" +"\n" +"Команди:\n" +" shell - режим shell\n" +" dump - показати конфігурацію\n" +"\n" +"Опції:\n" +" -h Цей текст допомоги.\n" +" -с=? Читати зазначений конфігураційний файл.\n" +" -o=? Встановити умовну опцію, наприклад, -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Спроба перезапису diversion, %s -> %s і %s/%s" +msgid "Can not find a package for architecture '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Подвійне додавання diversion %s -> %s" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Копія конфігураційного файлу %s/%s" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Шлях %s занадто довгий" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Unpacking %s more than once" -msgstr "Розпакування %s більш ніж один раз" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Обираю '%s' як пакунок вихідних текстів, замість '%s'\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format -msgid "The directory %s is diverted" -msgstr "Директорія %s є відхиленою (diverted)" +msgid "Can not find version '%s' of package '%s'" +msgstr "Ігнорувати недоступну версію '%s' пакунку '%s'" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:454 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Пакунок пробує записати у ціль з diversion %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -#, fuzzy -msgid "The diversion path is too long" -msgstr "Шлях 'diversion' є занадто довгим" +msgid "Couldn't find package %s" +msgstr "Не можу знайти пакунок %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Failed to stat %s" -msgstr "Не вдалося одержати атрибути %s" +msgid "%s set to manually installed.\n" +msgstr "%s позначений як встановлений вручну.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Не вдалося перейменувати %s на %s" +msgid "%s set to automatically installed.\n" +msgstr "%s позначений як автоматично встановлений.\n" -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Директорія %s замінюється не директорією" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Ця команда застаріла. Будь-ласка, використовуйте замість неї 'apt-mark auto' " +"і 'apt-mark manual'." -#: apt-inst/extract.cc:289 -#, fuzzy -msgid "Failed to locate node in its hash bucket" -msgstr "Не вдалося знайти вузол у його наборі хешів" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Внутрішня помилка, вирішувач проблем щось поламав" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Шлях занадто довгий" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Неможливо заблокувати директорію для завантаження" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Перезаписати відповідність пакунка без версії для %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " +"тексти" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Файл %s/%s перезаписує інший файл в пакунку %s" +msgid "Unable to find a source package for %s" +msgstr "Неможливо знайти пакунок з вихідними текстами для %s" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Unable to stat %s" -msgstr "Неможливо прочитати атрибути %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"УВАГА: Пакування '%s' відбувається в системі контролю версій '%s' на:\n" +"%s\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Failed to write file %s" -msgstr "Не вдалося записати файл %s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Будь-ласка використовуйте:\n" +"bzr branch %s\n" +"щоб отримати найновіші (потенційно не випущені) оновлення до пакунку.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Failed to close file %s" -msgstr "Не вдалося закрити файл %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Пропускаємо вже завантажений файл '%s'\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Невірний DEB архів, відсутній член '%s'" +msgid "Couldn't determine free space in %s" +msgstr "Не вдалося визначити кількість вільного місця в %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Внутрішня помилка, не можу знайти складову частину %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Контрольний файл не можливо обробити" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Невірний підпис архіву" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Неможливо прочитати заголовок 'member' в архіві" - -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Невірний заголовок 'member' %s в архіві" - -#: apt-inst/contrib/arfile.cc:108 -#, fuzzy -msgid "Invalid archive member header" -msgstr "Невірний заголовок 'member' в архіві" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Архів занадто малий" +msgid "You don't have enough free space in %s" +msgstr "Недостатньо місця в %s" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -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:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Не вдалося створити канали (pipes)" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Не вдалося виконати gzip " +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Завантаження вихідних текстів %s\n" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Пошкоджений архів" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Деякі архіви не вдалося завантажити." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Контрольна сума tar архіва невірна, архів пошкоджений" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Завантаження завершено в режимі \"тільки завантаження\"" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Невідомий тип заголовку TAR - %u, член %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "" +"Пропускається розпакування вихідних текстів, тому що вже розпаковано в %s\n" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Unable to stat %s." -msgstr "Неможливо прочитати атрибути %s." +msgid "Unpack command '%s' failed.\n" +msgstr "Команда розпакування '%s' завершилася невдало.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Progress: [%3i%%]" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" + +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Команда побудови '%s' закінчилася невдало.\n" + +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Породжений процес завершився невдало" + +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" msgstr "" +"Для перевірки залежностей для побудови необхідно вказати як мінімум один " +"пакунок" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Виконується dpkg" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Відсутня інформація про архітектуру для %s. Дивись apt.conf(5) APT::" +"Архітектури для налащтування" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Система пакування '%s' не підтримується" +msgid "Unable to get build-dependency information for %s" +msgstr "Неможливо одержати інформацію про залежності для побудови %s" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Неможливо визначити тип необхідної системи пакування" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s не має залежностей для побудови.\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Wrote %i records.\n" -msgstr "Записано %i записів.\n" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Залежність типу %s для %s не може бути задоволена, бо %s не є дозволеним на " +"'%s' пакунках" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Записано %i записів з %i відсутніми файлами.\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Записано %i записів з %i невідповідними файлам\n" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Не вдалося задовольнити залежність типу %s для %s: Встановлений пакунок %s " +"новіше, аніж треба" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1351 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Записано %i записів з %i відсутніми і %i невідповідними файлами\n" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Залежність типу %s для %s не може бути задоволена, бо версія пакунку-" +"кандидата %s не задовольняє умови по версіям" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Неможливо знайти аутентифікаційний запис для: %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Залежність типу %s для %s не може бути задоволена, бо немає пакунку-" +"кандидата %s потрібної версії" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Невідповідність хешу для: %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "The method driver %s could not be found." -msgstr "Драйвер для метода %s не знайдено." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Залежності для побудови %s не можуть бути задоволені." -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Обробка залежностей для побудови закінчилася невдало" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Method %s did not start correctly" -msgstr "Метод %s стартував некоректно" +msgid "Changelog for %s (%s)" +msgstr "Журнал змін для %s (%s)" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Підтримувані модулі:" + +#: cmdline/apt-get.cc:1632 +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 "" -"Будь-ласка, вставте диск з поміткою: '%s' в привід '%s' і натисніть Enter." +"Використання: apt-get [опції] команда\n" +" apt-get [опції] install|remove пакунок1 [пкн2 ...]\n" +" apt-get [опції] source пакунок1 [пкн2 ...]\n" +"\n" +"apt-get - простий інтерфейс командного рядка для завантаження й\n" +"встановлення пакунків. Найбільш часто використовувані команди - update\n" +"і install.\n" +"\n" +"Команди:\n" +" update - завантажити нові переліки пакунків\n" +" upgrade - виконати оновлення пакунків\n" +" install - встановити нові пакунки (назва пакунка вказується\n" +" як libc6, а не libc6.deb)\n" +" remove - видалити пакунки\n" +" autoremove - видалити автоматично усі пакунки, що не використовуються\n" +" purge - видалити пакунки разом з іхніми конфігураційними файлами\n" +" source - завантажити архіви з вихідними текстами\n" +" build-dep - завантажити все необхідне для побудови зазначеного\n" +" пакунку з вихідних текстів\n" +" dist-upgrade - оновити всю систему, докладніше в apt-get(8)\n" +" dselect-upgrade - керуватися вибором, зробленим у dselect\n" +" clean - видалити завантажені архіви\n" +" autoclean - видалити старі завантажені архіви\n" +" check - перевірити наявність порушених залежностей\n" +" changelog - завантажити і показати журнал змін для визначеного пакунку\n" +" download - завантажити двійковий пакунок у поточну директорію\n" +"\n" +"Опції:\n" +" -h Цей текст допомоги.\n" +" -q Виводити повідомлення, придатні для запису у файл журналу.\n" +" Не виводити індикатор прогресу\n" +" -qq Виводити тільки повідомлення про помилки\n" +" -d Тільки завантажити - не встановлювати й не розпаковувати архіви\n" +" -s Не виконувати реальних дій. Імітація роботи\n" +" -y Відповідати 'Так' на всі запитання. Самі запитання при цьому не\n" +" виводяться\n" +" -f Спробувати виправити систему зі зламаними залежностями\n" +" -m Продовжувати, навіть якщо місце розташування архівів невідомо\n" +" -u Показувати список оновлюваних пакунків\n" +" -b Компілювати пакунок з вихідними текстами після завантаження\n" +" -V Показувати докладну інформацію про версії пакунків\n" +" -c=? Читати зазначений файл конфігурації\n" +" -o=? Встановити умовну опцію, наприклад, -o dir::cache=/tmp\n" +"Сторінки керівництв apt-get(8), sources.list(5) і apt.conf(5)\n" +"містять більше інформації і опцій.\n" +" Цей APT має Супер-Коров'ячу Силу.\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Не можу обробити чи відкрити перелік пакунків чи статусний файл." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " +"тексти" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Для виправлення цих помилок Ви можете виконати apt-get update" +#: cmdline/apt-mark.cc:68 +#, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s не може бути позначений, тому що він не встановлений.\n" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Неможливо прочитати перелік вихідних кодів." +#: cmdline/apt-mark.cc:74 +#, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s вже був позначений, як встановлений вручну.\n" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Кеш пакунків пустий" +#: cmdline/apt-mark.cc:76 +#, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s вже був позначений, як автоматично встановлений.\n" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Файл кешу пакунків пошкоджений" +#: cmdline/apt-mark.cc:241 +#, c-format +msgid "%s was already set on hold.\n" +msgstr "%s вже був зафіксований.\n" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Файл кешу пакунків має несумісну версію" +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" +msgstr "%s вже був незафіксований.\n" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Файл кешу пакунків пошкоджений, занадто малий" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, c-format +msgid "%s set on hold.\n" +msgstr "%s зафіксовано.\n" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Цей APT не підтримує систему призначення версій '%s'" +msgid "Canceled hold on %s.\n" +msgstr "Фіксацію для %s відмінено.\n" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Кеш пакунків був побудований для іншої архітектури" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Не вдалося виконати dpkg. Ви root?" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Залежності (Depends)" +#: cmdline/apt-mark.cc:392 +#, fuzzy +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Використання: apt-mark [опції] {auto|manual} пакунок1 [пакунок2 ...]\n" +"\n" +"apt-mark - це простий інтерфейс командного рядка для позначення\n" +"пакунків як встановлені вручну, або автоматично. Він також уміє\n" +"показувати позначки.\n" +"\n" +"Команди:\n" +" auto - позначити вказані пакунки як автоматично встановлені\n" +" manual - позначити вказані пакунки як встановлені вручну\n" +"\n" +"Опції:\n" +" -h Цей текст допомоги.\n" +" -q Не показувати індикатор прогресу.\n" +" -qq Виводити тільки повідомлення про помилки\n" +" -s Не виконувати реальних дій. Імітація роботи\n" +" -f Читати/писати позначки авто/вручну у вказаному файлі\n" +" -c=? Читати зазначений файл конфігурації.\n" +" -o=? Встановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" +"Для докладної інформації дивіться керівництва для apt-mark(8) і apt.conf(5)." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Пре-Залежності (PreDepends)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Пропонує (Suggests)" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Неможливо прочитати базу %s з cdrom" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Рекомендує (Recommends)" +#: 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 "" +"Будь-ласка запустіть apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get update " +"не може додавати нові CD-ROM" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Конфлікти (Conflicts)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Невірний CD-ROM" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Заміняє (Replaces)" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Неможливо відмонтувати CDROM в %s, можливо він все ще використовується." -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Застарілі (Obsoletes)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Диск не знайдено." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ламає (Breaks)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Файл не знайдено" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Покращує (Enhances)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +#, fuzzy +msgid "Failed to stat" +msgstr "Не вдалося одержати атрибути (stat)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "важливі (important)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Не вдалося встановити час модифікації" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "необхідні (required)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Невірне посилання (URI), локальні посилання не повинні починатися з //" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "стандартні (standard)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Логінюсь в" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "необов'язкові (optional)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Неможливо визначити назву вузла" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "додаткові (extra)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Неможливо визначити локальну назву" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Тип '%s' індексного файлу не підтримується" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Кеш має несумісну систему призначення версій" +msgid "The server refused the connection and said: %s" +msgstr "Сервер розірвав з'єднання, відповівши: %s" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:225 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Виникла помилка під час обробки %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Ого! Ви перевищили кількість імен пакунків, які APT може обробити." - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Ого! Ви перевищили кількість версій, які APT може обробити." +msgid "USER failed, server said: %s" +msgstr "USER невдало, сервер мовив: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Ого! Ви перевищили кількість описів, які APT може обробити." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS невдало, сервер мовив: %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Ого! Ви перевищили кількість залежностей, які APT може обробити." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin " +"пустий." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Пакунок %s %s не був знайдений під час обробки залежностей" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Команда '%s' у скрипті логіна не вдалася, сервер мовив: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Не вдалося прочитати атрибути переліку вихідних текстів %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE невдало, сервер мовив: %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Зчитування переліків пакунків" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Час з'єднання вичерпався" -#: apt-pkg/pkgcachegen.cc:1316 -#, fuzzy -msgid "Collecting File Provides" -msgstr "Збирання інформації про 'File Provides'" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Сервер закрив з'єднання" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Неможливо записати в %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Відповідь переповнила буфер." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Помилка IO під час збереження кешу вихідних текстів" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Спотворений протокол" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -#, fuzzy -msgid "Send scenario to solver" -msgstr "Відправити сценарій розв'язувачу" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Неможливо створити сокет (socket)" -#: apt-pkg/edsp.cc:234 -#, fuzzy -msgid "Send request to solver" -msgstr "Відправити запит розв'язувачу" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався" -#: apt-pkg/edsp.cc:313 -#, fuzzy -msgid "Prepare for receiving solution" -msgstr "Пригодуватися до отримання розв'язку" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Невдача" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" -"Зовнішній розв'язувач завершився невдало без відповідного повідомлення про " -"помилку" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Неможливо під'єднати пасивний сокет (passive socket)." -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -#, fuzzy -msgid "Execute external solver" -msgstr "Виконати зовнішній розв'язувач" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Виклик getaddrinfo не зміг отримати слухаючий сокет" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "не вдалося перейменувати, %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Неможливо приєднатися до сокета" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Невідповідність хешу MD5Sum" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Неможливо прослухати на сокеті" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Невідповідність розміру" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Не вдалося визначити назву сокета" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Невірна дія %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Неможливо відіслати команду PORT" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Неможливо знайти очікуваний запис '%s' у 'Release' файлі (Невірний запис у " -"sources.list, або пошкоджений файл)" +msgid "Unknown address family %u (AF_*)" +msgstr "Невідоме адресове сімейство %u (AF_*)" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Неможливо знайти хеш-суму для '%s' у 'Release' файлі" +msgid "EPRT failed, server said: %s" +msgstr "EPRT невдало, сервер мовив: %s" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Відсутній публічний ключ для заданих ідентифікаторів (ID) ключа:\n" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Час з'єднання з сокетом даних вичерпався" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Файл 'Release' для %s застарів (недійсний з %s). Оновлення для цього " -"репозиторія не будуть застосовані." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Неможливо прийняти з'єднання" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Конфліктуючий дистрибутив: %s (очікувався %s, але є %s)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Проблема хешування файла" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:890 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Виникла помилка під час перевірки підпису. Репозиторій не оновлено, " -"попередні індексні файли будуть використані. Помилка GPG: %s: %s\n" +msgid "Unable to fetch file, server said '%s'" +msgstr "Неможливо завантажити файл, сервер мовив: '%s'" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Час з'єднання з сокетом (socket) з даними вичерпався" + +#: methods/ftp.cc:935 #, c-format -msgid "GPG error: %s: %s" -msgstr "Помилка GPG: %s: %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Передача даних обірвалася, сервер мовив '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Черга" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Неможливо викликати " -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:76 #, 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. Можливо, це значить, що вам потрібно " -"власноруч виправити цей пакунок. (через відсутність 'arch')" +msgid "Connecting to %s (%s)" +msgstr "З'єднання з %s (%s)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:87 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Неможливо знайти джерело для завантаження версії '%s' для '%s'" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:94 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Індексні файли пакунків пошкоджені. Немає поля 'Filename' для пакунку %s." +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Неможливо створити сокет для %s (f=%u t=%u p=%u)" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:100 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Блок постачальника %s не містить відбитку (fingerprint)" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Неможливо почати з'єднання з %s:%s (%s)." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:108 #, c-format -msgid "List directory %spartial is missing." -msgstr "Відсутня директорія зі списками: %spartial" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:126 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Відсутня директорія для архівів: %spartial" +msgid "Could not connect to %s:%s (%s)." +msgstr "Неможливо під'єднатися до %s:%s (%s)." -#: apt-pkg/acquire.cc:99 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Unable to lock directory %s" -msgstr "Неможливо заблокувати директорію %s" +msgid "Connecting to %s" +msgstr "З'єднання з %s" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Завантажується файл %li з %li (залишилось %s)" +msgid "Could not resolve '%s'" +msgstr "Не можу знайти IP адрес для %s" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:205 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Завантажується файл %li з %li" +msgid "Temporary failure resolving '%s'" +msgstr "Тимчасова помилка при отриманні IP адреси '%s'" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Деякі індексні файли не вдалося завантажити. Вони були зігноровані, або " -"замість них були використані старіші версії." +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Додайте деякі посилання (URI) на вихідні тексти у ваш sources.list" +#: methods/connect.cc:211 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Неможливо під'єднатися до %s:%s:" + +#: methods/gpgv.cc:168 msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Невірне значення '%s' для APT::Default-Release, так як такий випуск не є " -"доступним у вихідних кодах" - -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Невірний запис у файлі налаштувань %s, відсутній заголовок Package" +"Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його " +"відбиток?!" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Не зрозумів тип %s для фіксатора пакунків (pin)" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Знайдено як мінімум один невірний підпис." -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Не встановлено пріоритету (або стоїть 0) для фіксатора пакунків (pin)" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Неможливо виконати 'gpgv' для перевірки підпису (чи встановлено gpgv?)" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Неможливо прямо налаштувати конфігурацію на '%s'. Будь-ласка, дивіться man 5 " -"apt.conf, нижче APT::Immediate-Configure для деталей. (%d)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Неможливо налаштувати '%s'." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Невідома помилка виконання gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Наступні підписи були невірними:\n" + +#: methods/gpgv.cc:231 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." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Для виконання даного встановлення потрібне тимчасове видалення важливого " -"пакунку %s через петлеві конфлікти/пре-залежності (Pre-Depends loop). Це " -"погано, але якщо Ви дійсно бажаєте зробити це, активуйте параметр APT::Force-" -"LoopBreak." +"Наступні підписи не можуть бути перевірені, тому що публічний ключ " +"відсутній:\n" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Рядок %u є занадто довгим у переліку джерел %s." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Пусті файли не можуть бути правильними архівами" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Демонтується CD-ROM...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Помилка запису у файл" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Використовується точка монтування CD-ROM: %s\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Помилка зчитування з сервера. Віддалена сторона закрила з'єднання" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Чекаю на диск...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Помилка зчитування з сервера" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Монтується CD-ROM...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Помилка запису у файл" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Ідентифікація... " +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Вибір провалився" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Записано мітку: %s\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Час очікування з'єднання вийшов" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Сканується диск на вміст індексних файлів...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Помилка запису у вихідний файл" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Знайдено %zu індексів пакунків, %zu індексів вихідних текстів, %zu індексів " -"перекладів і %zu підписів\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Очікування на заголовки" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Неможливо знайти ніякі файли пакунків, можливо, що це не диск з Debian, або " -"невірна архітектура?" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Невірний рядок заголовку" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Знайдено мітку: '%s'\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP сервер відіслав невірний заголовок 'reply'" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Не є вірною назвою, спробуйте ще.\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Цей диск зветься: \n" -"'%s'\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP сервер відіслав невірний заголовок 'Content-Range'" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Копіюються переліки пакунків..." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Цей HTTP сервер має поламану підтримку 'range'" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Записується новий перелік вихідних текстів\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Невідомий формат дати" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Перелік вихідних текстів для цього диска:\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Погана заголовкова інформація" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "З'єднання не вдалося" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Внутрішня помилка" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Обчислення оновлень... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Виконано" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Пакунок %s повинен бути перевстановленим, але я не можу знайти його архів." -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " -"пов'язано з зафіксованими пакунками." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Неможливо усунути проблеми, ви маєте поламані зафіксовані пакунки." +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Побудова дерева залежностей" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Виправлення залежностей..." -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Версії кандидатів" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " невдача." -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Ґенерація залежностей" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Неможливо скоригувати залежності" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Зчитування інформації про стан" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Неможливо мінімізувати набір оновлень" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Не вдалося відкрити StateFile %s" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Виконано" + +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Для виправлення цих помилок ви можете скористатися 'apt-get -f install'." + +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Незадоволені залежності. Спробуйте використати -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Встановлено]" + +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Встановлено]" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Не вдалося записати до тимчасового StateFile файла %s" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Неможливо проаналізувати файл пакунку %s (1)" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Встановлено]" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Неможливо проаналізувати файл пакунку %s (2)" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Встановлено]" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:249 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Випуск '%s' для '%s' не знайдено" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Версія '%s' для '%s' не знайдена" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/cacheset.cc:603 +#: apt-private/private-output.cc:435 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Неможливо знайти завдання '%s'" +msgid "but %s is installed" +msgstr "але %s вже встановлений" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:437 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +msgid "but %s is to be installed" +msgstr "але %s буде встановлений" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "але він не може бути встановлений" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Неможливо вибирати версії пакунку '%s', так як він є чисто віртуальним" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "але це віртуальний пакунок" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Неможливо вибрати встановлений пакунок, або версію-кандидат пакунку '%s', " -"так як вони відсутні" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "але він не встановлений" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Неможливо вибрати найновішу версію пакунку '%s', так як він є чисто " -"віртуальним" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "але він не буде встановлений" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "Неможливо вибрати версію пакунку %s, так як він не має кандидатів" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " чи" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Неможливо вибрати встановлену версію пакунку %s, так як такий пакунок не " -"встановлено" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Пакунки, що мають незадоволені залежності:" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Неможливо проаналізувати 'Release' файл %s" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "НОВІ пакунки, які будуть встановлені:" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Немає секцій у 'Release' файлі %s" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Пакунки, які будуть ВИДАЛЕНІ:" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Немає запису 'Hash' у 'Release' файлі %s" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Пакунки, які залишені в незмінному стані:" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Невірний запис 'Valid-Until' у 'Release' файлі %s" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Пакунки, які будуть ОНОВЛЕНІ:" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Невірний запис 'Date' у 'Release' файлі %s" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Пакунки, які будуть замінені на СТАРІШІ версії:" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Пакунки, які мали б залишитися без змін, але будуть замінені:" -#: apt-pkg/sourcelist.cc:170 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Спотворений рядок %lu у переліку джерел %s (нечитабельний [параметр])" +msgid "%s (due to %s) " +msgstr "%s (внаслідок %s) " -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Спотворений рядок %lu у переліку джерел %s ([параметр] занадто короткий)" +"УВАГА: Наступні важливі пакунки будуть вилучені.\n" +"НЕ РОБІТЬ цього, якщо ви НЕ уявляєте собі всі можливі наслідки!" -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не є призначенням)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "оновлено %lu, встановлено %lu нових, " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не має ключа)" +msgid "%lu reinstalled, " +msgstr "%lu перевстановлено, " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Спотворений рядок %lu у переліку джерел %s ([%s] ключ %s не має значення)" +msgid "%lu downgraded, " +msgstr "%lu замінено на старіші версії, " -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Спотворений рядок %lu у переліку джерел %s (проблема з URI)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu відмічено для видалення і %lu не оновлено.\n" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Спотворений рядок %lu у переліку джерел %s (dist)" +msgid "%lu not fully installed or removed.\n" +msgstr "не встановлено(видалено) до кінця %lu пакунків.\n" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Спотворений рядок %lu у переліку джерел %s (absolute dist)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Спотворений рядок %lu у переліку джерел %s (dist parse)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Відкриття %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Спотворений рядок %u у переліку джерел %s (тип)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Команді update не потрібні аргументи" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-update.cc:90 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-show.cc:156 #, c-format -msgid "Installing %s" -msgstr "Встановлюється %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Налаштовується %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Видаляється %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"Внутрішня помилка, InstallPackages була викликана з непрацездатними " +"пакунками!" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Повністю видаляється %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Необхідно видалити пакунки, але видалення заборонене." + +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Внутрішня помилка, Ordering не завершилася" + +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "Дивно... Розбіжність розмірів, напишіть на apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:99 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Noting disappearance of %s" -msgstr "Взято до відома зникнення %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Необхідно завантажити %sB/%sB архівів.\n" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Виконується післяустановочний ініціатор %s" +msgid "Need to get %sB of archives.\n" +msgstr "Необхідно завантажити %sB архівів.\n" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Directory '%s' missing" -msgstr "Директорія '%s' відсутня" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Після цієї операції об'єм зайнятого дискового простору зросте на %sB.\n" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file '%s'" -msgstr "Неможливо відкрити файл '%s'" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "" +"Після цієї операції об'єм зайнятого дискового простору зменшиться на %sB.\n" -#: apt-pkg/deb/dpkgpm.cc:989 +#: apt-private/private-install.cc:200 #, c-format -msgid "Preparing %s" -msgstr "Підготовка %s" +msgid "You don't have enough free space in %s." +msgstr "Недостатньо вільного місця в %s." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Розпакування %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Виявлено проблеми, а опція -y була використана без --force-yes" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Підготовка до конфігурації %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"Вказано виконання тільки тривіальних операцій, але це не тривіальна операція." -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Встановлено %s" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Так, робити, як я скажу!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:222 #, c-format -msgid "Preparing for removal of %s" -msgstr "Підготовка до видалення %s" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Те, що ви хочете зробити, може мати небажані наслідки.\n" +"Щоб продовжити, введіть фразу: '%s'\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Видалено %s" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Перервано." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Підготовка до повного видалення %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Бажаєте продовжити?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Повністю видалено %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Деякі файли не вдалося завантажити" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update " +"або спробувати повторити запуск з ключем --fix-missing?" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Неможливо записати в %s" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing і зміна носія в даний момент не підтримується" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Неможливо виправити втрачені пакунки." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Переривається встановлення." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Операцію було перервано до того, як вона мала завершитися" +#: apt-private/private-install.cc:366 +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] "" +"Вказаний пакунок зник з вашої системи, так як\n" +"усі файли були перезаписані іншими пакунками:" +msgstr[1] "" +"Вказані пакунки зникли з вашої системи, так як\n" +"усі файли були перезаписані іншими пакунками:" +msgstr[2] "" +"Вказані пакунки зникли з вашої системи, так як\n" +"усі файли були перезаписані іншими пакунками:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Звіт apport не був записаний, тому що параметр MaxReports вже досягнув " -"максимальної величини" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Увага: це зроблено автоматично і умисно dpkg'ем." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "проблеми з залежностями - залишено неналаштованим" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Нам не дозволено видаляти, неможливо запустити AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на те, " -"що ця помилка є наслідком попередньої невдачі." +"Хм, виглядає так, що AutoRemover помилково знищив щось потрібне.\n" +"Будь-ласка відправте багрепорт щодо apt." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " -"відсутність вільного місця на диску" +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Наступна інформація можливо допоможе Вам виправити ситуацію:" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " -"відсутність вільного місця у пам'яті" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Внутрішня Помилка, AutoRemover щось поламав" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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] "" +"Наступний пакунок був встановлений автоматично і більше не потрібен:" +msgstr[1] "Наступні пакунки були встановлені автоматично і більше не потрібні:" +msgstr[2] "Наступні пакунки були встановлені автоматично і більше не потрібні:" + +#: apt-private/private-install.cc:517 +#, 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" +msgstr[1] "" +"%lu пакунка було встановлено автоматично і вони більше не потрібні.\n" +msgstr[2] "" +"%lu пакунків було встановлено автоматично і вони більше не потрібні.\n" + +#: apt-private/private-install.cc:519 +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' щоб видалити їх." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " -"відсутність вільного місця на диску" +"Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f " +"install':" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:614 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " -"помилку В/В (I/O) у dpkg" +"Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не " +"вказуючи назв пакунків (або вкажіть рішення)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"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 "" -"Неможливо заблокувати адміністративну директорію (%s), може її використовує " -"інший процес?" +"Деякі пакунки неможливо встановити. Можливо, Ви просите неможливого,\n" +"або ж використовуєте нестабільний дистрибутив, і запитані Вами пакунки\n" +"ще не створені або були вилучені з Incoming." -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Неможливо заблокувати адміністративну директорію (%s), ви root?" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Зламані пакунки" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg було перервано, ви повинні вручну запустити '%s' аби виправити " -"проблему. " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Будуть встановлені наступні додаткові пакунки:" + +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Пропоновані пакунки:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Рекомендовані пакунки:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Не заблоковано" +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Пропускається %s, пакунок вже встановлений і опція ОНОВИТИ не встановлена.\n" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: apt-private/private-install.cc:829 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%liд %liг %liхв %liс" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Пропускається %s, пакунок не встановлений, а запитуються тільки оновлення.\n" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:841 #, c-format -msgid "%lih %limin %lis" -msgstr "%liг %liхв %liс" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:846 #, c-format -msgid "%limin %lis" -msgstr "%liхв %liс" +msgid "%s is already the newest version.\n" +msgstr "Вже встановлена найновіша версія %s.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:894 #, c-format -msgid "%lis" -msgstr "%liс" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Обрана версія '%s' (%s) для '%s'\n" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:899 #, c-format -msgid "Selection %s not found" -msgstr "Вибір %s не знайдено" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Обрана версія '%s' (%s) для '%s' через '%s'\n" -#: apt-pkg/contrib/fileutl.cc:190 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Not using locking for read only lock file %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"Блокування не використовується, так як файл блокування %s доступний тільки " -"для зчитування" +"Пакунок '%s' не встановлений, тому не видалений. Можливо ви мали на увазі " +"'%s'?\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:947 #, c-format -msgid "Could not open lock file %s" -msgstr "Неможливо відкрити 'lock' файл %s" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Пакунок '%s' не встановлений, тому не видалений\n" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" +#: apt-private/private-main.cc:32 +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 "" -"Блокування не використовується, так як файл блокування %s знаходиться на " -"файловій системі nfs" +"УВАГА: Це тільки симуляція!\n" +" apt-get потребує права root для реального запуску.\n" +" Також не забувайте, що блокування вимикається,\n" +" тому не очікуйте на відповідність поточній реальній ситуації!" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Неможливо отримати замок %s" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "УВАГА: Наступні пакунки неможливо автентифікувати!" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Автентифікаційне попередження не прийнято до уваги.\n" + +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Деякі пакунки неможливо автентифікувати" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Встановити ці пакунки без перевірки?" + +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Не вдалося перейменувати %s на %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Неможливо створити перелік файлів, так як '%s' не є директорією" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "В кеші " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Отр:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ігн " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Пом " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ігнорується '%s' у директорії '%s', так як не є звичайним файлом" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Отримано %sB за %sB (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Ігнорується файл '%s' у директорії '%s', так як він не має розширення" +msgid " [Working]" +msgstr " [Йде робота]" -#: apt-pkg/contrib/fileutl.cc:421 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Ігнорується файл '%s' у директорії '%s', так як він має невірне розширення" +"Зміна носія: вставте диск з міткою\n" +" '%s'\n" +"у пристрій '%s' і натисніть Enter\n" -#: apt-pkg/contrib/fileutl.cc:824 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Підпроцес %s отримав 'segmentation fault' (фатальна помилка)." +msgid "No mirror file '%s' found " +msgstr "Не знайдено файла дзеркала '%s' " -#: apt-pkg/contrib/fileutl.cc:826 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "Підпроцес %s отримав сигнал %u." +msgid "Can not read mirror file '%s'" +msgstr "Неможливо прочитати файл дзеркала '%s'" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Підпроцес %s повернув код помилки (%u)" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Неможливо прочитати файл дзеркала '%s'" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: methods/mirror.cc:445 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Підпроцес %s раптово завершився" +msgid "[Mirror: %s]" +msgstr "[Дзеркало: %s]" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Проблема з закриттям gzip файла %s" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Не вдалося створити IPC канал для підпроцесу" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Неможливо відкрити файл %s" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "З'єднання завершено передчасно" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Неможливо відкрити файловий дескриптор %d" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Неправильне значення за умовчанням!" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Не вдалося створити IPC з породженим процесом" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Для продовження натисніть Enter." -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Не вдалося виконати компресор " +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Чи хочете ви видалити всі раніше завантажені .deb файли?" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "зчитування, повинен зчитати ще %llu байт, але нічого більше нема" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Під час розпакування виникли якісь помилки. Пакунки, які були встановлені" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "записування, повинен був записати ще %llu байт, але не вдалося" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "будуть налаштовані. Це може призвести до повторення помилок" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Проблема з закриттям файла %s" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "" +"або виникнення нових через незадоволені залежності. Це нормально,тільки " +"помилки" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Проблема з перейменуванням файла %s на %s" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "" +"зазначені вище цього повідомлення є важливими. Будь-ласка, виправте їх і " +"виконайте установку '[I]nstall' ще раз" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Проблема з роз'єднанням файла %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Об'єднання доступної інформації" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Проблема з синхронізацією файла" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode було викликано для вузла, що ще використовувався" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Помилка!" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Не вдалося знайти елемент хеша!" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Виконано" +#: apt-inst/filelist.cc:459 +#, fuzzy +msgid "Failed to allocate diversion" +msgstr "Не вдалося створити diversion" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Внутрішня помилка в AddDiversion" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: apt-inst/filelist.cc:477 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Виконано" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Спроба перезапису diversion, %s -> %s і %s/%s" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Неможливо відобразити в пам'яті (mmap) пустий файл" +#: apt-inst/filelist.cc:506 +#, fuzzy, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Подвійне додавання diversion %s -> %s" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Неможливо створити копію файлового дескриптора %i" +msgid "Duplicate conf file %s/%s" +msgstr "Копія конфігураційного файлу %s/%s" -#: apt-pkg/contrib/mmap.cc:119 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Неможливо зробити mmap для %llu байт" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Не вдалося закрити mmap" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Не вдалося синхронізувати mmap" +msgid "The path %s is too long" +msgstr "Шлях %s занадто довгий" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/extract.cc:132 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Неможливо відобразити в пам'яті %lu байт" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Не вдалося обрізати файл" +msgid "Unpacking %s more than once" +msgstr "Розпакування %s більш ніж один раз" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-inst/extract.cc:142 #, fuzzy, 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 "" -"Динамічний MMap використав усе місце. Будь-ласка, збільшіть розмір APT::" -"Cache-Start. Поточне значення: %lu. (man 5 apt.conf)" +msgid "The directory %s is diverted" +msgstr "Директорія %s є відхиленою (diverted)" -#: apt-pkg/contrib/mmap.cc:446 +#: apt-inst/extract.cc:152 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Неможливо збільшити розмір MMap, так як обмеження в %lu байт вже досягнуто." +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Пакунок пробує записати у ціль з diversion %s/%s" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Неможливо збільшити розмір MMap, так як автоматичне збільшення вимкнено " -"користувачем." +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +#, fuzzy +msgid "The diversion path is too long" +msgstr "Шлях 'diversion' є занадто довгим" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Неможливо прочитати атрибути точки монтування %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Не вдалося прочитати атрибути cdrom" +msgid "Failed to stat %s" +msgstr "Не вдалося одержати атрибути %s" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Нерозпізнаваний тип абревіатури: '%c'" +msgid "Failed to rename %s to %s" +msgstr "Не вдалося перейменувати %s на %s" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:249 #, c-format -msgid "Opening configuration file %s" -msgstr "Відкривається конфігураційний файл %s" +msgid "The directory %s is being replaced by a non-directory" +msgstr "Директорія %s замінюється не директорією" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:289 +#, fuzzy +msgid "Failed to locate node in its hash bucket" +msgstr "Не вдалося знайти вузол у його наборі хешів" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Шлях занадто довгий" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Синтаксична помилка %s:%u: Блок починається без назви." +msgid "Overwrite package match with no version for %s" +msgstr "Перезаписати відповідність пакунка без версії для %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Синтаксична помилка %s:%u: спотворений тег" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Файл %s/%s перезаписує інший файл в пакунку %s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Синтаксична помилка %s:%u: зайві символи після величини" +msgid "Unable to stat %s" +msgstr "Неможливо прочитати атрибути %s" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Синтаксична помилка %s:%u: Директиви можуть бути виконані тільки на " -"найвищому рівні" +msgid "Failed to write file %s" +msgstr "Не вдалося записати файл %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Синтаксична помилка %s:%u: Забагато вмонтованих (nested) включень" +msgid "Failed to close file %s" +msgstr "Не вдалося закрити файл %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Синтаксична помилка %s:%u: Включено звідси" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Невірний DEB архів, відсутній член '%s'" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Синтаксична помилка %s:%u: Директива '%s' не підтримується" +msgid "Internal error, could not locate member %s" +msgstr "Внутрішня помилка, не можу знайти складову частину %s" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Синтаксична помилка %s:%u: 'clear directive' потребує дерево налаштувань як " -"аргумент" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Контрольний файл не можливо обробити" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Синтаксична помилка %s:%u: Зайве сміття в кінці файла" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Невірний підпис архіву" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Не встановлено 'keyring' у %s." +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Неможливо прочитати заголовок 'member' в архіві" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Невідомий параметр командного рядка '%c' [з %s]." +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Невірний заголовок 'member' %s в архіві" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Незрозумілий параметр %s командного рядка" +#: apt-inst/contrib/arfile.cc:108 +#, fuzzy +msgid "Invalid archive member header" +msgstr "Невірний заголовок 'member' в архіві" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Параметр %s командного рядка не є логічного типу 'boolean'" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Архів занадто малий" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Параметр %s потребує аргумента." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Не вдалося прочитати заголовки в архіві" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Опція %s: Специфікація вимагає, щоб рядки у конфігурації мали вираз =<val>." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Не вдалося створити канали (pipes)" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Параметр %s потребує цілочислений аргумент, але не '%s'" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Не вдалося виконати gzip " -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Параметр '%s' є занадто довгим" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Пошкоджений архів" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Незрозумілий вираз %s, спробуйте true чи false." +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Контрольна сума tar архіва невірна, архів пошкоджений" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Невірна дія %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Невідомий тип заголовку TAR - %u, член %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3635,7 +3639,7 @@ msgstr "Помилка зчитування під час обчислення M msgid "Problem unlinking %s" msgstr "Не вдалося видалити %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3690,6 +3694,10 @@ msgstr "" " -c=? читати зазначений файл конфігурації\n" " -o=? встановити довільну опцію, наприклад, -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Внутрішня помилка, AllUpgrade щось поламав" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s не є правильним DEB пакунком." diff --git a/po/vi.po b/po/vi.po index a612bae4b..0e60c7823 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.0.2\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" -"PO-Revision-Date: 2014-04-28 09:24+0700\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"PO-Revision-Date: 2014-06-22 09:16+0700\n" "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n" "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n" "Language: vi\n" @@ -22,3267 +22,3273 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-Basepath: ../\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Không hỗ trợ kiểu tập tin chỉ mục “%s”" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Gói %s phiên bản %s có phần phụ thuộc chưa thỏa mãn:\n" +msgid "Unable to read %s" +msgstr "Không thể đọc %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Tổng các tên gói: " +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "Không thể chuyển đổi sang %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Tổng các cấu trúc gói: " +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Không thể lấy trạng thái về %s." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Gói thường: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "Diễn biến: [%3i%%]" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Gói thuần ảo: " +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Đang chạy dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Gói ảo đơn: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Không hỗ trợ hệ thống đóng gói “%s”" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Gói ảo hỗn hợp: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Không thể quyết định kiểu hệ thống đóng gói thích hợp" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Thiếu: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Đã ghi %i bản ghi.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Tổng phiên bản riêng: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Đã ghi %i bản ghi với %i tập tin còn thiếu.\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Tổng mô tả riêng: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Đã ghi %i bản ghi với %i tập tin không khớp với nhau\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Tổng gói phụ thuộc: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Đã ghi %i bản ghi với %i tập tin còn thiếu và %i tập tin không khớp với " +"nhau\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Tổng liên quan phiên bản và tập tin: " +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Không tìm thấy bản ghi xác thực cho: %s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Tổng quan hệ mô-tả/tập-tin: " +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Sai khớp chuỗi duy nhất cho: %s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Tổng ánh xạ Cung cấp: " +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Không tìm thấy trình điều khiển phương thức %s." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Tổng chuỗi mở rộng mẫu tìm kiếm: " +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "Gói “%s” đã được cài đặt chưa?" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Tổng chỗ phiên bản phụ thuộc: " +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Phương thức %s đã không khởi chạy đúng đắn." -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Tổng chỗ trống: " +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Hãy cho đĩa có nhãn “%s” vào ổ “%s” rồi bấm nút Enter." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Tổng chỗ đã tính dành cho: " +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Không thể phân tích hay mở danh sách gói hay tập tin trạng thái." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Tập tin gói %s không đồng bộ được." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Bạn nên lấy cơ sở dữ liệu mới bằng lệnh “apt-get update” để sửa các vấn đề " +"này" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Không tìm thấy gói" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Không thể đọc danh sách nguồn." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Bạn phải đưa ra ít nhất một mẫu tìm kiếm" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Bộ nhớ tạm gói trống" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Lệnh này đã lỗi thời. Xin hãy dùng lệnh “apt-mark showauto” để thay thế." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Tập tin nhớ tạm gói bị hỏng" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Tập tin nhớ tạm gói là một phiên bản không tương thích" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Tập tin nhớ tạm gói bị hỏng, nó quá nhỏ" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "Không thể định vị gói %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Trình APT này không hỗ trợ hệ thống điều khiển phiên bản “%s”" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Tập tin gói:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Bộ nhớ tạm gói được biên dịch cho một kiến trúc khác" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Bộ nhớ tạm không đồng bộ được nên không thể tham chiếu chéo tập tin gói" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Phụ thuộc" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Các gói đã ghim:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Phụ thuộc sẵn" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(không tìm thấy)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Đề nghị" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Đã cài đặt: " +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Khuyến khích" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Ứng cử: " +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Xung đột" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(không)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Thay thế" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Ghim gói: " +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Cũ" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Bảng phiên bản:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Làm hỏng" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s-%s được biên dịch cho %s vào lúc “%s %s”\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Tăng cường" -#: cmdline/apt-cache.cc:1749 -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 "" -"Cách dùng: apt-cache [tùy_chọn...] lệnh\n" -" apt-cache [tùy_chọn...] showpkg gói1 [gói2 ...]\n" -" apt-cache [tùy_chọn...] showsrc gói1 [gói2 ...]\n" -"(cache: bộ nhớ tạm\n" -"showpkg: hiển thị gói nhị phân\n" -"showsrc: hiển thị gói nguồn)\n" -"\n" -"apt-cache là một công cụ ở mức thấp dùng để truy vấn\n" -"thông tin từ các tập tin bộ nhớ tạm nhị phân của APT.\n" -"\n" -"Lệnh:\n" -" gencaches - Tạo bộ nhớ tạm cho cả gói lẫn nguồn\n" -" showpkg - Hiện thông tin chung về một gói riêng lẻ\n" -" showsrc - Hiện các bản ghi cho gói nguồn\n" -" stats - Hiện phần thống kê cơ bản\n" -" dump - Hiện toàn bộ tập tin dạng ngắn (đổ)\n" -" dumpavail - In ra một tập tin sẵn dùng ra thiết bị xuất chuẩn\n" -" unmet - Hiện các gói chưa thỏa mãn quan hệ phụ thuộc\n" -" search - Tìm kiếm danh sách các gói dựa trên biểu thức chính quy\n" -" show - Hiển thị bản ghi có thể đọc cho những gói đó\n" -" depends - Hiện thông tin quan hệ phụ thuộc dạng thô cho gói\n" -" rdepends - Hiện thông tin những gói phụ thuộc vào gói này\n" -" pkgnames - Liệt kê danh sách mọi gói trên hệ thống\n" -" dotty - Tạo ra đồ thị gói cho GraphViz (nhiều chấm)\n" -" xvcg - Tạo ra đồ thị gói cho xvcg\n" -" policy - Hiển thị các cài đặt về chính sách\n" -"\n" -"Tùy chọn:\n" -" -h Hiển thị trợ giúp này.\n" -" -p=? Bộ nhớ tạm gói.\n" -" -s=? Bộ nhớ tạm nguồn.\n" -" -q Không hiển thị diễn tiến công việc.\n" -" -i Chỉ hiển thị những phụ thuộc quan trọng cho lệnh unmet.\n" -" -c=? Đọc tập tin cấu hình này\n" -" -o=? Đặt một tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" -"Để tìm thông tin thêm, xem hai trang hướng dẫn\n" -" apt-cache(8) và apt.conf(5).\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "quan trọng" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Hãy cung cấp tên cho Đĩa này, kiểu như là: “Debian 5.0.3 Đĩa 1”" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "yêu cầu" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Hãy đưa đĩa vào ổ rồi bấm nút Enter" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "chuẩn" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Gặp lỗi khi gắn “%s” vào “%s”" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "tùy chọn" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"Không tìm thấy CD-ROM bằng cách tự động dò tìm hay sử dụng điểm gắn mặc " -"định.\n" -"Bạn có lẽ nên dùng tùy chọn --cdrom để đặt điểm gắn CD-ROM.\n" -"Xem “man apt-cdrom” để có thêm thông tin về tự động dò tìm CD-ROM và điểm " -"gắn." +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "bổ sung" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Hãy lặp lại tiến trình này cho các Đĩa còn lại trong bộ đĩa của bạn." +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Không hỗ trợ kiểu tập tin chỉ mục “%s”" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Các đối số không thành cặp" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Lỗi biên dịch biểu thức chính quy - %s" -#: cmdline/apt-config.cc:89 -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 "" -"Cách dùng: apt-config [tùy_chọn...] lệnh\n" -"\n" -"(config: viết tắt cho từ configuration: cấu hình)\n" -"\n" -"apt-config là một công cụ đơn giản để đọc tập tin cấu hình APT.\n" -"\n" -"Lệnh:\n" -" shell - Chế độ hệ vỏ\n" -" dump - Hiển thị cấu hình\n" -"\n" -"Tùy chọn:\n" -" -h Trợ giúp này\n" -" -c=? Đọc tập tin cấu hình này\n" -" -o=? Đặt một tùy chọn cấu hình tùy ý, ví dụ -o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Bộ nhớ tạm có hệ thống điều khiển phiên bản không tương thích" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Không tìm thấy gói cho kiến trúc “%s”" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Có lỗi phát sinh khi xử lý %s (%s%d)" -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Không tìm thấy gói “%s” với phiên bản “%s”" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Ồ, bạn đã vượt quá số tên gói mà trình APT này có thể quản lý." -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Không tìm thấy gói “%s” với số phát hành “%s”" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Ồ, bạn đã vượt quá số phiên bản mà trình APT này có thể quản lý." -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Đang chọn “%s” làm gói nguồn, thay thế cho “%s”\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Ồ, bạn đã vượt quá số mô tả mà trình APT này có thể quản lý." -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Không tìm thấy phiên bản “%s” của gói “%s”" +#: apt-pkg/pkgcachegen.cc:266 +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ý." -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "Không tìm thấy gói %s" +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" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s được đặt thành “được cài đặt bằng tay”.\n" +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" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Đang đọc các danh sách gói" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Đang tập hợp các Nhà cung cấp Tập tin" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s được đặt thành “được tự động cài đặt”.\n" +msgid "Unable to write to %s" +msgstr "Không thể ghi vào %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Lệnh này đã lỗi thời. Xin hãy dùng lệnh “apt-mark auto” và “apt-mark manual” " -"để thay thế." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Lỗi nội bộ: bộ tháo gỡ vấn đề đã ngắt gì" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Gửi kịch bản đến bộ phân giải" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Không thể khoá thư mục tải về" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Gửi yêu cầu đến bộ phân giải" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Phải chỉ định ít nhất một gói để mà lấy mã nguồn về cho nó" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Chuẩn bị để lấy cách giải quyết" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Không tìm thấy gói nguồn cho %s" +#: apt-pkg/edsp.cc:327 +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" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"GHI CHÚ: việc đóng gói “%s” được bảo trì trong hệ thống quản lý mã nguồn " -"“%s” tại:\n" -"%s\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Thi hành bộ phân giải từ bên ngoài" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Hãy dùng lệnh:\n" -"bzr branch %s\n" -"để lấy các gói mới nhất (có thể là chưa phát hành).\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "gặp lỗi khi đổi tên, %s (%s → %s)." -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Đang bỏ qua tập tin đã được tải về “%s”\n" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Mã băm tổng kiểm tra không khớp" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Không thể tìm được chỗ trống trong %s" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Kích cỡ không khớp nhau" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "Định dạng tập tập tin không hợp lệ" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Không đủ chỗ trống trên %s" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Không tìm thấy mục cần thiết “%s” trong tập tin Phát hành (Sai mục trong " +"sources.list hoặc tập tin bị hỏng)" -#. 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:891 +#: apt-pkg/acquire-item.cc:1589 #, 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" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Không thể tìm thấy mã băm tổng kiểm tra cho tập tin Phát hành %s" -#. 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:896 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Không có khóa công sẵn sàng cho những mã số khoá theo đây:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Cần phải lấy %sB từ kho nguồn.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Tập tin phát hành %s đã hết hạn (không hợp lệ kể từ %s). Cập nhật cho kho " +"này sẽ không được áp dụng." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "Lấy mã nguồn %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Bản phát hành xung đột: %s (cần %s nhưng lại nhận được %s)" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Gặp lỗi khi lấy một số kho." +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Gặp lỗi trong khi thẩm tra chữ ký.\n" +"Kho lưu chưa được cập nhật nên dùng những tập tin chỉ mục trước.\n" +"Lỗi GPG: %s: %s\n" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "Hoàn tất việc tải về và trong chế độ chỉ tải về" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Lỗi GPG: %s: %s" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, 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" +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 "" +"Không tìm thấy tập tin liên quan đến gói %s. Có lẽ bạn cần phải tự sửa gói " +"này, do thiếu kiến trúc." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Lệnh giải nén “%s” bị lỗi.\n" +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:963 +#: apt-pkg/acquire-item.cc:1983 #, 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ài đặt chưa.\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Các tập tin chỉ mục của gói này bị hỏng. Không có trường Filename: (Tên tập " +"tin:) cho gói %s." -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Lệnh biên dịch “%s” bị lỗi.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Khối nhà bán %s không chứa vân tay" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Tiến trình con bị lỗi" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Thiếu thư mục danh sách %spartial." -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Phải chỉ ra ít nhất một gói cần kiểm tra các phần phụ thuộc cần khi biên dịch" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Thiếu thư mục kho lưu %spartial." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -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" +msgid "Unable to lock directory %s" +msgstr "Không thể khoá thư mục %s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Không thể lấy thông tin về các phần phụ thuộc khi biên dịch cho %s" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Đang tải tập tin thứ %li trong tổng số %li (còn lại %s)" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s không phụ thuộc vào gì khi biên dịch.\n" +msgid "Retrieving file %li of %li" +msgstr "Đang tải tập tin %li trong tổng số %li" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Gặp lỗi khi lấy về %s %s\n" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Phần 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”" +"Một số tập tin chỉ mục không tải về được. Chúng đã bị bỏ qua, hoặc cái cũ đã " +"được dùng thay thế." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"Bạn phải để một số địa chỉ URI “nguồn” vào “sources.list” (danh sách nguồn)" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Phần phụ thuộc %s cho %s không thể được thỏa mãn vì không tìm thấy gói %s" +"Giá trị “%s” không hợp lệ cho APT::Default-Release như vậy bản phát hành " +"không sẵn có trong mã nguồn" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"Việc cố thỏa mãn quan hệ phụ thuộc %s cho %s bị lỗi vì gói đã cài đặt %s là " -"quá mới" +"Gặp mục ghi sai trong tập tin tùy thích %s: không có dòng đầu Package (Gói)." -#: cmdline/apt-get.cc:1351 +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Không hiểu kiểu ghim %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Chưa ghi rõ ưu tiên (hay số không) cho ghim" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"phần 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" +"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)" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Không thể cấu hình “%s”. " + +#: apt-pkg/packagemanager.cc:583 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"phần 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ử" +"Việc chạy tiến trình cài đặt này sẽ cần thiết gỡ bỏ tạm gói chủ yếu %s, do " +"vòng lặp Xung đột/Phụ thuộc trước. Trường hợp này thường xấu, nhưng mà nếu " +"bạn thật sự muốn tiếp tục, có thể hoạt hóa tuy chọn “APT::Force-" +"LoopBreak” (buộc ngắt vòng lặp)." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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." +msgid "Line %u too long in source list %s." +msgstr "Dòng %u quá dài trong danh sách nguồn %s." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Đang bỏ gắn CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Không thể thỏa mãn quan hệ phụ thuộc khi biên dịch cho %s." +msgid "Using CD-ROM mount point %s\n" +msgstr "Đang dùng điểm gắn đĩa CD-ROM %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Gặp lỗi khi xử lý các quan hệ phụ thuộc khi biên dịch" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Đang đợi đĩa...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Đang gắn đĩa CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Đang nhận diện... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog cho %s (%s)" +msgid "Stored label: %s\n" +msgstr "Nhãn đã lưu: %s\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Hỗ trợ các mô-đun:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Đang quét đĩa tìm tập tin chỉ mục...\n" -#: cmdline/apt-get.cc:1632 -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 "" -"Cách dùng: apt-get [tùy_chọn...] lệnh\n" -" apt-get [tùy_chọn...] install|remove gói1 [gói2 ...]\n" -" apt-get [tùy_chọn...] source gói1 [gói2 ...]\n" -"\n" -"get: lấy\n" -"install: cài đặt\n" -"remove: gỡ bỏ\n" -"source: nguồn\n" -"\n" -"apt-get là một giao diện dòng lệnh đơn giản dùng để tải về và cài đặt gói " -"phần mềm.\n" -"Những lệnh được dùng thường nhất là update (cập nhật) và install (cài đặt).\n" -"\n" -"Lệnh:\n" -" update - Lấy danh sách gói mới (cập nhật cơ sở dữ liệu)\n" -" upgrade - Nâng cấp lên phiên bản mới hơn\n" -" install - Cài đặt gói mới (gói có dạng libc6 không phải libc6.deb)\n" -" remove - Gỡ bỏ gói phần mềm\n" -" autoremove - Tự động gỡ bỏ tất cả các gói không dùng\n" -" purge - Gỡ bỏ và tẩy xóa gói\n" -" source - Tải về kho nguồn\n" -" build-dep - Cấu hình quan hệ phụ thuộc khi biên dịch, cho gói nguồn\n" -" dist-upgrade - Nâng cấp hệ điều hành lên phiên bản mới hơn, hãy xem apt-" -"get(8)\n" -" dselect-upgrade - Cho phép chọn dselect\n" -" clean - Xóa các tập tin kho đã tải về (dọn dẹp thư mục lưu trữ)\n" -" autoclean - Xóa các tập tin kho cũ đã tải về (tự động làm sạch)\n" -" check - Kiểm tra xem có quan hệ phụ thuộc bị sai không\n" -" changelog - Tải về và hiển thị các thay đổi cho gói đã cho\n" -" download - Tải về gói phần mềm vào thư mục hiện hành\n" -"\n" -"Tùy chọn:\n" -" -h Trợ giúp này.\n" -" -q Dữ liệu xuất có thể ghi nhật ký - không hiển thị tiến triển công việc\n" -" -qq Không xuất thông tin nào, trừ lỗi\n" -" -d Chỉ tải về, KHÔNG cài đặt hay giải nén kho\n" -" -s Không làm gì cả. Chỉ mô phỏng\n" -" -y Trả lời Có (yes) mọi khi gặp câu hỏi\n" -" -f Thử sửa chữa một hệ thống có quan hệ phụ thuộc bị sai hỏng\n" -" -m Thử tiếp tục lại nếu không thể xác định vị trí từ kho\n" -" -u Hiển thị danh sách các gói đã nâng cấp\n" -" -b Biên dịch gói nguồn sau khi lấy nó về\n" -" -V Hiển thị số thứ tự phiên bản dạng chi tiết\n" -" -c=? Đọc tập tin cấu hình này\n" -" -o=? Đặt tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" -"Để có thêm thông tin và tùy chọn thì hãy xem trang hướng dẫn\n" -" 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-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "Phải chỉ định ít nhất một cặp url/tên-tập-tin" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "Gặp lỗi khi tải về" - -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" -"Cách dùng: apt-helper [các-tùy-chọn] lệnh\n" -" apt-helper [các-tùy-chọn] download-file uri đường-dẫn-đích\n" -"\n" -"apt-helper là phần trợ giúp dành cho apt\n" -"\n" -"Các lệnh:\n" -" download-file - tải về uri đã cho về đường-dẫn-đích\n" -"\n" -" Lệnh trợ giúp APT này có Sức Mạnh của Siêu “Meep”.\n" - -#: cmdline/apt-mark.cc:68 -#, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "không thể đánh dấu %s như là nó chưa được cài đặt.\n" - -#: cmdline/apt-mark.cc:74 -#, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s được đặt thành được cài đặt bằng tay.\n" - -#: cmdline/apt-mark.cc:76 -#, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s đã sẵn được đặt thành cài đặt tự động rồi.\n" - -#: cmdline/apt-mark.cc:241 -#, c-format -msgid "%s was already set on hold.\n" -msgstr "%s đã sẵn được đặt là giữ lại.\n" - -#: cmdline/apt-mark.cc:243 -#, c-format -msgid "%s was already not hold.\n" -msgstr "%s đã sẵn được đặt là không giữ lại.\n" - -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Cần %s nhưng mà không thấy nó ở đây" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, c-format -msgid "%s set on hold.\n" -msgstr "%s được đặt là giữ lại.\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Hủy bỏ nắm giữ %s.\n" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" -"Thực thi lệnh “dpkg” gặp lỗi. Bạn có cần quyền siêu người dùng để thực thi " -"lệnh này" - -#: cmdline/apt-mark.cc:392 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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." +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Cách dùng: apt-mark [tùy-chọn...] {auto|manual} gói1 [gói2 ...]\n" -"\n" -"apt-mark là câu lệnh đơn giản được dùng để đánh dấu các gói là\n" -"được cài đặt tự động hay bằng tay. Nó còn có thể liệt kê danh sách các đánh " -"dấu.\n" -"\n" -"Lệnh:\n" -" auto - Đánh dấu các gói đưa ra là được cài đặt tự động\n" -" manual - Đánh dấu các gói đưa ra là được cài đặt bằng tay\n" -" hold - Đánh dấu một gói là giữ lại\n" -" unhold - Bỏ đánh dấu một gói là giữ lại\n" -" showauto - In ra danh sách các gói được tự động cài đặt\n" -" showmanual - In ra danh sách các gói được cài đặt bằng tay\n" -" showhold - In ra danh sách các gói được giữ lại\n" -"\n" -"Tùy chọn:\n" -" -h Trợ giúp này.\n" -" -q Dữ liệu xuất có thể ghi nhật ký - không hiển thị diễn biến công việc\n" -" -qq Không xuất thông tin nào, trừ lỗi\n" -" -s Không làm gì chỉ in những cái sẽ làm.\n" -" -f đánh dấu đọc/ghi tự-động/thủ-công trong tập tin đã cho.\n" -" -c=? Đọc tập tin cấu hình này\n" -" -o=? Đặt một tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" -"Để tìm thông tin thêm, xem hai trang man (hướng dẫn)\n" -" apt-mark(8) và apt.conf(5)" +"Tìm thấy %zu chỉ mục gói, %zu chỉ mục nguồn, %zu chỉ mục dịch và %zu chữ ký\n" -#: cmdline/apt.cc:47 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Cách dùng: apt [các tùy chọn] lệnh\n" -"\n" -"CLI (giao diện dòng lệnh) dành cho apt.\n" -"Các lệnh cơ bản:\n" -" list - liệt kê các gói dựa trên cơ sở là tên gói\n" -" search - tìm trong phần mô tả của gói\n" -" show - hiển thị thông tin chi tiết về gói\n" -"\n" -" update - cập nhật danh sánh các gói sẵn có\n" -"\n" -" install - cài đặt các gói\n" -" remove - gỡ bỏ các gói\n" -"\n" -" upgrade - nâng cấp các gói trong hệ thống\n" -" full-upgrade - nâng cấp hệ thống bằng cách gỡ bỏ, cài đặt, nâng cấp các " -"gói\n" -"\n" -" edit-sources - sửa tập tin thông tin gói nguồn\n" +"Không tìm thấy tập tin gói nào, có thể vì đây không phải là một Đĩa Debian, " +"hoặc có kiến trúc không đúng?" -#: methods/cdrom.cc:203 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Không thể đọc cơ sở dữ liệu đĩa CD-ROM %s" - -#: 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 "" -"Hãy sử dụng lệnh “apt-cdrom” để làm cho APT chấp nhận đĩa CD này. Không thể " -"sử dụng lệnh “apt-get update” (cập nhật cơ sở dữ liệu) để thêm đĩa CD mới." +msgid "Found label '%s'\n" +msgstr "Tìm thấy nhãn “%s”\n" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM sai" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Nó không phải là một tên hợp lệ: hãy thử lại.\n" -#: methods/cdrom.cc:249 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Không thể bỏ gắn đĩa CD-ROM trong %s. Có lẽ nó vẫn đang được dùng." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Không tìm thấy đĩa." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Không tìm thấy tập tin" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Gặp lỗi khi lấy thống kê" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Gặp lỗi khi đặt giờ sửa đổi" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Địa chỉ URI không hợp lệ, URI nội bộ không thể bắt đầu bằng “//”" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Đang đăng nhập vào" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Không thể quyết định tên ngang hàng" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Tên đĩa này:\n" +"“%s”\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Không thể phân giải tên cục bộ" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Đang sao chép các danh sách gói..." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Máy phục vụ đã từ chối kết nối, và đã nói: %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Đang ghi danh sách nguồn mới\n" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "Lệnh USER (người dùng) đã thất bại: máy chủ nói: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Các mục tin danh sách nguồn cho đĩa này:\n" -#: methods/ftp.cc:232 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Lệnh PASS (mật khẩu) đã thất bại: máy chủ nói: %s" +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ó." -#: methods/ftp.cc:252 +#: apt-pkg/algorithms.cc:1086 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Đã ghi rõ máy phục vụ ủy nhiệm, nhưng mà chưa ghi rõ tập lệnh đăng nhập. " -"“Acquire::ftp::ProxyLogin” là rỗng." - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Văn lệnh đăng nhập “%s” đã thất bại: máy chủ nói: %s" - -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "Lệnh TYPE (kiểu) đã thất bại: máy chủ nói: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Thời hạn kết nối" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Máy phục vụ đã đóng kết nối" - -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "Lỗi đọc" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Một trả lời đã tràn bộ đệm." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Giao thức bị hỏng" - -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "Lỗi ghi" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Không thể tạo ổ cắm" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Không thể kết nối ổ cắm dữ liệu, kết nối đã quá giờ" - -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "Gặp lỗi" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Không thể kết nối ổ cắm bị động." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo (lấy thông tin địa chỉ) không thể lấy ổ cắm lắng nghe" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Không thể ràng buộc ổ cắm" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Không thể lắng nghe trên ổ cắm đó" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Không thể quyết định tên ổ cắm đó" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Không thể gửi lệnh PORT (cổng)" +"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." -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Không biết họ địa chỉ %u (AF_*)" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Không thể sửa trục trặc này, bạn đã giữ lại một số gói bị hỏng." -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Lệnh EPRT (thông báo lỗi) đã thất bại: máy chủ nói: %s" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Đang xây dựng cây quan hệ phụ thuộc" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Quá giờ kết nối ổ cắm dữ liệu" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Phiên bản ứng cử" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Không thể chấp nhận kết nối" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Tạo ra quan hệ phụ thuộc" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Gặp vấn đề băm tập tin" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Đang đọc thông tin về tình trạng" -#: methods/ftp.cc:890 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Không thể lấy tập tin: máy phục vụ nói “%s”" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Ổ cắm dữ liệu đã quá giờ" +msgid "Failed to open StateFile %s" +msgstr "Lỗi mở tập tin tình trạng StateFile %s" -#: methods/ftp.cc:935 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Việc truyền dữ liệu bị lỗi: máy phục vụ nói “%s”" +msgid "Failed to write temporary StateFile %s" +msgstr "Gặp lỗi khi ghi tập tin tình trạng StateFile tạm thời %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Truy vấn" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Không thể phân tích tập tin gói %s (1)" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Không thể gọi " +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Không thể phân tích tập tin gói %s (2)" -#: methods/connect.cc:76 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Đang kết nối đến %s (%s)" +msgid "Release '%s' for '%s' was not found" +msgstr "Không tìm thấy bản phát hành “%s” cho “%s”" -#: methods/connect.cc:87 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "[IP: %s %s]" -msgstr "[Địa chỉ IP: %s %s]" +msgid "Version '%s' for '%s' was not found" +msgstr "Không tìm thấy phiên bản “%s” cho “%s”" -#: methods/connect.cc:94 +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 #, 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)" +msgid "Unable to locate package %s" +msgstr "Không thể định vị gói %s" -#: methods/connect.cc:100 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Không thể khởi tạo kết nối đến %s:%s (%s)." +msgid "Couldn't find task '%s'" +msgstr "Không tìm thấy tác vụ “%s”" -#: methods/connect.cc:108 +#: apt-pkg/cacheset.cc:609 #, 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 bị quá giờ" +msgid "Couldn't find any package by regex '%s'" +msgstr "Không tìm thấy gói nào theo biểu thức chính quy “%s”" -#: methods/connect.cc:126 +#: apt-pkg/cacheset.cc:615 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Không thể kết nối đến %s:%s (%s)." +msgid "Couldn't find any package by glob '%s'" +msgstr "Không tìm thấy gói nào theo đường dẫn “%s”" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "Connecting to %s" -msgstr "Đang kết nối đến %s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Không thể chọn phiên bản trong gói “%s” vì nó chỉ là ảo" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Could not resolve '%s'" -msgstr "Không thể phân giải “%s”" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Không thể chọn phiên bản được cài đặt hoặc phiên bản ứng cử trong gói “%s” " +"mà không có trong nó" -#: methods/connect.cc:205 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Việc phân giải “%s” bị lỗi tạm thời" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "Không thể chọn phiên bản mới nhất trong gói “%s” vì nó chỉ là ảo" -#: methods/connect.cc:209 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Lỗi hệ thống khi phân giải “%s:%s”" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "Không thể chọn phiên bản ứng cử trong gói %s vì nó không có ứng cử" -#: methods/connect.cc:211 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Một số hư hỏng đã xảy ra khi phân giải “%s:%s” (%i - %s)" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Không thể chọn phiên bản được cài đặt trong gói %s vì nó không phải được cài " +"đặt" -#: methods/connect.cc:258 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Không thể kết nối đến %s: %s:" +msgid "Unable to parse Release file %s" +msgstr "Không thể phân tích cú pháp của tập tin Phát hành %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Lỗi nội bộ: Chữ ký đúng, nhưng không thể xác định vân tay của khóa?!" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Không có phần nào trong tập tin Phát hành %s" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Gặp ít nhất một chữ ký không hợp lệ." +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Không có mục Hash (chuỗi duy nhất) nào trong tập tin Phát hành %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" -"Không thể thực hiện “gpgv” để thẩm tra chữ ký (gpgv đã được cài đặt chưa?)" +"Gặp mục tin “Valid-Until” (hợp lệ đến khi) không hợp lệ trong tập tin Phát " +"hành %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Invalid 'Date' entry in Release file %s" msgstr "" -"Tập tin Clearsigned không hợp lệ, nhận được “%s” (mạng yêu cầu xác nhận phải " -"không?)" - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Gặp lỗi không rõ khi thực hiện gpgv" +"Gặp mục tin “Date” (ngày tháng) không hợp lệ trong tập tin Phát hành %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Những chữ ký theo đây không hợp lệ:\n" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Gặp đoạn sai dạng %u trong danh sách nguồn %s (ngữ pháp URI)" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -"Không thể kiểm chứng những chữ ký theo đây, vì khóa công không sẵn có:\n" +"Gặp dòng có sai dạng %lu trong danh sách nguồn %s ([tùy chọn] không thể phân " +"tích được)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Các tập tin trống rỗng không phải là kho lưu hợp lệ" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s ([tùy chọn] quá ngắn)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Gặp lỗi khi ghi vào tập tin" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không phải là một phép " +"gán)" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Gặp lỗi khi đọc từ máy phục vụ: Máy chủ đã đóng kết nối" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không có khoá nào)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Gặp lỗi khi đọc từ máy phục vụ" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s (khoá [%s] %s không có giá " +"trị)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Gặp lỗi khi ghi vào tập tin" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (địa chỉ URI)" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Việc chọn bị lỗi" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Kết nối đã quá giờ" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (ngữ pháp URI)" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Gặp lỗi khi ghi vào tập tin đầu ra" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối tuyệt đối)" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Đang đợi phần đầu dữ liệu..." +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s (phân tách bản phân phối)" + +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Đang mở %s" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Dòng đầu sai" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Gặp dòng sai dạng %u trong danh sách nguồn %s (kiểu)." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Máy phục vụ HTTP đã gửi một dòng đầu trả lời không hợp lệ" +#: apt-pkg/sourcelist.cc:375 +#, 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." -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "" -"Máy phục vụ HTTP đã gửi một dòng đầu Content-Length (độ dài nội dung) không " -"hợp lệ" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Không hiểu kiểu “%s” trên đoạn %u trong danh sách nguồn %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "" -"Máy phục vụ HTTP đã gửi một dòng đầu Content-Range (phạm vi nội dung) không " -"hợp lệ" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Đang cài đặt %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Máy phục vụ HTTP không hỗ trợ tải một phần tập tin" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Đang cấu hình %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Không rõ định dạng ngày" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Đang gỡ bỏ %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Dữ liệu phần đầu sai" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Đang gỡ bỏ hoàn toàn %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Kết nối bị lỗi" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Đang ghi chép sự biến mất của %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Gặp lỗi nội bộ" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Đang chạy bẫy sau-cài-đặt %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Đang tính toán nâng cấp... " +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Thiếu thư mục “%s”" -#: apt-private/private-upgrade.cc:30 -msgid "Internal error, Upgrade broke stuff" -msgstr "Lỗi nội bộ: Lệnh nâng cấp đã làm hỏng thứ gì đó" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Không thể mở tập tin “%s”" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "Xong" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Đang chuẩn bị %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "Đang sắp xếp" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Đang mở gói %s" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "Đang liệt kê" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Đang chuẩn bị cấu hình %s" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "Ở đây có %i phiên bản phụ thêm. Hãy dùng tùy chọn “-a” để xem." +msgid "Installed %s" +msgstr "Đã cài đặt %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Đang sửa chữa quan hệ phụ thuộc..." +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Đang chuẩn bị gỡ bỏ %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " gặp lỗi." +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Đã gỡ bỏ %s" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Không thể sửa phần phụ thuộc" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Đang chuẩn bị gỡ bỏ hoàn toàn %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Không thể tối thiểu hóa tập hợp nâng cấp" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Gỡ bỏ hoàn toàn %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Xong" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) gặp lỗi" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Bạn có thể chạy lệnh “apt-get -f install” để sửa những lỗi trên." +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, c-format +msgid "Can not write log (%s)" +msgstr "Không thể ghi nhật ký (%s)" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Chưa thỏa mãn quan hệ phụ thuộc. Hãy thử dùng tùy chọn “-f”." +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "/dev/pts đã gắn chưa?" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "không hiểu" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "Đầu ra là thiết bị cuối?" -#: apt-private/private-output.cc:233 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[đã cài, có thể nâng cấp thành: %s]" +msgid "Waited for %s but it wasn't there" +msgstr "Cần %s nhưng mà không thấy nó ở đây" -#: apt-private/private-output.cc:237 -msgid "[installed,local]" -msgstr "[đã cài đặt,nội bộ]" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Hệ điều hành đã ngắt trước khi nó kịp hoàn thành" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "[đã cài,có thể tự động gỡ bỏ]" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Không ghi báo cáo apport, vì đã chạm giới hạn số các báo cáo (MaxReports)" -#: apt-private/private-output.cc:242 -msgid "[installed,automatic]" -msgstr "[đã cài đặt,tự động]" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "gặp vấn đề về quan hệ phụ thuộc nên để lại không cấu hình" -#: apt-private/private-output.cc:244 -msgid "[installed]" -msgstr "[đã cài đặt]" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi kế tiếp " +"do một sự thất bại trước đó." -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "[có thể nâng cấp từ: %s]" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “đĩa đầy”" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "[residual-config]" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “không đủ " +"bộ nhớ”" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "Những gói theo đây chưa thỏa mãn quan hệ phụ thuộc:" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi trên hệ " +"thống nội bộ" -#: apt-private/private-output.cc:442 -#, c-format -msgid "but %s is installed" -msgstr "nhưng mà %s đã được cài đặt" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “V/R dpkg”" -#: apt-private/private-output.cc:444 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "but %s is to be installed" -msgstr "nhưng mà %s sẽ được cài đặt" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Không thể khoá thư mục quản trị (%s), có một tiến trình khác đang sử dụng nó " +"phải không?" -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "nhưng mà nó không có khả năng cài đặt" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Không thể khoá thư mục quản trị (%s), bạn có quyền root không?" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "nhưng mà nó là gói ảo" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg bị ngắt giữa chừng, bạn cần phải chạy “%s” một cách thủ công để giải " +"vấn đề này. " -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "nhưng mà nó không được cài đặt" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Chưa được khoá" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "nhưng mà nó sẽ không được cài đặt" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li ngày %li giờ %li phút %li giây" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " hay" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li giờ %li phút %li giây" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "Những gói MỚI sau sẽ được CÀI ĐẶT:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li phút %li giây" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "Những gói sau sẽ bị GỠ BỎ:" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li giây" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "Những gói sau đây được giữ lại:" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Không tìm thấy vùng chọn %s" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "Những gói sau đây sẽ được NÂNG CẤP:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Không dùng khả năng khóa cho tập tin khóa chỉ đọc %s" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "Những gói sau đây sẽ bị HẠ CẤP:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Không thể mở tập tin khóa %s" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "Những gói giữ lại sau đây sẽ bị THAY ĐỔI:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Không dùng khả năng khóa cho tập tin khóa đã lắp kiểu NFS %s" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%s (due to %s) " -msgstr "%s (bởi vì %s) " +msgid "Could not get lock %s" +msgstr "Không thể lấy khóa %s" -#: apt-private/private-output.cc:663 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"CẢNH BÁO: Có những gói chủ yếu sau đây sẽ bị gỡ bỏ.\n" -"ĐỪNG làm như thế trừ khi bạn biết chính xác mình đang làm gì!" +"Liệt kê các tập tin không thể được tạo ra vì “%s” không phải là một thư mục" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu nâng cấp, %lu được cài đặt mới, " +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Bỏ qua “%s” trong thư mục “%s'vì nó không phải là tập tin bình thường" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu được cài đặt lại, " +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" +"Bỏ qua tập tin “%s” trong thư mục “%s” vì nó không có phần đuôi mở rộng" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "%lu downgraded, " -msgstr "%lu bị hạ cấp, " +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"Bỏ qua tập tin “%s” trong thư mục “%s” vì nó có phần đuôi mở rộng không hợp " +"lệ" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu cần gỡ bỏ, và %lu chưa được nâng cấp.\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "Tiến trình con %s đã nhận một lỗi phân đoạn." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu chưa được cài đặt toàn bộ hay được gỡ bỏ.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "[C/k]" +msgid "Sub-process %s received signal %u." +msgstr "Tiến trình con %s đã nhận tín hiệu %u." -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "[c/K]" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Tiến trình con %s đã trả về một mã lỗi (%u)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "C" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Tiến trình con %s đã thoát bất thường" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "K" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Lỗi ghi" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Regex compilation error - %s" -msgstr "Lỗi biên dịch biểu thức chính quy - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Lệnh cập nhật không chấp nhận đối số" +msgid "Problem closing the gzip file %s" +msgstr "Gặp vấn đề khi đóng tập tin gzip %s" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" +msgid "Could not open file %s" +msgstr "Không thể mở tập tin %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "Ở đây có %i bản ghi phụ thêm. Hãy dùng tùy chọn “-a” để xem" +msgid "Could not open file descriptor %d" +msgstr "Không thể mở bộ mô tả tập tin %d" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "không là gói thật (ảo)" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Việc tạo tiến trình con IPC bị lỗi" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Lỗi nội bộ: InstallPackages (cài đặt gói) được gọi với gói bị hỏng!" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Gặp lỗi khi thực hiện nén " -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "" -"Cần phải gỡ bỏ một số gói, nhưng mà tính năng Gỡ bỏ (Remove) đã bị tắt." +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Lỗi đọc" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "Gặp lỗi nội bộ: Tiến trình Sắp xếp chưa xong" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "đọc, còn cần đọc %llu nhưng mà không có gì còn lại cả" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Lạ nhỉ... Kích cỡ không khớp nhau. Hãy gửi thư cho <apt@packages.debian.org>" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "ghi, còn cần ghi %llu nhưng mà không thể" -#. 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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Cần phải lấy %sB/%sB từ kho chứa.\n" +msgid "Problem closing the file %s" +msgstr "Gặp vấn đề khi đóng tập tin %s" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Cần phải lấy %sB từ kho chứa.\n" +msgid "Problem renaming the file %s to %s" +msgstr "Gặp vấn đề khi đổi tên tập tin %s thành %s" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ bị chiếm dụng.\n" +msgid "Problem unlinking the file %s" +msgstr "Gặp vấn đề khi bỏ liên kết tập tin %s" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Gặp vấn đề khi đồng bộ hóa tập tin" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -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" +msgid "%c%s... Error!" +msgstr "%c%s... Lỗi!" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/progress.cc:150 #, c-format -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." +msgid "%c%s... Done" +msgstr "%c%s... Xong" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Có lỗi và đã dùng tùy chọn “-y” mà không có “--force-yes”" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -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 là đáng " -"kể." +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Có, làm đi!" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Không thể mmap (ánh xạ bộ nhớ) tập tin rỗng" -#: apt-private/private-install.cc:221 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Bạn sắp làm việc mà nó có thể gây hư hại cho hệ thống.\n" -"Nếu vẫn muốn tiếp tục thì hãy gõ cụm từ “%s”\n" -"?] " +msgid "Couldn't duplicate file descriptor %i" +msgstr "Không thể nhân đôi bộ mô tả tập tin %i" + +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Không thể tạo mmap (ánh xạ bộ nhớ) kích cỡ %llu byte" + +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Không thể đóng mmap (ánh xạ bộ nhớ)" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "Hủy bỏ." +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Không thể động bộ hoá mmap (ánh xạ bộ nhớ)" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "Bạn có muốn tiếp tục không?" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Không thể tạo mmap (ánh xạ bộ nhớ) kích cỡ %lu byte" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "Một số tập tin không tải về được" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Gặp lỗi khi cắt ngắn tập tin" -#: apt-private/private-install.cc:319 +#: apt-pkg/contrib/mmap.cc:341 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -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)\n" -"hay dùng tùy chọn “--fix-missing” (sửa thiếu sót) không?" - -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Chưa hỗ trợ tùy chọn “--fix-missing” (sửa khi thiếu) và trao đổi phương tiện." - -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "Không thể sửa những gói còn thiếu." +"Dynamic MMap (ánh xạ bộ nhớ động) đã vượt quá kích thước tối đa cho phép.\n" +"Hãy tăng kích cỡ của “APT::Cache-Start” (giới hạn vùng nhớ tạm Apt).\n" +"Giá trị hiện thời là: %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "Đang hủy bỏ tiến trình cài đặt." +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "Không thể tăng kích cỡ của ánh xạ bộ nhớ, vì đã tới giới hạn %lu byte." -#: apt-private/private-install.cc:365 +#: apt-pkg/contrib/mmap.cc:449 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] "" -"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 đè:" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Không thể tăng kích cỡ của ánh xạ bộ nhớ, vì chức năng tự động tăng bị người " +"dùng tắt đi." -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Ghi chú: Thay đổi này được tự động thực hiện bởi dpkg." +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Không thể lấy các thông tin cho điểm gắn kết %s" -#: apt-private/private-install.cc:390 -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" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Việc lấy các thông tin thống kê đĩa CD-ROM bị lỗi" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Ừm, có vẻ là Bộ Gỡ bỏ Tự động đã hủy cái gì, một trường hợp thực sự không " -"nên xảy ra. Hãy thông báo lỗi về apt." +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Không chấp nhận kiểu viết tắt: “%c”" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ bạn giải quyết tình trạng này:" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Đang mở tập tin cấu hình %s..." -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Lỗi nội bộ: Bộ Gỡ bỏ Tự động đã làm hỏng một thứ gì đó" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Gặp lỗi cú pháp %s:%u: Khối bắt đầu không có tên." -#: apt-private/private-install.cc:512 -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] "" -"(Các) gói sau đây đã được tự động cài đặt nên không còn cần yêu cầu lại:" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Gặp lỗi cú pháp %s:%u: Sai dạng thẻ" -#: apt-private/private-install.cc:516 +#: apt-pkg/contrib/configuration.cc:837 #, 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 yêu cầu lại.\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Gặp lỗi cú pháp %s:%u: Có rác sau giá trị" -#: apt-private/private-install.cc:518 -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." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Gặp lỗi cú pháp %s:%u: Chỉ có thể thực hiện chỉ thị mức đầu" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Có lẽ bạn cần chạy lệnh “apt-get -f install” để sửa những cái đó:" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Gặp lỗi cú pháp %s:%u: Quá nhiều chỉ thị bao gồm lồng nhau" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Thưa thỏa mãn quan hệ phụ thuộc. Hãy thử chạy lệnh “apt-get -f install” mà " -"không có gói nào (hoặc chỉ định cách thức giải quyết)." +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Gặp lỗi cú pháp %s:%u: Đã được bao gồm từ đây" -#: apt-private/private-install.cc:628 -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." +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Gặp lỗi cú pháp %s:%u: Chưa hỗ trợ chỉ thị “%s”" + +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Không thể cài đặt một số gói. Điều đó có nghĩa là bạn đã yêu cầu\n" -"một trường hợp không thể, hoặc nếu bạn đang sử dụng bản phân phối\n" -"chưa ổn định cái mà yêu cầu các gói mà nó còn chưa được tạo ra\n" -"hay chưa được chuyển ra khỏi phần Incoming (Đến)." +"Gặp lỗi cú pháp %s:%u: Chỉ thị “clear” thì yêu cầu một cây tuỳ chọn làm đối " +"số" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "Gói bị hỏng" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Gặp lỗi cú pháp %s:%u: Gặp rác tại kết thúc tập tin" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "Những gói thêm theo đây sẽ được cài đặt:" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Không có vòng khoá nào được cài đặt vào %s." -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "Các gói đề nghị:" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Không hiểu tùy chọn dòng lệnh “%c” [từ %s]." -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "Gói khuyến khích:" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Không hiểu tùy chọn dòng lệnh %s" -#: apt-private/private-install.cc:815 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Đang bỏ qua %s vì nó đã được cài đặt và chưa đặt tùy chọn Nâng cấp.\n" +msgid "Command line option %s is not boolean" +msgstr "Tùy chọn dòng lệnh %s không phải dạng lôgíc (đúng/sai)" -#: apt-private/private-install.cc:819 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Đang bỏ qua %s vì nó chưa được cài đặt và chỉ Nâng cấp là được yêu cầu.\n" +msgid "Option %s requires an argument." +msgstr "Tùy chọn %s yêu cầu một đối số." -#: apt-private/private-install.cc:831 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Không thể cài đặt lại %s vì không thể tải nó về.\n" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Tùy chọn %s: Đặc tả mục cấu hình phải có một “=<giá_trị>”." -#: apt-private/private-install.cc:836 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s là phiên bản mới nhất.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Tùy chọn %s yêu cầu một đối số kiểu số nguyên, không phải “%s”" -#: apt-private/private-install.cc:884 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Đã chọn phiên bản “%s” (%s) cho “%s”\n" +msgid "Option '%s' is too long" +msgstr "Tùy chọn “%s” quá dài" -#: apt-private/private-install.cc:889 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Đã chọn phiên bản “%s” (%s) cho “%s” vì “%s”\n" +msgid "Sense %s is not understood, try true or false." +msgstr "Không hiểu %s: hãy thử dùng true (đúng) hoặc false (sai)." -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Chưa cài đặt gói %s nên không thể gỡ bỏ nó. Có phải ý bạn là “%s'?\n" +msgid "Invalid operation %s" +msgstr "Thao tác “%s” không hợp lệ" -#: apt-private/private-install.cc:937 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Gói %s chưa được cài đặt, thế nên không thể gỡ bỏ nó\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Gói %s phiên bản %s có phần phụ thuộc chưa thỏa mãn:\n" -#: apt-private/private-main.cc:32 -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 "" -"CHÚ Ý: đây chỉ là mô phỏng!\n" -" apt-get yêu cầu quyền root để thực hiện thật.\n" -" Cần nhớ rằng chức năng khóa đã bị tắt,\n" -" nên có thể nó không chính xác như khi làm thật!" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Tổng các tên gói: " + +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Tổng các cấu trúc gói: " + +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Gói thường: " + +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Gói thuần ảo: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "CẢNH BÁO: Không thể xác thực những gói sau đây!" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Gói ảo đơn: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Cảnh báo xác thực bị đè.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Gói ảo hỗn hợp: " -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Một số gói không thể được xác thực" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Thiếu: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Cài đặt những gói này mà không cần thẩm tra?" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Tổng phiên bản riêng: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Gặp lỗi khi lấy về %s %s\n" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Tổng mô tả riêng: " -#: apt-private/private-sources.cc:58 -#, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Gặp lỗi khi phân tích %s. Sửa lại chứ? " +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Tổng gói phụ thuộc: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "Tập tin “%s” của bạn đã thay đổi, hãy chạy lệnh “apt-get update”." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Tổng liên quan phiên bản và tập tin: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "Tìm kiếm toàn văn" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Tổng quan hệ mô-tả/tập-tin: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Tìm thấy " +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Tổng ánh xạ Cung cấp: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Lấy:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Tổng chuỗi mở rộng mẫu tìm kiếm: " -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Bỏq " +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Tổng chỗ phiên bản phụ thuộc: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Lỗi " +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Tổng chỗ trống: " -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Đã lấy về %sB mất %s (%sB/g).\n" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Tổng chỗ đã tính dành cho: " -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid " [Working]" -msgstr " [Đang hoạt động]" +msgid "Package file %s is out of sync." +msgstr "Tập tin gói %s không đồng bộ được." -#: apt-private/acqprogress.cc:297 -#, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Không tìm thấy gói" + +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Bạn phải đưa ra ít nhất một mẫu tìm kiếm" + +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Chuyển đổi thiết bị lưu trữ: vui lòng đưa đĩa có nhãn\n" -" “%s”\n" -"vào ổ “%s” rồi bấm nút Enter\n" +"Lệnh này đã lỗi thời. Xin hãy dùng lệnh “apt-mark showauto” để thay thế." -#. 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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "Không thể đọc %s" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Tập tin gói:" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "Không thể chuyển đổi sang %s" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Bộ nhớ tạm không đồng bộ được nên không thể tham chiếu chéo tập tin gói" -#. 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 "Không tìm thấy tập tin bản sao “%s” " +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Các gói đã ghim:" -#. 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 "Không thể đọc tập tin bản sao “%s”" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(không tìm thấy)" -#: methods/mirror.cc:315 -#, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Không tìm thấy điểm vào trong tập tin bản sao “%s”" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Đã cài đặt: " -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Bản sao: %s]" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Ứng cử: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Gặp lỗi khi tạo ống IPC đến tiến trình con" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(không)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Kết nối bị đóng bất ngờ" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Ghim gói: " -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Cài đặt mặc định sai!" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Bảng phiên bản:" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Bấm phím Enter để tiếp tục." +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s-%s được biên dịch cho %s vào lúc “%s %s”\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Bạn có muốn xoá mọi tập tin .deb đã được tải về trước đây không?" +#: cmdline/apt-cache.cc:1749 +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 "" +"Cách dùng: apt-cache [tùy_chọn...] lệnh\n" +" apt-cache [tùy_chọn...] showpkg gói1 [gói2 ...]\n" +" apt-cache [tùy_chọn...] showsrc gói1 [gói2 ...]\n" +"(cache: bộ nhớ tạm\n" +"showpkg: hiển thị gói nhị phân\n" +"showsrc: hiển thị gói nguồn)\n" +"\n" +"apt-cache là một công cụ ở mức thấp dùng để truy vấn\n" +"thông tin từ các tập tin bộ nhớ tạm nhị phân của APT.\n" +"\n" +"Lệnh:\n" +" gencaches - Tạo bộ nhớ tạm cho cả gói lẫn nguồn\n" +" showpkg - Hiện thông tin chung về một gói riêng lẻ\n" +" showsrc - Hiện các bản ghi cho gói nguồn\n" +" stats - Hiện phần thống kê cơ bản\n" +" dump - Hiện toàn bộ tập tin dạng ngắn (đổ)\n" +" dumpavail - In ra một tập tin sẵn dùng ra thiết bị xuất chuẩn\n" +" unmet - Hiện các gói chưa thỏa mãn quan hệ phụ thuộc\n" +" search - Tìm kiếm danh sách các gói dựa trên biểu thức chính quy\n" +" show - Hiển thị bản ghi có thể đọc cho những gói đó\n" +" depends - Hiện thông tin quan hệ phụ thuộc dạng thô cho gói\n" +" rdepends - Hiện thông tin những gói phụ thuộc vào gói này\n" +" pkgnames - Liệt kê danh sách mọi gói trên hệ thống\n" +" dotty - Tạo ra đồ thị gói cho GraphViz (nhiều chấm)\n" +" xvcg - Tạo ra đồ thị gói cho xvcg\n" +" policy - Hiển thị các cài đặt về chính sách\n" +"\n" +"Tùy chọn:\n" +" -h Hiển thị trợ giúp này.\n" +" -p=? Bộ nhớ tạm gói.\n" +" -s=? Bộ nhớ tạm nguồn.\n" +" -q Không hiển thị diễn tiến công việc.\n" +" -i Chỉ hiển thị những phụ thuộc quan trọng cho lệnh unmet.\n" +" -c=? Đọc tập tin cấu hình này\n" +" -o=? Đặt một tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" +"Để tìm thông tin thêm, xem hai trang hướng dẫn\n" +" apt-cache(8) và apt.conf(5).\n" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Gặp một số lỗi trong khi giải nén. Những gói đã được cài đặt" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Hãy cung cấp tên cho Đĩa này, kiểu như là: “Debian 5.0.3 Đĩa 1”" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "sẽ cũng được cấu hình. Việc này có thể sẽ gây ra lỗi trùng lặp" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Hãy đưa đĩa vào ổ rồi bấm nút Enter" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "hoặc lỗi do quan hệ phụ thuộc chưa thoả. Trường hợp này vẫn đúng," +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Gặp lỗi khi gắn “%s” vào “%s”" -#: dselect/install:105 +#: cmdline/apt-cdrom.cc:178 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"chỉ những lỗi bên trên thông điệp này là quan trọng. Hãy sửa chữa, sau đó " -"chạy lại lệnh cà[I] đặt." - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Đang hòa trộn các thông tin sẵn có..." - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode (thả điểm nút) được gọi với điểm nút còn liên kết" +"Không tìm thấy CD-ROM bằng cách tự động dò tìm hay sử dụng điểm gắn mặc " +"định.\n" +"Bạn có lẽ nên dùng tùy chọn --cdrom để đặt điểm gắn CD-ROM.\n" +"Xem “man apt-cdrom” để có thêm thông tin về tự động dò tìm CD-ROM và điểm " +"gắn." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Gặp lỗi khi định vị phần tử băm!" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Hãy lặp lại tiến trình này cho các Đĩa còn lại trong bộ đĩa của bạn." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Gặp lỗi khi định vị trệch đi" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Các đối số không thành cặp" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Lỗi nội bộ trong AddDiversion (thêm sự trệch đi)" +#: cmdline/apt-config.cc:89 +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 "" +"Cách dùng: apt-config [tùy_chọn...] lệnh\n" +"\n" +"(config: viết tắt cho từ configuration: cấu hình)\n" +"\n" +"apt-config là một công cụ đơn giản để đọc tập tin cấu hình APT.\n" +"\n" +"Lệnh:\n" +" shell - Chế độ hệ vỏ\n" +" dump - Hiển thị cấu hình\n" +"\n" +"Tùy chọn:\n" +" -h Trợ giúp này\n" +" -c=? Đọc tập tin cấu hình này\n" +" -o=? Đặt một tùy chọn cấu hình tùy ý, ví dụ -o dir::cache=/tmp\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Đang cố ghi đè một sự trệch đi, %s → %s và %s/%s" +msgid "Can not find a package for architecture '%s'" +msgstr "Không tìm thấy gói cho kiến trúc “%s”" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:327 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Sự trệch đi được thêm hai lần %s → %s" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Không tìm thấy gói “%s” với phiên bản “%s”" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:330 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Tập tin cấu hình (conf) trùng lặp %s/%s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Không tìm thấy gói “%s” với số phát hành “%s”" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:367 #, c-format -msgid "The path %s is too long" -msgstr "Đường dẫn %s quá dài" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Đang chọn “%s” làm gói nguồn, thay thế cho “%s”\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Unpacking %s more than once" -msgstr "Đang giải nén %s nhiều lần" +msgid "Can not find version '%s' of package '%s'" +msgstr "Không tìm thấy phiên bản “%s” của gói “%s”" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:454 #, c-format -msgid "The directory %s is diverted" -msgstr "Thư mục %s bị trệch hướng" +msgid "Couldn't find package %s" +msgstr "Không tìm thấy gói %s" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, 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:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Đường dẫn trệch đi quá dài" +msgid "%s set to manually installed.\n" +msgstr "%s được đặt thành “được cài đặt bằng tay”.\n" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Failed to stat %s" -msgstr "Việc lấy thông tin thống kê cho %s bị lỗi" +msgid "%s set to automatically installed.\n" +msgstr "%s được đặt thành “được tự động cài đặt”.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 -#, c-format -msgid "Failed to rename %s to %s" -msgstr "Việc đổi tên %s thành %s bị lỗi" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Lệnh này đã lỗi thời. Xin hãy dùng lệnh “apt-mark auto” và “apt-mark manual” " +"để thay thế." -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Thư mục %s đang được thay thế do một cái không phải là thư mục" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Lỗi nội bộ: bộ tháo gỡ vấn đề đã ngắt gì" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Gặp lỗi định vị điểm nút trong hộp băm nó bị lỗi" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Không thể khoá thư mục tải về" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Đường dẫn quá dài" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Phải chỉ định ít nhất một gói để mà lấy mã nguồn về cho nó" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, 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" +msgid "Unable to find a source package for %s" +msgstr "Không tìm thấy gói nguồn cho %s" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:786 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Tập tin %s/%s ghi đè lên một tập tin trong gói %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"GHI CHÚ: việc đóng gói “%s” được bảo trì trong hệ thống quản lý mã nguồn " +"“%s” tại:\n" +"%s\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Unable to stat %s" -msgstr "Không thể lấy thông tin thống kê %s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Hãy dùng lệnh:\n" +"bzr branch %s\n" +"để lấy các gói mới nhất (có thể là chưa phát hành).\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Failed to write file %s" -msgstr "Việc ghi tập tin %s gặp lỗi" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Đang bỏ qua tập tin đã được tải về “%s”\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Failed to close file %s" -msgstr "Việc đóng tập tin %s gặp lỗi" +msgid "Couldn't determine free space in %s" +msgstr "Không thể tìm được chỗ trống trong %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:882 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Đây không phải là một kho DEB hợp lệ vì còn thiếu thành viên “%s”" +msgid "You don't have enough free space in %s" +msgstr "Không đủ chỗ trống trên %s" -#: apt-inst/deb/debfile.cc:132 +#. 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:891 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Gặp lỗi nội bộ, không thể định vị thành viên %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Cần phải lấy %sB/%sB kho nguồn.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Tập tin điều khiển không có khả năng phân tách" +#. 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:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Cần phải lấy %sB từ kho nguồn.\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Chữ ký kho không hợp lệ" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Lấy mã nguồn %s\n" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Gặp lỗi khi đọc phần đầu thành viên kho" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Gặp lỗi khi lấy một số kho." -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Phần đầu thành viên kho lưu không hợp lệ %s" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Hoàn tất việc tải về và trong chế độ chỉ tải về" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Phần đầu thành viên kho không hợp lê" +#: cmdline/apt-get.cc:950 +#, 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" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Kho quá ngắn" +#: cmdline/apt-get.cc:962 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Lệnh giải nén “%s” bị lỗi.\n" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Việc đọc phần đầu kho bị lỗi" +#: cmdline/apt-get.cc:963 +#, 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ài đặt chưa.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Gặp lỗi khi tạo các đường ống dẫn lệnh" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Lệnh biên dịch “%s” bị lỗi.\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Việc thực hiện gzip bị lỗi " +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "Tiến trình con bị lỗi" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Kho bị hỏng." +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Phải chỉ ra ít nhất một gói cần kiểm tra các phần phụ thuộc cần khi biên dịch" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Gặp lỗi khi tổng kiểm “tar”, kho bị hỏng" +#: cmdline/apt-get.cc:1054 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +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" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Không rõ kiểu phần đầu tar %u, thành viên %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Không thể lấy thông tin về các phần phụ thuộc khi biên dịch cho %s" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Unable to stat %s." -msgstr "Không thể lấy trạng thái về %s." +msgid "%s has no build depends.\n" +msgstr "%s không phụ thuộc vào gì khi biên dịch.\n" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1271 #, c-format -msgid "Progress: [%3i%%]" -msgstr "Diễn biến: [%3i%%]" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Phần 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”" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Đang chạy dpkg" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Phần phụ thuộc %s cho %s không thể được thỏa mãn vì không tìm thấy gói %s" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Không hỗ trợ hệ thống đóng gói “%s”" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Việc cố thỏa mãn quan hệ phụ thuộc %s cho %s bị lỗi vì gói đã cài đặt %s là " +"quá mới" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Không thể quyết định kiểu hệ thống đóng gói thích hợp" +#: cmdline/apt-get.cc:1351 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"phần 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" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1357 #, c-format -msgid "Wrote %i records.\n" -msgstr "Đã ghi %i bản ghi.\n" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"phần 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ử" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1380 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Đã ghi %i bản ghi với %i tập tin còn thiếu.\n" +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." -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Đã ghi %i bản ghi với %i tập tin không khớp với nhau\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Không thể thỏa mãn quan hệ phụ thuộc khi biên dịch cho %s." -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "Gặp lỗi khi xử lý các quan hệ phụ thuộc khi biên dịch" + +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgid "Changelog for %s (%s)" +msgstr "Changelog cho %s (%s)" + +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "Hỗ trợ các mô-đun:" + +#: cmdline/apt-get.cc:1632 +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 "" +"Cách dùng: apt-get [tùy_chọn...] lệnh\n" +" apt-get [tùy_chọn...] install|remove gói1 [gói2 ...]\n" +" apt-get [tùy_chọn...] source gói1 [gói2 ...]\n" +"\n" +"get: lấy\n" +"install: cài đặt\n" +"remove: gỡ bỏ\n" +"source: nguồn\n" +"\n" +"apt-get là một giao diện dòng lệnh đơn giản dùng để tải về và cài đặt gói " +"phần mềm.\n" +"Những lệnh được dùng thường nhất là update (cập nhật) và install (cài đặt).\n" +"\n" +"Lệnh:\n" +" update - Lấy danh sách gói mới (cập nhật cơ sở dữ liệu)\n" +" upgrade - Nâng cấp lên phiên bản mới hơn\n" +" install - Cài đặt gói mới (gói có dạng libc6 không phải libc6.deb)\n" +" remove - Gỡ bỏ gói phần mềm\n" +" autoremove - Tự động gỡ bỏ tất cả các gói không dùng\n" +" purge - Gỡ bỏ và tẩy xóa gói\n" +" source - Tải về kho nguồn\n" +" build-dep - Cấu hình quan hệ phụ thuộc khi biên dịch, cho gói nguồn\n" +" dist-upgrade - Nâng cấp hệ điều hành lên phiên bản mới hơn, hãy xem apt-" +"get(8)\n" +" dselect-upgrade - Cho phép chọn dselect\n" +" clean - Xóa các tập tin kho đã tải về (dọn dẹp thư mục lưu trữ)\n" +" autoclean - Xóa các tập tin kho cũ đã tải về (tự động làm sạch)\n" +" check - Kiểm tra xem có quan hệ phụ thuộc bị sai không\n" +" changelog - Tải về và hiển thị các thay đổi cho gói đã cho\n" +" download - Tải về gói phần mềm vào thư mục hiện hành\n" +"\n" +"Tùy chọn:\n" +" -h Trợ giúp này.\n" +" -q Dữ liệu xuất có thể ghi nhật ký - không hiển thị tiến triển công việc\n" +" -qq Không xuất thông tin nào, trừ lỗi\n" +" -d Chỉ tải về, KHÔNG cài đặt hay giải nén kho\n" +" -s Không làm gì cả. Chỉ mô phỏng\n" +" -y Trả lời Có (yes) mọi khi gặp câu hỏi\n" +" -f Thử sửa chữa một hệ thống có quan hệ phụ thuộc bị sai hỏng\n" +" -m Thử tiếp tục lại nếu không thể xác định vị trí từ kho\n" +" -u Hiển thị danh sách các gói đã nâng cấp\n" +" -b Biên dịch gói nguồn sau khi lấy nó về\n" +" -V Hiển thị số thứ tự phiên bản dạng chi tiết\n" +" -c=? Đọc tập tin cấu hình này\n" +" -o=? Đặt tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" +"Để có thêm thông tin và tùy chọn thì hãy xem trang hướng dẫn\n" +" 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-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "Phải chỉ định ít nhất một cặp url/tên-tập-tin" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "Gặp lỗi khi tải về" + +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Đã ghi %i bản ghi với %i tập tin còn thiếu và %i tập tin không khớp với " -"nhau\n" +"Cách dùng: apt-helper [các-tùy-chọn] lệnh\n" +" apt-helper [các-tùy-chọn] download-file uri đường-dẫn-đích\n" +"\n" +"apt-helper là phần trợ giúp dành cho apt\n" +"\n" +"Các lệnh:\n" +" download-file - tải về uri đã cho về đường-dẫn-đích\n" +"\n" +" Lệnh trợ giúp APT này có Sức Mạnh của Siêu “Meep”.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Không tìm thấy bản ghi xác thực cho: %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "không thể đánh dấu %s như là nó chưa được cài đặt.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Sai khớp chuỗi duy nhất cho: %s" +msgid "%s was already set to manually installed.\n" +msgstr "%s được đặt thành được cài đặt bằng tay.\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "The method driver %s could not be found." -msgstr "Không tìm thấy trình điều khiển phương thức %s." +msgid "%s was already set to automatically installed.\n" +msgstr "%s đã sẵn được đặt thành cài đặt tự động rồi.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Is the package %s installed?" -msgstr "Gói “%s” đã được cài đặt chưa?" +msgid "%s was already set on hold.\n" +msgstr "%s đã sẵn được đặt là giữ lại.\n" -#: apt-pkg/acquire-worker.cc:169 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Method %s did not start correctly" -msgstr "Phương thức %s đã không khởi chạy đúng đắn." +msgid "%s was already not hold.\n" +msgstr "%s đã sẵn được đặt là không giữ lại.\n" -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Hãy cho đĩa có nhãn “%s” vào ổ “%s” rồi bấm nút Enter." +msgid "%s set on hold.\n" +msgstr "%s được đặt là giữ lại.\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Không thể phân tích hay mở danh sách gói hay tập tin trạng thái." +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, c-format +msgid "Canceled hold on %s.\n" +msgstr "Hủy bỏ nắm giữ %s.\n" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Bạn nên lấy cơ sở dữ liệu mới bằng lệnh “apt-get update” để sửa các vấn đề " -"này" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Không thể đọc danh sách nguồn." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Bộ nhớ tạm gói trống" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Tập tin nhớ tạm gói bị hỏng" +"Thực thi lệnh “dpkg” gặp lỗi. Bạn có cần quyền siêu người dùng để thực thi " +"lệnh này" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Tập tin nhớ tạm gói là một phiên bản không tương thích" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" +"Cách dùng: apt-mark [tùy-chọn...] {auto|manual} gói1 [gói2 ...]\n" +"\n" +"apt-mark là câu lệnh đơn giản được dùng để đánh dấu các gói là\n" +"được cài đặt tự động hay bằng tay. Nó còn có thể liệt kê danh sách các đánh " +"dấu.\n" +"\n" +"Lệnh:\n" +" auto - Đánh dấu các gói đưa ra là được cài đặt tự động\n" +" manual - Đánh dấu các gói đưa ra là được cài đặt bằng tay\n" +" hold - Đánh dấu một gói là giữ lại\n" +" unhold - Bỏ đánh dấu một gói là giữ lại\n" +" showauto - In ra danh sách các gói được tự động cài đặt\n" +" showmanual - In ra danh sách các gói được cài đặt bằng tay\n" +" showhold - In ra danh sách các gói được giữ lại\n" +"\n" +"Tùy chọn:\n" +" -h Trợ giúp này.\n" +" -q Dữ liệu xuất có thể ghi nhật ký - không hiển thị diễn biến công việc\n" +" -qq Không xuất thông tin nào, trừ lỗi\n" +" -s Không làm gì chỉ in những cái sẽ làm.\n" +" -f đánh dấu đọc/ghi tự-động/thủ-công trong tập tin đã cho.\n" +" -c=? Đọc tập tin cấu hình này\n" +" -o=? Đặt một tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" +"Để tìm thông tin thêm, xem hai trang man (hướng dẫn)\n" +" apt-mark(8) và apt.conf(5)" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Tập tin nhớ tạm gói bị hỏng, nó quá nhỏ" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" +"Cách dùng: apt [các tùy chọn] lệnh\n" +"\n" +"CLI (giao diện dòng lệnh) dành cho apt.\n" +"Các lệnh cơ bản:\n" +" list - liệt kê các gói dựa trên cơ sở là tên gói\n" +" search - tìm trong phần mô tả của gói\n" +" show - hiển thị thông tin chi tiết về gói\n" +"\n" +" update - cập nhật danh sánh các gói sẵn có\n" +"\n" +" install - cài đặt các gói\n" +" remove - gỡ bỏ các gói\n" +"\n" +" upgrade - nâng cấp các gói trong hệ thống\n" +" full-upgrade - nâng cấp hệ thống bằng cách gỡ bỏ, cài đặt, nâng cấp các " +"gói\n" +"\n" +" edit-sources - sửa tập tin thông tin gói nguồn\n" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Trình APT này không hỗ trợ hệ thống điều khiển phiên bản “%s”" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Bộ nhớ tạm gói được biên dịch cho một kiến trúc khác" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Phụ thuộc" +msgid "Unable to read the cdrom database %s" +msgstr "Không thể đọc cơ sở dữ liệu đĩa CD-ROM %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Phụ thuộc sẵn" +#: 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 "" +"Hãy sử dụng lệnh “apt-cdrom” để làm cho APT chấp nhận đĩa CD này. Không thể " +"sử dụng lệnh “apt-get update” (cập nhật cơ sở dữ liệu) để thêm đĩa CD mới." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Đề nghị" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM sai" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Khuyến khích" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Không thể bỏ gắn đĩa CD-ROM trong %s. Có lẽ nó vẫn đang được dùng." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Xung đột" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Không tìm thấy đĩa." -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Thay thế" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Không tìm thấy tập tin" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Cũ" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Gặp lỗi khi lấy thống kê" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Làm hỏng" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Gặp lỗi khi đặt giờ sửa đổi" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Tăng cường" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Địa chỉ URI không hợp lệ, URI nội bộ không thể bắt đầu bằng “//”" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "quan trọng" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Đang đăng nhập vào" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "yêu cầu" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Không thể quyết định tên ngang hàng" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "chuẩn" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Không thể phân giải tên cục bộ" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "tùy chọn" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Máy phục vụ đã từ chối kết nối, và đã nói: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "bổ sung" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Lệnh USER (người dùng) đã thất bại: máy chủ nói: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Không hỗ trợ kiểu tập tin chỉ mục “%s”" +msgid "PASS failed, server said: %s" +msgstr "Lệnh PASS (mật khẩu) đã thất bại: máy chủ nói: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Bộ nhớ tạm có hệ thống điều khiển phiên bản không tương thích" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Đã ghi rõ máy phục vụ ủy nhiệm, nhưng mà chưa ghi rõ tập lệnh đăng nhập. " +"“Acquire::ftp::ProxyLogin” là rỗng." -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: methods/ftp.cc:280 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Có lỗi phát sinh khi xử lý %s (%s%d)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Văn lệnh đăng nhập “%s” đã thất bại: máy chủ nói: %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Ồ, bạn đã vượt quá số tên gói mà trình APT này có thể quản lý." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "Lệnh TYPE (kiểu) đã thất bại: máy chủ nói: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Ồ, bạn đã vượt quá số phiên bản mà trình APT này có thể quản lý." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Thời hạn kết nối" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Ồ, bạn đã vượt quá số mô tả mà trình APT này có thể quản lý." +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Máy phục vụ đã đóng kết nối" -#: apt-pkg/pkgcachegen.cc:266 -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ý." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Một trả lời đã tràn bộ đệm." -#: apt-pkg/pkgcachegen.cc:576 -#, 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" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Giao thức bị hỏng" -#: apt-pkg/pkgcachegen.cc:1211 -#, 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" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Không thể tạo ổ cắm" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Đang đọc các danh sách gói" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Không thể kết nối ổ cắm dữ liệu, kết nối đã quá giờ" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Đang tập hợp các Nhà cung cấp Tập tin" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Gặp lỗi" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Không thể ghi vào %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Không thể kết nối ổ cắm bị động." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo (lấy thông tin địa chỉ) không thể lấy ổ cắm lắng nghe" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "Gửi kịch bản đến bộ phân giải" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Không thể ràng buộc ổ cắm" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "Gửi yêu cầu đến bộ phân giải" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Không thể lắng nghe trên ổ cắm đó" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "Chuẩn bị để lấy cách giải quyết" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Không thể quyết định tên ổ cắm đó" -#: apt-pkg/edsp.cc:320 -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" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Không thể gửi lệnh PORT (cổng)" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "Thi hành bộ phân giải từ bên ngoài" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Không biết họ địa chỉ %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "gặp lỗi khi đổi tên, %s (%s → %s)." +msgid "EPRT failed, server said: %s" +msgstr "Lệnh EPRT (thông báo lỗi) đã thất bại: máy chủ nói: %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Mã băm tổng kiểm tra không khớp" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Quá giờ kết nối ổ cắm dữ liệu" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Kích cỡ không khớp nhau" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Không thể chấp nhận kết nối" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "Định dạng tập tập tin không hợp lệ" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Gặp vấn đề băm tập tin" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Không tìm thấy mục cần thiết “%s” trong tập tin Phát hành (Sai mục trong " -"sources.list hoặc tập tin bị hỏng)" +msgid "Unable to fetch file, server said '%s'" +msgstr "Không thể lấy tập tin: máy phục vụ nói “%s”" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Ổ cắm dữ liệu đã quá giờ" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:935 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Không thể tìm thấy mã băm tổng kiểm tra cho tập tin Phát hành %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Việc truyền dữ liệu bị lỗi: máy phục vụ nói “%s”" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Không có khóa công sẵn sàng cho những mã số khoá theo đây:\n" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Truy vấn" -#: apt-pkg/acquire-item.cc:1677 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Tập tin phát hành %s đã hết hạn (không hợp lệ kể từ %s). Cập nhật cho kho " -"này sẽ không được áp dụng." +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Không thể gọi " -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Bản phát hành xung đột: %s (cần %s nhưng lại nhận được %s)" +msgid "Connecting to %s (%s)" +msgstr "Đang kết nối đến %s (%s)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:87 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Gặp lỗi trong khi thẩm tra chữ ký.\n" -"Kho lưu chưa được cập nhật nên dùng những tập tin chỉ mục trước.\n" -"Lỗi GPG: %s: %s\n" +msgid "[IP: %s %s]" +msgstr "[Địa chỉ IP: %s %s]" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:94 #, c-format -msgid "GPG error: %s: %s" -msgstr "Lỗi GPG: %s: %s" +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)" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:100 #, 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 "" -"Không tìm thấy tập tin liên quan đến gói %s. Có lẽ bạn cần phải tự sửa gói " -"này, do thiếu kiến trúc." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Không thể khởi tạo kết nối đến %s:%s (%s)." -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:108 #, 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”" +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 bị quá giờ" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:126 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Các tập tin chỉ mục của gói này bị hỏng. Không có trường Filename: (Tên tập " -"tin:) cho gói %s." +msgid "Could not connect to %s:%s (%s)." +msgstr "Không thể kết nối đến %s:%s (%s)." -#: apt-pkg/vendorlist.cc:85 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Khối nhà bán %s không chứa vân tay" +msgid "Connecting to %s" +msgstr "Đang kết nối đến %s" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "List directory %spartial is missing." -msgstr "Thiếu thư mục danh sách %spartial." +msgid "Could not resolve '%s'" +msgstr "Không thể phân giải “%s”" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Thiếu thư mục kho lưu %spartial." +msgid "Temporary failure resolving '%s'" +msgstr "Việc phân giải “%s” bị lỗi tạm thời" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:209 #, c-format -msgid "Unable to lock directory %s" -msgstr "Không thể khoá thư mục %s" +msgid "System error resolving '%s:%s'" +msgstr "Lỗi hệ thống khi phân giải “%s:%s”" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Đang tải tập tin thứ %li trong tổng số %li (còn lại %s)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Một số hư hỏng đã xảy ra khi phân giải “%s:%s” (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Đang tải tập tin %li trong tổng số %li" +msgid "Unable to connect to %s:%s:" +msgstr "Không thể kết nối đến %s: %s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Một số tập tin chỉ mục không tải về được. Chúng đã bị bỏ qua, hoặc cái cũ đã " -"được dùng thay thế." +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Lỗi nội bộ: Chữ ký đúng, nhưng không thể xác định vân tay của khóa?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "" -"Bạn phải để một số địa chỉ URI “nguồn” vào “sources.list” (danh sách nguồn)" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Gặp ít nhất một chữ ký không hợp lệ." -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Giá trị “%s” không hợp lệ cho APT::Default-Release như vậy bản phát hành " -"không sẵn có trong mã nguồn" +"Không thể thực hiện “gpgv” để thẩm tra chữ ký (gpgv đã được cài đặt chưa?)" -#: apt-pkg/policy.cc:422 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Gặp mục ghi sai trong tập tin tùy thích %s: không có dòng đầu Package (Gói)." +"Tập tin Clearsigned không hợp lệ, nhận được “%s” (mạng yêu cầu xác nhận phải " +"không?)" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Không hiểu kiểu ghim %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Gặp lỗi không rõ khi thực hiện gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Chưa ghi rõ ưu tiên (hay số không) cho ghim" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Những chữ ký theo đây không hợp lệ:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" 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)" +"Không thể kiểm chứng những chữ ký theo đây, vì khóa công không sẵn có:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Không thể cấu hình “%s”. " +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Các tập tin trống rỗng không phải là kho lưu hợp lệ" -#: apt-pkg/packagemanager.cc:583 -#, 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 "" -"Việc chạy tiến trình cài đặt này sẽ cần thiết gỡ bỏ tạm gói chủ yếu %s, do " -"vòng lặp Xung đột/Phụ thuộc trước. Trường hợp này thường xấu, nhưng mà nếu " -"bạn thật sự muốn tiếp tục, có thể hoạt hóa tuy chọn “APT::Force-" -"LoopBreak” (buộc ngắt vòng lặp)." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Gặp lỗi khi ghi vào tập tin" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Dòng %u quá dài trong danh sách nguồn %s." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Gặp lỗi khi đọc từ máy phục vụ: Máy chủ đã đóng kết nối" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Đang bỏ gắn CD-ROM...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Gặp lỗi khi đọc từ máy phục vụ" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Đang dùng điểm gắn đĩa CD-ROM %s\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Gặp lỗi khi ghi vào tập tin" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Đang đợi đĩa...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Việc chọn bị lỗi" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Đang gắn đĩa CD-ROM...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Kết nối đã quá giờ" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Đang nhận diện... " +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Gặp lỗi khi ghi vào tập tin đầu ra" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Nhãn đã lưu: %s\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Đang đợi phần đầu dữ liệu..." -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Đang quét đĩa tìm tập tin chỉ mục...\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Dòng đầu sai" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Tìm thấy %zu chỉ mục gói, %zu chỉ mục nguồn, %zu chỉ mục dịch và %zu chữ ký\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Máy phục vụ HTTP đã gửi một dòng đầu trả lời không hợp lệ" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -"Không tìm thấy tập tin gói nào, có thể vì đây không phải là một Đĩa Debian, " -"hoặc có kiến trúc không đúng?" +"Máy phục vụ HTTP đã gửi một dòng đầu Content-Length (độ dài nội dung) không " +"hợp lệ" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Tìm thấy nhãn “%s”\n" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "" +"Máy phục vụ HTTP đã gửi một dòng đầu Content-Range (phạm vi nội dung) không " +"hợp lệ" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Nó không phải là một tên hợp lệ: hãy thử lại.\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Máy phục vụ HTTP không hỗ trợ tải một phần tập tin" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Tên đĩa này:\n" -"“%s”\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Không rõ định dạng ngày" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Đang sao chép các danh sách gói..." +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Dữ liệu phần đầu sai" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Đang ghi danh sách nguồn mới\n" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Kết nối bị lỗi" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Các mục tin danh sách nguồn cho đĩa này:\n" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Gặp lỗi nội bộ" -#: apt-pkg/algorithms.cc:265 -#, c-format -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-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Đang tính toán nâng cấp... " -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -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-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Xong" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Không thể sửa trục trặc này, bạn đã giữ lại một số gói bị hỏng." +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Đang sắp xếp" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Đang xây dựng cây quan hệ phụ thuộc" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "Đang liệt kê" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Phiên bản ứng cử" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "Ở đây có %i phiên bản phụ thêm. Hãy dùng tùy chọn “-a” để xem." -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Tạo ra quan hệ phụ thuộc" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Đang sửa chữa quan hệ phụ thuộc..." -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Đang đọc thông tin về tình trạng" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " gặp lỗi." -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Lỗi mở tập tin tình trạng StateFile %s" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Không thể sửa phần phụ thuộc" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Gặp lỗi khi ghi tập tin tình trạng StateFile tạm thời %s" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Không thể tối thiểu hóa tập hợp nâng cấp" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Không thể phân tích tập tin gói %s (1)" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Xong" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Không thể phân tích tập tin gói %s (2)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Bạn có thể chạy lệnh “apt-get -f install” để sửa những lỗi trên." -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Không tìm thấy bản phát hành “%s” cho “%s”" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Chưa thỏa mãn quan hệ phụ thuộc. Hãy thử dùng tùy chọn “-f”." -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Không tìm thấy phiên bản “%s” cho “%s”" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "không hiểu" -#: apt-pkg/cacheset.cc:603 +#: apt-private/private-output.cc:234 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Không tìm thấy tác vụ “%s”" +msgid "[installed,upgradable to: %s]" +msgstr "[đã cài, có thể nâng cấp thành: %s]" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Không tìm thấy gói nào theo biểu thức chính quy “%s”" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[đã cài đặt,nội bộ]" -#: apt-pkg/cacheset.cc:615 -#, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Không tìm thấy gói nào theo đường dẫn “%s”" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[đã cài,có thể tự động gỡ bỏ]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Không thể chọn phiên bản trong gói “%s” vì nó chỉ là ảo" +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[đã cài đặt,tự động]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Không thể chọn phiên bản được cài đặt hoặc phiên bản ứng cử trong gói “%s” " -"mà không có trong nó" +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[đã cài đặt]" -#: apt-pkg/cacheset.cc:647 +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "Không thể chọn phiên bản mới nhất trong gói “%s” vì nó chỉ là ảo" +msgid "[upgradable from: %s]" +msgstr "[có thể nâng cấp từ: %s]" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "Không thể chọn phiên bản ứng cử trong gói %s vì nó không có ứng cử" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[residual-config]" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Không thể chọn phiên bản được cài đặt trong gói %s vì nó không phải được cài " -"đặt" +msgid "but %s is installed" +msgstr "nhưng mà %s đã được cài đặt" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:437 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Không thể phân tích cú pháp của tập tin Phát hành %s" +msgid "but %s is to be installed" +msgstr "nhưng mà %s sẽ được cài đặt" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Không có phần nào trong tập tin Phát hành %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "nhưng mà nó không có khả năng cài đặt" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Không có mục Hash (chuỗi duy nhất) nào trong tập tin Phát hành %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "nhưng mà nó là gói ảo" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "" -"Gặp mục tin “Valid-Until” (hợp lệ đến khi) không hợp lệ trong tập tin Phát " -"hành %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "nhưng mà nó không được cài đặt" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "" -"Gặp mục tin “Date” (ngày tháng) không hợp lệ trong tập tin Phát hành %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "nhưng mà nó sẽ không được cài đặt" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Gặp đoạn sai dạng %u trong danh sách nguồn %s (ngữ pháp URI)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " hay" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Gặp dòng có sai dạng %lu trong danh sách nguồn %s ([tùy chọn] không thể phân " -"tích được)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Những gói theo đây chưa thỏa mãn quan hệ phụ thuộc:" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s ([tùy chọn] quá ngắn)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Những gói MỚI sau sẽ được CÀI ĐẶT:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không phải là một phép " -"gán)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Những gói sau sẽ bị GỠ BỎ:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không có khoá nào)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Những gói sau đây được giữ lại:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s (khoá [%s] %s không có giá " -"trị)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Những gói sau đây sẽ được NÂNG CẤP:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (địa chỉ URI)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Những gói sau đây sẽ bị HẠ CẤP:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Những gói giữ lại sau đây sẽ bị THAY ĐỔI:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (ngữ pháp URI)" +msgid "%s (due to %s) " +msgstr "%s (bởi vì %s) " -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối tuyệt đối)" +"CẢNH BÁO: Có những gói chủ yếu sau đây sẽ bị gỡ bỏ.\n" +"ĐỪNG làm như thế trừ khi bạn biết chính xác mình đang làm gì!" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s (phân tách bản phân phối)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu nâng cấp, %lu được cài đặt mới, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:711 #, c-format -msgid "Opening %s" -msgstr "Đang mở %s" +msgid "%lu reinstalled, " +msgstr "%lu được cài đặt lại, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Gặp dòng sai dạng %u trong danh sách nguồn %s (kiểu)." +msgid "%lu downgraded, " +msgstr "%lu bị hạ cấp, " -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:715 #, 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." +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu cần gỡ bỏ, và %lu chưa được nâng cấp.\n" -#: apt-pkg/sourcelist.cc:416 +#: apt-private/private-output.cc:719 #, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Không hiểu kiểu “%s” trên đoạn %u trong danh sách nguồn %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu chưa được cài đặt toàn bộ hay được gỡ bỏ.\n" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Đang cài đặt %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[C/k]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Đang cấu hình %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[c/K]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "C" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Đang gỡ bỏ %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "K" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Đang gỡ bỏ hoàn toàn %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Lệnh cập nhật không chấp nhận đối số" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" -msgstr "Đang ghi chép sự biến mất của %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +"%i gói có thể được cập nhật. Chạy 'apt list --upgradable' để xem chúng.\n" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Đang chạy bẫy sau-cài-đặt %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "Mọi gói đã được cập nhật." -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-private/private-show.cc:156 #, c-format -msgid "Directory '%s' missing" -msgstr "Thiếu thư mục “%s”" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "Ở đây có %i bản ghi phụ thêm. Hãy dùng tùy chọn “-a” để xem" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Không thể mở tập tin “%s”" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "không là gói thật (ảo)" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Đang chuẩn bị %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Lỗi nội bộ: InstallPackages (cài đặt gói) được gọi với gói bị hỏng!" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Đang mở gói %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Cần phải gỡ bỏ một số gói, nhưng mà tính năng Gỡ bỏ (Remove) đã bị tắt." -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Đang chuẩn bị cấu hình %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Gặp lỗi nội bộ: Tiến trình Sắp xếp chưa xong" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Đã cài đặt %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Lạ nhỉ... Kích cỡ không khớp nhau. Hãy gửi thư cho <apt@packages.debian.org>" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Preparing for removal of %s" -msgstr "Đang chuẩn bị gỡ bỏ %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Cần phải lấy %sB/%sB từ kho chứa.\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Removed %s" -msgstr "Đã gỡ bỏ %s" +msgid "Need to get %sB of archives.\n" +msgstr "Cần phải lấy %sB từ kho chứa.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Đang chuẩn bị gỡ bỏ hoàn toàn %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ bị chiếm dụng.\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Completely removed %s" -msgstr "Gỡ bỏ hoàn toàn %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) gặp lỗi" +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" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: apt-private/private-install.cc:200 #, c-format -msgid "Can not write log (%s)" -msgstr "Không thể ghi nhật ký (%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." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "/dev/pts đã gắn chưa?" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Có lỗi và đã dùng tùy chọn “-y” mà không có “--force-yes”" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "Đầu ra là thiết bị cuối?" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +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 là đáng " +"kể." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Hệ điều hành đã ngắt trước khi nó kịp hoàn thành" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Có, làm đi!" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"Không ghi báo cáo apport, vì đã chạm giới hạn số các báo cáo (MaxReports)" +"Bạn sắp làm việc mà nó có thể gây hư hại cho hệ thống.\n" +"Nếu vẫn muốn tiếp tục thì hãy gõ cụm từ “%s”\n" +"?] " -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "gặp vấn đề về quan hệ phụ thuộc nên để lại không cấu hình" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Hủy bỏ." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Bạn có muốn tiếp tục không?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Một số tập tin không tải về được" + +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi kế tiếp " -"do một sự thất bại trước đó." +"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)\n" +"hay dùng tùy chọn “--fix-missing” (sửa thiếu sót) không?" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “đĩa đầy”" +"Chưa hỗ trợ tùy chọn “--fix-missing” (sửa khi thiếu) và trao đổi phương tiện." -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Không thể sửa những gói còn thiếu." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Đang hủy bỏ tiến trình cài đặt." + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “không đủ " -"bộ nhớ”" +"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] "" +"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 đè:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Ghi chú: Thay đổi này được tự động thực hiện bởi dpkg." + +#: apt-private/private-install.cc:391 +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" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi trên hệ " -"thống nội bộ" +"Ừm, có vẻ là Bộ Gỡ bỏ Tự động đã hủy cái gì, một trường hợp thực sự không " +"nên xảy ra. Hãy thông báo lỗi về apt." -#: apt-pkg/deb/dpkgpm.cc:1685 +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ bạn giải quyết tình trạng này:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Lỗi nội bộ: Bộ Gỡ bỏ Tự động đã làm hỏng một thứ gì đó" + +#: apt-private/private-install.cc:513 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “V/R dpkg”" +"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] "" +"(Các) gói sau đây đã được tự động cài đặt nên không còn cần yêu cầu lại:" -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:517 #, 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 yêu cầu lại.\n" + +#: apt-private/private-install.cc:519 +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." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Có lẽ bạn cần chạy lệnh “apt-get -f install” để sửa những cái đó:" + +#: apt-private/private-install.cc:614 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Không thể khoá thư mục quản trị (%s), có một tiến trình khác đang sử dụng nó " -"phải không?" - -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Không thể khoá thư mục quản trị (%s), bạn có quyền root không?" +"Thưa thỏa mãn quan hệ phụ thuộc. Hãy thử chạy lệnh “apt-get -f install” mà " +"không có gói nào (hoặc chỉ định cách thức giải quyết)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:638 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"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 "" -"dpkg bị ngắt giữa chừng, bạn cần phải chạy “%s” một cách thủ công để giải " -"vấn đề này. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Chưa được khoá" +"Không thể cài đặt một số gói. Điều đó có nghĩa là bạn đã yêu cầu\n" +"một trường hợp không thể, hoặc nếu bạn đang sử dụng bản phân phối\n" +"chưa ổn định cái mà yêu cầu các gói mà nó còn chưa được tạo ra\n" +"hay chưa được chuyển ra khỏi phần Incoming (Đến)." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li ngày %li giờ %li phút %li giây" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Gói bị hỏng" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%li giờ %li phút %li giây" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Những gói thêm theo đây sẽ được cài đặt:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%li phút %li giây" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Các gói đề nghị:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%li giây" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Gói khuyến khích:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "Không tìm thấy vùng chọn %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Đang bỏ qua %s vì nó đã được cài đặt và chưa đặt tùy chọn Nâng cấp.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Không dùng khả năng khóa cho tập tin khóa chỉ đọc %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Đang bỏ qua %s vì nó chưa được cài đặt và chỉ Nâng cấp là được yêu cầu.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "Không thể mở tập tin khóa %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Không thể cài đặt lại %s vì không thể tải nó về.\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Không dùng khả năng khóa cho tập tin khóa đã lắp kiểu NFS %s" +msgid "%s is already the newest version.\n" +msgstr "%s là phiên bản mới nhất.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "Không thể lấy khóa %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Đã chọn phiên bản “%s” (%s) cho “%s”\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:899 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" -"Liệt kê các tập tin không thể được tạo ra vì “%s” không phải là một thư mục" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Đã chọn phiên bản “%s” (%s) cho “%s” vì “%s”\n" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Bỏ qua “%s” trong thư mục “%s'vì nó không phải là tập tin bình thường" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Chưa cài đặt gói %s nên không thể gỡ bỏ nó. Có phải ý bạn là “%s'?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:947 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"Bỏ qua tập tin “%s” trong thư mục “%s” vì nó không có phần đuôi mở rộng" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Gói %s chưa được cài đặt, thế nên không thể gỡ bỏ nó\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -"Bỏ qua tập tin “%s” trong thư mục “%s” vì nó có phần đuôi mở rộng không hợp " -"lệ" +"CHÚ Ý: đây chỉ là mô phỏng!\n" +" apt-get yêu cầu quyền root để thực hiện thật.\n" +" Cần nhớ rằng chức năng khóa đã bị tắt,\n" +" nên có thể nó không chính xác như khi làm thật!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Tiến trình con %s đã nhận một lỗi phân đoạn." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "CẢNH BÁO: Không thể xác thực những gói sau đây!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Tiến trình con %s đã nhận tín hiệu %u." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Cảnh báo xác thực bị đè.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Tiến trình con %s đã trả về một mã lỗi (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Một số gói không thể được xác thực" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Tiến trình con %s đã thoát bất thường" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Cài đặt những gói này mà không cần thẩm tra?" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gặp vấn đề khi đóng tập tin gzip %s" +msgid "Failed to parse %s. Edit again? " +msgstr "Gặp lỗi khi phân tích %s. Sửa lại chứ? " -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Không thể mở tập tin %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "Tập tin “%s” của bạn đã thay đổi, hãy chạy lệnh “apt-get update”." -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Không thể mở bộ mô tả tập tin %d" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "Tìm kiếm toàn văn" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Việc tạo tiến trình con IPC bị lỗi" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Tìm thấy " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Gặp lỗi khi thực hiện nén " +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Lấy:" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "đọc, còn cần đọc %llu nhưng mà không có gì còn lại cả" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Bỏq " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "ghi, còn cần ghi %llu nhưng mà không thể" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Lỗi " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem closing the file %s" -msgstr "Gặp vấn đề khi đóng tập tin %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Đã lấy về %sB mất %s (%sB/g).\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Gặp vấn đề khi đổi tên tập tin %s thành %s" +msgid " [Working]" +msgstr " [Đang hoạt động]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Gặp vấn đề khi bỏ liên kết tập tin %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Gặp vấn đề khi đồng bộ hóa tập tin" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Chuyển đổi thiết bị lưu trữ: vui lòng đưa đĩa có nhãn\n" +" “%s”\n" +"vào ổ “%s” rồi bấm nút Enter\n" -#: apt-pkg/contrib/progress.cc:148 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Lỗi!" +msgid "No mirror file '%s' found " +msgstr "Không tìm thấy tập tin bản sao “%s” " -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Xong" +msgid "Can not read mirror file '%s'" +msgstr "Không thể đọc tập tin bản sao “%s”" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#: methods/mirror.cc:315 +#, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Không tìm thấy điểm vào trong tập tin bản sao “%s”" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +msgid "[Mirror: %s]" +msgstr "[Bản sao: %s]" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Không thể mmap (ánh xạ bộ nhớ) tập tin rỗng" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Gặp lỗi khi tạo ống IPC đến tiến trình con" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Không thể nhân đôi bộ mô tả tập tin %i" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Kết nối bị đóng bất ngờ" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Không thể tạo mmap (ánh xạ bộ nhớ) kích cỡ %llu byte" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Cài đặt mặc định sai!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Bấm phím Enter để tiếp tục." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Không thể đóng mmap (ánh xạ bộ nhớ)" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Bạn có muốn xoá mọi tập tin .deb đã được tải về trước đây không?" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Không thể động bộ hoá mmap (ánh xạ bộ nhớ)" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Gặp một số lỗi trong khi giải nén. Những gói đã được cài đặt" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Không thể tạo mmap (ánh xạ bộ nhớ) kích cỡ %lu byte" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "sẽ cũng được cấu hình. Việc này có thể sẽ gây ra lỗi trùng lặp" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Gặp lỗi khi cắt ngắn tập tin" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "hoặc lỗi do quan hệ phụ thuộc chưa thoả. Trường hợp này vẫn đúng," -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Dynamic MMap (ánh xạ bộ nhớ động) đã vượt quá kích thước tối đa cho phép.\n" -"Hãy tăng kích cỡ của “APT::Cache-Start” (giới hạn vùng nhớ tạm Apt).\n" -"Giá trị hiện thời là: %lu. (man 5 apt.conf)" +"chỉ những lỗi bên trên thông điệp này là quan trọng. Hãy sửa chữa, sau đó " +"chạy lại lệnh cà[I] đặt." -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "Không thể tăng kích cỡ của ánh xạ bộ nhớ, vì đã tới giới hạn %lu byte." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Đang hòa trộn các thông tin sẵn có..." -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Không thể tăng kích cỡ của ánh xạ bộ nhớ, vì chức năng tự động tăng bị người " -"dùng tắt đi." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode (thả điểm nút) được gọi với điểm nút còn liên kết" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Không thể lấy các thông tin cho điểm gắn kết %s" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Gặp lỗi khi định vị phần tử băm!" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Việc lấy các thông tin thống kê đĩa CD-ROM bị lỗi" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Gặp lỗi khi định vị trệch đi" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Không chấp nhận kiểu viết tắt: “%c”" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Lỗi nội bộ trong AddDiversion (thêm sự trệch đi)" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "Đang mở tập tin cấu hình %s..." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Đang cố ghi đè một sự trệch đi, %s → %s và %s/%s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Gặp lỗi cú pháp %s:%u: Khối bắt đầu không có tên." +msgid "Double add of diversion %s -> %s" +msgstr "Sự trệch đi được thêm hai lần %s → %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Gặp lỗi cú pháp %s:%u: Sai dạng thẻ" +msgid "Duplicate conf file %s/%s" +msgstr "Tập tin cấu hình (conf) trùng lặp %s/%s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Gặp lỗi cú pháp %s:%u: Có rác sau giá trị" +msgid "The path %s is too long" +msgstr "Đường dẫn %s quá dài" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Gặp lỗi cú pháp %s:%u: Chỉ có thể thực hiện chỉ thị mức đầu" +msgid "Unpacking %s more than once" +msgstr "Đang giải nén %s nhiều lần" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Gặp lỗi cú pháp %s:%u: Quá nhiều chỉ thị bao gồm lồng nhau" +msgid "The directory %s is diverted" +msgstr "Thư mục %s bị trệch hướng" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Gặp lỗi cú pháp %s:%u: Đã được bao gồm từ đây" +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-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Gặp lỗi cú pháp %s:%u: Chưa hỗ trợ chỉ thị “%s”" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Đường dẫn trệch đi quá dài" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Gặp lỗi cú pháp %s:%u: Chỉ thị “clear” thì yêu cầu một cây tuỳ chọn làm đối " -"số" +msgid "Failed to stat %s" +msgstr "Việc lấy thông tin thống kê cho %s bị lỗi" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Gặp lỗi cú pháp %s:%u: Gặp rác tại kết thúc tập tin" +msgid "Failed to rename %s to %s" +msgstr "Việc đổi tên %s thành %s bị lỗi" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "Không có vòng khoá nào được cài đặt vào %s." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Thư mục %s đang được thay thế do một cái không phải là thư mục" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Gặp lỗi định vị điểm nút trong hộp băm nó bị lỗi" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Đường dẫn quá dài" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Không hiểu tùy chọn dòng lệnh “%c” [từ %s]." +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-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "Không hiểu tùy chọn dòng lệnh %s" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Tập tin %s/%s ghi đè lên một tập tin trong gói %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Tùy chọn dòng lệnh %s không phải dạng lôgíc (đúng/sai)" +msgid "Unable to stat %s" +msgstr "Không thể lấy thông tin thống kê %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "Tùy chọn %s yêu cầu một đối số." +msgid "Failed to write file %s" +msgstr "Việc ghi tập tin %s gặp lỗi" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Tùy chọn %s: Đặc tả mục cấu hình phải có một “=<giá_trị>”." +msgid "Failed to close file %s" +msgstr "Việc đóng tập tin %s gặp lỗi" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Tùy chọn %s yêu cầu một đối số kiểu số nguyên, không phải “%s”" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Đây không phải là một kho DEB hợp lệ vì còn thiếu thành viên “%s”" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Tùy chọn “%s” quá dài" +msgid "Internal error, could not locate member %s" +msgstr "Gặp lỗi nội bộ, không thể định vị thành viên %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Tập tin điều khiển không có khả năng phân tách" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Chữ ký kho không hợp lệ" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Gặp lỗi khi đọc phần đầu thành viên kho" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Không hiểu %s: hãy thử dùng true (đúng) hoặc false (sai)." +msgid "Invalid archive member header %s" +msgstr "Phần đầu thành viên kho lưu không hợp lệ %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Phần đầu thành viên kho không hợp lê" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Kho quá ngắn" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Việc đọc phần đầu kho bị lỗi" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Gặp lỗi khi tạo các đường ống dẫn lệnh" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Việc thực hiện gzip bị lỗi " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Kho bị hỏng." + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Gặp lỗi khi tổng kiểm “tar”, kho bị hỏng" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "Thao tác “%s” không hợp lệ" +msgid "Unknown TAR header type %u, member %s" +msgstr "Không rõ kiểu phần đầu tar %u, thành viên %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3474,9 +3480,8 @@ 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:332 -#, fuzzy msgid "Failed to read .dsc" -msgstr "Gặp lỗi khi đọc liên kết %s" +msgstr "Gặp lỗi khi đọc .dsc" #: ftparchive/cachedb.cc:365 msgid "Archive has no control record" @@ -3647,7 +3652,7 @@ msgstr "Gặp lỗi khi đọc trong khi tính MD5" msgid "Problem unlinking %s" msgstr "Gặp lỗi khi bỏ liên kết %s" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -3702,6 +3707,9 @@ msgstr "" " -c=? Đọc tập tin cấu hình này\n" " -o=? Đặt tùy chọn cấu hình tùy ý, v.d. “-o dir::cache=/tmp”\n" +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "Lỗi nội bộ: Lệnh nâng cấp đã làm hỏng thứ gì đó" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s không phải là một gói DEB hợp lệ." diff --git a/po/zh_CN.po b/po/zh_CN.po index 4e6c51bd5..935c9b322 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -9,3127 +9,3131 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu <happyaron.xu@gmail.com>\n" "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n" -"Language: \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "不支持索引文件类型“%s”" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "版本为 %2$s 的软件包 %1$s 有未满足的依赖关系:\n" +msgid "Unable to read %s" +msgstr "无法读取 %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "软件包名称总数:" +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "无法切换工作目录到 %s" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "全部软件包结构:" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "无法读取 %s 的状态。" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " 普通软件包:" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " 完全虚拟软件包:" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "正在运行 dpkg" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " 单虚拟软件包:" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "不支持“%s”打包系统" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " 混合虚拟软件包:" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "无法确定适合的打包系统类型" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " 缺失:" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "已写入 %i 条记录。\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "按版本共计:" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "按不同的说明共计:" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "已写入 %i 条记录,并有 %i 个文件不匹配\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "按依赖关系共计:" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不匹配\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "按版本/文件关系共计:" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "无法找到认证记录:%s" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "按说明/文件关系共计:" +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash 校验和不符:%s" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "提供映射共计:" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "无法找到获取软件包的渠道 %s 所需的驱动程序。" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Glob 字串共计:" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "请检查是否安装了“dpkg-dev”软件包。\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "依赖关系版本名所占空间共计:" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "获取软件包的渠道 %s 所需的驱动程序没有正常启动。" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Slack 空间共计:" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "请把标有“%s”的盘片插入驱动器“%s”再按回车键。" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "总占用空间:" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "无法解析或打开软件包的列表或是状态文件。" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "软件包文件 %s 尚未同步。" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "您可能需要运行 apt-get update 来解决这些问题" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "没有发现匹配的软件包" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "无法读取源列表。" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "您必须明确地给出至少一个表达式" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "软件包缓存区是空的" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "软件包缓存文件损坏了" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "软件包缓存区文件的版本不兼容" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "软件包缓存文件损坏了" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "未发现软件包 %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "本程序目前不支持“%s”版本系统" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "软件包文件:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "软件包缓存区是为其它架构的硬件构建的" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "缓存尚未同步,无法交差引证(x-ref)一个软件包文件" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "依赖" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "被锁定的软件包:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "预依赖" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(没有找到)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "建议" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " 已安装:" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "推荐" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 候选软件包:" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "冲突" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(无)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "替换" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " 软件包锁:" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "废弃" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " 版本列表:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "破坏" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "增强" + +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "重要" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "必需" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "标准" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "可选" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "额外" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s,用于 %s 构架,编译于 %s %s\n" +msgid "Index file type '%s' is not supported" +msgstr "不支持索引文件类型“%s”" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"用法: apt-cache [选项] 命令\n" -"    apt-cache [选项] add 文件1 [文件2 ...]\n" -"    apt-cache [选项] showpkg 软件包1 [软件包2 ...]\n" -"    apt-cache [选项] showsrc 软件包1 [软件包2 ...]\n" -"\n" -"apt-cache 是一个底层的工具,我们用它来操纵 APT 的二进制\n" -"缓存文件,也用来在那些文件中查询相关信息\n" -"\n" -"命令:\n" -" add - 向源缓存加入一个软件包文件\n" -" gencaches - 同时生成软件包和源代码包的缓存\n" -" showpkg - 显示某个软件包的全面信息\n" -" showsrc - 显示源文件的各项记录\n" -" stats - 显示基本的统计信息\n" -" dump - 简要显示整个缓存文件的内容\n" -" dumpavail - 把所有有效的包文件列表打印到标准输出\n" -" unmet - 显示所有未满足的依赖关系\n" -" search - 根据正则表达式搜索软件包列表\n" -" show - 以便于阅读的格式介绍该软件包\n" -" showauto - 显示自动安装的软件包的列表\n" -" depends - 显示该软件包的依赖关系信息\n" -" rdepends - 显示所有依赖于该软件包的软件包名字\n" -" pkgnames - 列出所有软件包的名字\n" -" dotty - 生成可用 GraphViz 处理的软件包关系图\n" -" xvcg - 生成可用 xvcg 处理的软件包的关系图\n" -" policy - 显示软件包的安装设置状态\n" -"\n" -"选项:\n" -" -h 本帮助文档。\n" -" -p=? 软件包的缓存。\n" -" -s=? 源代码包的缓存。\n" -" -q 关闭进度显示。\n" -" -i 仅为 unmet 命令显示重要的依赖关系。\n" -" -c=? 读取指定配置文件\n" -" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" -"若要了解更多信息,您还可以查阅 apt-cache(8) 和 apt.conf(5) 参考手册。\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "请给这张盘片起个名字,比如“Debian 5.0.3 Disk 1”" - -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "请把盘片插入驱动器再按回车键" - -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "无法将 %s 挂载到 %s" +msgid "Regex compilation error - %s" +msgstr "编译正则表达式时出错 - %s" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "软件包暂存区使用的是不兼容的版本控制系统" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -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:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "处理 %s (FindPkg)时出错" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "参数没有成对" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "哇,软件包数量超出了本 APT 的处理能力。" -#: cmdline/apt-config.cc:89 -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 "" -"用法:apt-config [选项] 命令\n" -"\n" -"apt-config 是一个用于读取APT 配置文件的简单工具\n" -"\n" -"命令:\n" -" shell - Shell 模式\n" -" dump - 显示配置文件\n" -"\n" -"选项:\n" -" -h 本帮助文本。\n" -" -c=? 读取指定的配置文件\n" -" -o=? 设置任意指定的配置选项,例如:-o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "哇,软件包版本数量超出了本 APT 的处理能力。" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "哇,软件包说明数量超出了本 APT 的处理能力。" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "哇,依赖关系数量超出了本 APT 的处理能力。" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "当处理文件依赖关系时,无法找到软件包 %s %s" -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "选择 %s 作为源代码包而非 %s\n" +msgid "Couldn't stat source package list %s" +msgstr "无法获取源软件包列表 %s 的状态" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "忽略不可用的 %2$s 软件包的 %1$s 版" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "正在读取软件包列表" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "无法找到软件包 %s" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "正在收集文件所提供的软件包" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s 被设置为手动安装。\n" +msgid "Unable to write to %s" +msgstr "无法写入 %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s 被设置为手动安装。\n" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "无法读取或写入软件源缓存" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "内部错误,问题解决工具坏事了" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "无法锁定下载目录" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "要下载源代码,必须指定至少一个对应的软件包" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to find a source package for %s" -msgstr "无法找到与 %s 对应的源代码包" +msgid "rename failed, %s (%s -> %s)." +msgstr "无法重命名文件,%s (%s -> %s)。" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash 校验和不符" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "大小不符" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "无效的操作 %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"提示:%s 的打包工作被维护于以下位置的 %s 版本控制系统中:\n" -"%s\n" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "无法解析软件包仓库 Release 文件 %s" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "以下 ID 的密钥没有可用的公钥:\n" + +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"请使用:\n" -"bzr get %s\n" -"获得该软件包的最近更新(可能尚未正式发布)。\n" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "忽略已下载过的文件“%s”\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "冲突的发行版:%s (期望 %s 但得到 %s)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "无法获知您在 %s 上的可用空间" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"校验签名出错。此仓库未被更新,仍然使用以前的索引文件。GPG 错误:%s: %s\n" -#: cmdline/apt-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "You don't have enough free space in %s" -msgstr "您在 %s 上没有足够的可用空间" +msgid "GPG error: %s: %s" +msgstr "GPG 错误:%s: %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:891 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "需要下载 %sB/%sB 的源代码包。\n" +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 软件包的文件。在这种情况下可能需要您手动修正这个软件" +"包。(缘于架构缺失)" -#. 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:896 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "需要下载 %sB 的源代码包。\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Fetch source %s\n" -msgstr "下载源代码 %s\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "软件包的索引文件已损坏。找不到对应软件包 %s 的 Filename: 字段。" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "有一些包文件无法下载。" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "软件提供者数据块内 %s 没有包含指纹信息" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "下载完毕,目前是“仅下载”模式" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "软件包列表的目录 %spartial 缺失。" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "忽略已经被解包到 %s 目录的源代码包\n" +msgid "Archives directory %spartial is missing." +msgstr "仓库目录 %spartial 确实。" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "运行解包的命令“%s”出错。\n" +msgid "Unable to lock directory %s" +msgstr "无法对目录 %s 加锁" -#: cmdline/apt-get.cc:963 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "请检查是否安装了“dpkg-dev”软件包。\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "正在下载第 %li 个文件,共 %li 个(还剩 %s 个)" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "执行构造软件包命令“%s”失败。\n" +msgid "Retrieving file %li of %li" +msgstr "正在下载第 %li 个文件,共 %li 个" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "子进程出错" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "无法下载 %s %s\n" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "要检查生成软件包的构建依赖关系,必须指定至少一个软件包" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"有一些索引文件不能下载,它们可能被忽略了,也可能转而使用了旧的索引文件。" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "您必须在您的 sources.list 写入一些“软件源”的 URI" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "无法获得 %s 的构建依赖关系信息" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "首选项文件 %s 中发现有无效的记录,无 Package 字段头" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr " %s 没有构建依赖关系信息。\n" +msgid "Did not understand pin type %s" +msgstr "无法识别锁定的类型 %s" -#: cmdline/apt-get.cc:1271 -#, 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 依赖关系" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "没有为版本锁定指定优先级(或为零)" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 #, 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:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"无法立即对 %s 进行配置。请查看 man 5 apt.conf 中的 APT::Immediate-Configure " +"(%d)" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "无法打开文件 %s" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"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 "" -"由于无法找到符合要求的软件包 %3$s 的可用版本,因此不能满足 %2$s 所要求的 " -"%1$s 依赖关系" +"由于这次安装存在着一个 Conflicts/Pre-Depends 循环,因而需要暂时删除一个必不可" +"少的软件包 %s。通常并不建议这样做,但是如果您确实希望如此,可以打开 APT::" +"Force-LoopBreak 选项。" -#: cmdline/apt-get.cc:1357 -#, 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 依赖关系" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "源列表 %2$s 的第 %1$u 行太长了。" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "正在卸载 CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s" +msgid "Using CD-ROM mount point %s\n" +msgstr "现把 %s 作为了 CD-ROM 的挂载点\n" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "等待插入盘片……\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "正在挂载 CD-ROM 文件系统……\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "正在鉴别... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "不能满足软件包 %s 所要求的构建依赖关系。" +msgid "Stored label: %s\n" +msgstr "已归档文件的标签:%s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "无法处理构建依赖关系" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "正在盘片中查找索引文件...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "正在连接 %s (%s)" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"找到了 %zu 个软件包索引、%zu 个源代码包索引、%zu 个翻译索引和 %zu 个数字签" +"名\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "支持的模块:" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"无法确定任何包文件的位置,可能这不是一张 Debian 盘片或者是选择了错误的硬件构" +"架。" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "找到标签 '%s'\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "这不是一个有效的名字,请重试。\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format 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 "" -"用法: apt-get [选项] 命令\n" -"    apt-get [选项] install|remove 软件包1 [软件包2 ...]\n" -"    apt-get [选项] source 软件包1 [软件包2 ...]\n" -"\n" -"apt-get 提供了一个用于下载和安装软件包的简易命令行界面。\n" -"最常用命令是 update 和 install。\n" -"\n" -"命令:\n" -" update - 取回更新的软件包列表信息\n" -" upgrade - 进行一次升级\n" -" install - 安装新的软件包(注:软件包名称是 libc6 而非 libc6.deb)\n" -" remove - 卸载软件包\n" -" autoremove - 卸载所有自动安装且不再使用的软件包\n" -" purge - 卸载并清除软件包的配置\n" -" source - 下载源码包文件\n" -" build-dep - 为源码包配置所需的编译依赖关系\n" -" dist-upgrade - 发布版升级,见 apt-get(8)\n" -" dselect-upgrade - 根据 dselect 的选择来进行升级\n" -" clean - 删除所有已下载的包文件\n" -" autoclean - 删除老版本的已下载的包文件\n" -" check - 核对以确认系统的依赖关系的完整性\n" -" markauto - 标记指定的软件包为自动安装\n" -" unmarkauto - 标记指定的软件包为手动安装\n" -"\n" -"选项:\n" -" -h 本帮助文档。\n" -" -q 让输出可作为日志 - 不显示进度\n" -" -qq 除了错误外,什么都不输出\n" -" -d 仅仅下载 - 【不】安装或解开包文件\n" -" -s 不作实际操作。只是依次模拟执行命令\n" -" -y 对所有询问都回答是(Yes),同时不作任何提示\n" -" -f 当出现破损的依赖关系时,程序将尝试修正系统\n" -" -m 当有包文件无法找到时,程序仍尝试继续执行\n" -" -u 显示已升级的软件包列表\n" -" -b 在下载完源码包后,编译生成相应的软件包\n" -" -V 显示详尽的版本号\n" -" -c=? 读取指定配置文件\n" -" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" -"请查阅 apt-get(8)、sources.list(5) 和 apt.conf(5)的参考手册\n" -"以获取更多信息和选项。\n" -" 本 APT 具有超级牛力。\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "要下载源代码,必须指定至少一个对应的软件包" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" - -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"This disc is called: \n" +"'%s'\n" msgstr "" +"这张盘片现在的名字是:\n" +"“%s”\n" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "但是它还没有被安装" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s 被设置为手动安装。\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s 被设置为手动安装。\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "正在复制软件包列表……" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s 已经是最新的版本了。\n" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "正在写入新的源列表\n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s 已经是最新的版本了。\n" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "对应于该盘片的软件源设置项是:\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "等待子进程 %s 的退出,但是它并不存在" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s 已设置为手动安装。\n" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "无法打开 %s" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" - -#: cmdline/apt-mark.cc:392 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "软件包 %s 需要重新安装,但是我无法找到相应的安装文件。" -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"错误,pkgProblemResolver::Resolve 发生故障,这可能是有软件包被要求保持现状的" +"缘故。" -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "无法读取盘片数据库 %s" - -#: 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" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -"请使用 apt-cdrom,通过它就可以让 APT 能识别该盘片。apt-get upgdate 不能被用来" -"加入新的盘片。" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "错误的 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 的 CD-ROM,它可能正在使用中。" - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "找不到盘片。" +"无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关" +"系。" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "无法找到该文件" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "正在分析软件包的依赖关系树" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "无法读取状态" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "候选版本" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "无法设置文件的修改日期" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "生成依赖关系" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "无效的 URI,本地的 URI 不能以 // 开头" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "正在读取状态信息" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "正在登录" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "无法打开状态文件 %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "无法获知对方主机名" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "无法写入临时状态文件 %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "无法获知本地主机名" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "无法解析软件包文件 %s (1)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "服务器拒绝了我们的连接,响应信息为:%s" +msgid "Unable to parse package file %s (2)" +msgstr "无法解析软件包文件 %s (2)" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 指令出错,服务器响应信息为:%s" +msgid "Release '%s' for '%s' was not found" +msgstr "未找到“%2$s”的“%1$s”发布版本" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 指令出错,服务器响应信息为:%s" +msgid "Version '%s' for '%s' was not found" +msgstr "未找到“%2$s”的“%1$s”版本" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"您指定了代理服务器,但是没有登陆脚本,Acquire::ftp::ProxyLogin 设置为空。" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "未发现软件包 %s" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "登录脚本命令“%s”出错,服务器响应信息为:%s" +msgid "Couldn't find task '%s'" +msgstr "无法找到任务 %s" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 指令出错,服务器响应信息为:%s" +msgid "Couldn't find any package by regex '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "连接超时" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "服务器关闭了连接" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "无法从完全虚拟的软件包 %s 中选择版本" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "读错误" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "因为软件包 %s 没有已安装或候选的版本,无法进行选择" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "回应超出了缓存区大小。" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "因为软件包 %s 是完全的虚拟软件包,无法选择它的最新版" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "协议有误" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "因为软件包 %s 没有候选版本,无法进行选择" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "写出错" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "因为软件包 %s 没有安装,无法选择它的已安装版本" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "无法创建套接字" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "无法解析软件包仓库 Release 文件 %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "无法连接上数据套接字,连接超时" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内无组件章节信息" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "失败" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内无哈希条目" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "无法连接被动模式的套接字。" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内 Valid-Until 条目无效" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo 无法得到监听套接字" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内 Date 条目无效" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "无法绑定套接字" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "无法在套接字上监听" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 无法解析)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "无法确定套接字的名字" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 太短)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "无法发出 PORT 指令" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 不是一个任务)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "无法识别的地址族 %u (AF_*)" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 没有键)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT 指令出错,服务器响应信息为:%s" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 键 %4$s 没有值)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "数据套接字连接超时" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行的格式有误(URI)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "无法接受连接" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版)" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "把文件加入哈希表时出错" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "无法获取文件,服务器响应信息为“%s”" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(独立发行版)" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "数据套接字超时" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版解析)" -#: methods/ftp.cc:935 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "数据传送出错,服务器响应信息为“%s”" +msgid "Opening %s" +msgstr "正在打开 %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "查询" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "在源列表 %2$s 中第 %1$u 行的格式有误(类型)" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "无法调用 " +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" -#: methods/connect.cc:76 +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" + +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Connecting to %s (%s)" -msgstr "正在连接 %s (%s)" +msgid "Installing %s" +msgstr "正在安装 %s" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Configuring %s" +msgstr "正在配置 %s" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "无法为 %s 创建套接字(f=%u t=%u p=%u)" +msgid "Removing %s" +msgstr "正在删除 %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "无法发起与 %s:%s (%s) 的连接" +msgid "Completely removing %s" +msgstr "完全删除 %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "无法连接上 %s:%s (%s),连接超时" +msgid "Noting disappearance of %s" +msgstr "注意到 %s 已经消失" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "无法连接上 %s:%s (%s)。" +msgid "Running post-installation trigger %s" +msgstr "执行安装后执行的触发器 %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Connecting to %s" -msgstr "正在连接 %s" +msgid "Directory '%s' missing" +msgstr "目录 %s 缺失" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Could not resolve '%s'" -msgstr "无法解析域名“%s”" +msgid "Could not open file '%s'" +msgstr "无法打开文件 %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "暂时不能解析域名“%s”" +msgid "Preparing %s" +msgstr "正在准备 %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "正在解压缩 %s" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" +msgid "Preparing to configure %s" +msgstr "正在准备配置 %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "不能连接到 %s:%s:" +msgid "Installed %s" +msgstr "已安装 %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "内部错误:签名正确无误,但是无法确认密钥指纹?!" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "正在准备 %s 的删除操作" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "至少发现一个无效的签名。" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "已删除 %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "无法运行 gpgv 以验证签名(您安装了 gpgv 吗?)" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "正在准备完全删除 %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Completely removed %s" +msgstr "完全删除了 %s" + +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "运行 gpgv 时发生未知错误" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "无法写入 %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "下列签名无效:\n" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "由于没有公钥,无法验证下列签名:\n" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "等待子进程 %s 的退出,但是它并不存在" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "写入文件出错" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "由于已经达到 MaxReports 限制,没有写入 apport 报告。" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "从服务器读取数据时出错,对方关闭了连接" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "依赖问题 - 保持未配置" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "从服务器读取数据出错" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "因为错误消息指示这是由于上一个问题导致的错误,没有写入 apport 报告。" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "写入文件出错" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select 调用出错" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "因为错误消息指示这是由于内存不足,没有写入 apport 报告。" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "连接超时" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "写输出文件时出错" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "因为错误消息指示这是一个 dpkg I/O 错误,没有写入 apport 报告。" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "正在等待报头" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "无法锁定管理目录(%s),是否有其他进程正占用它?" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "错误的报头行" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "无法对状态列表目录加锁(%s),请查看您是否正以 root 用户运行?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg 被中断,您必须手工运行 %s 解决此问题。" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "该 HTTP 服务器发送了一个无效的应答报头" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "未锁定" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "该 HTTP 服务器发送了一个无效的 Content-Length 报头" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li天 %li小时 %li分 %li秒" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "该 HTTP 服务器发送了一个无效的 Content-Range 报头" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li小时 %li分 %li秒" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "该 HTTP 服务器的 range 支持不正常" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li分 %li秒" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "无法识别的日期格式" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li秒" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "错误的报头数据" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "找不到您选则的 %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "连接失败" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "由于文件系统为只读,因而无法使用文件锁 %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "内部错误" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "无法打开锁文件 %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "正在对升级进行计算... " +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "无法在 nfs 文件系统上使用文件锁 %s" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "内部错误,全部升级工具坏事了" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "无法获得锁 %s" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "完成" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "正在更正依赖关系..." +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "子进程 %s 发生了段错误" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 失败。" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "子进程 %s 收到信号 %u。" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "无法更正依赖关系" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "子进程 %s 返回了一个错误号 (%u)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "无法最小化要升级的软件包集合" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "子进程 %s 异常退出" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 完成" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "写出错" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "您也许需要运行“apt-get -f install”来修正上面的错误。" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "关闭 gzip %s 文件出错" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "不能满足依赖关系。不妨试一下 -f 选项。" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "无法打开文件 %s" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "无法打开文件描述符 %d" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [已安装]" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "无法创建子进程的 IPC 管道" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [已安装]" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "无法执行压缩程序" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "读错误" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [已安装]" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "读取文件出错,还剩 %lu 字节没有读出" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [已安装]" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "写入文件出错,还剩 %lu 字节没有保存" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" - -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "下列软件包有未满足的依赖关系:" +msgid "Problem closing the file %s" +msgstr "关闭文件 %s 出错" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "but %s is installed" -msgstr "但是 %s 已经安装" +msgid "Problem renaming the file %s to %s" +msgstr "重命名文件 %s 为 %s 出错" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "but %s is to be installed" -msgstr "但是 %s 正要被安装" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "但无法安装它" +msgid "Problem unlinking the file %s" +msgstr "用 unlink 删除文件 %s 出错" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "但是它是虚拟软件包" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "同步文件出错" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "但是它还没有被安装" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... 有错误!" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "但是它将不会被安装" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... 完成" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr " 或" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "下列【新】软件包将被安装:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 完成" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "下列软件包将被【卸载】:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "无法 mmap 一个空文件" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "下列软件包的版本将保持不变:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "无法为复制文件描述符 %i" -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "下列软件包将被升级:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "无法 mmap %lu 字节的数据" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "下列软件包将被【降级】:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "无法关闭 mmap" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "下列被要求保持版本不变的软件包将被改变:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "无法同步 mmap " -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "%s (due to %s) " -msgstr "%s (是由于 %s) " +msgid "Couldn't make mmap of %lu bytes" +msgstr "无法 mmap %lu 字节的数据" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "无法截断文件" + +#: apt-pkg/contrib/mmap.cc:341 +#, c-format msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"【警告】:下列基础软件包将被卸载。\n" -"请勿尝试,除非您确实知道您在做什么!" +"动态 MMap 没有空间了。请增大 APT::Cache-Start 的大小。当前值:%lu。(man 5 " +"apt.conf)" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "升级了 %lu 个软件包,新安装了 %lu 个软件包," +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "无法增加 MMap 的大小,因为已经达到 %lu 字节的限制。" + +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "无法增加 MMap 大小,因为用户已禁用自动增加。" -#: apt-private/private-output.cc:698 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu reinstalled, " -msgstr "重新安装了 %lu 个软件包," +msgid "Unable to stat the mount point %s" +msgstr "无法读取文件系统挂载点 %s 的状态" + +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "无法读取盘片的状态" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu downgraded, " -msgstr "降级了 %lu 个软件包," +msgid "Unrecognized type abbreviation: '%c'" +msgstr "无法识别的类型缩写:“%c”" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "要卸载 %lu 个软件包,有 %lu 个软件包未被升级。\n" +msgid "Opening configuration file %s" +msgstr "正在打开配置文件 %s" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "有 %lu 个软件包没有被完全安装或卸载。\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "语法错误 %s:%u:配置小节没有以名字开头" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "语法错误 %s:%u:标签格式有误" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "语法错误 %s:%u:配置值后有多余的无意义数据" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "语法错误 %s:%u:只能在顶层配置文件中使用指示" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "语法错误 %s:%u:太多的嵌套 include 命令" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "Regex compilation error - %s" -msgstr "编译正则表达式时出错 - %s" +msgid "Syntax error %s:%u: Included from here" +msgstr "语法错误 %s:%u:Included from here" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr " update 命令不需要参数" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "语法错误 %s:%u:不支持的指令“%s”" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:900 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "语法错误 %s:%u:clean 指令需要一个选项树作为参数" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "语法错误 %s:%u:文件尾部有多余的无意义的数据" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "%s 中没有安装密钥环。" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "内部错误,InstallPackages 被用在了无法安装的软件包上!" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "未知的命令行选项“%c” [来自 %s]" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "有软件包需要被卸载,但是卸载动作被程序设置所禁止。" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "无法识别命令行选项 %s" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "内部错误,Ordering 未能完成" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "命令行选项 %s 不是布尔值" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "怪了……文件大小不符,请发信给 apt@packages.debian.org 吧" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "需要下载 %sB/%sB 的软件包。\n" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "选项 %s:配置项后必须包含有形如“=<变量>”的具体指定" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "需要下载 %sB 的软件包。\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "选项 %s 要求有一个整数作为参数,而不是“%s”" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "解压缩后会消耗掉 %sB 的额外空间。\n" +msgid "Option '%s' is too long" +msgstr "选项“%s”太长" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "解压缩后将会空出 %sB 的空间。\n" +msgid "Sense %s is not understood, try true or false." +msgstr "不能识别参数 %s,请用 true 或 false" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %s." -msgstr "您在 %s 上没有足够的可用空间。" +msgid "Invalid operation %s" +msgstr "无效的操作 %s" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "版本为 %2$s 的软件包 %1$s 有未满足的依赖关系:\n" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "虽然您指定了仅执行常规操作,但这不是个常规操作。" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "软件包名称总数:" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "是,按我说的做!" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "全部软件包结构:" -#: apt-private/private-install.cc:221 -#, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"您的操作会导致潜在的危害。\n" -"若还想继续的话,就输入下面的短句“%s”\n" -" ?] " +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " 普通软件包:" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "中止执行。" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " 完全虚拟软件包:" -#: apt-private/private-install.cc:242 -msgid "Do you want to continue?" -msgstr "您希望继续执行吗?" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " 单虚拟软件包:" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "有一些文件无法下载" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " 混合虚拟软件包:" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项" -"再试试?" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " 缺失:" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "目前还不支持 --fix-missing 和介质交换" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "按版本共计:" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "无法更正缺少的软件包。" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "按不同的说明共计:" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "中止安装。" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "按依赖关系共计:" -#: apt-private/private-install.cc:365 -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] "以下软件包因为文件已被其他软件包覆盖而消失:" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "按版本/文件关系共计:" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "注意:这是自动被 dpkg 有意完成的。" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "按说明/文件关系共计:" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "我们不应该进行删除,无法启动自动删除器" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "提供映射共计:" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "似乎自动卸载工具损坏了一些软件,这不应该发生。请向 apt 提交错误报告。" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Glob 字串共计:" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "下列信息可能会对解决问题有所帮助:" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "依赖关系版本名所占空间共计:" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "内部错误,自动卸载工具坏事了" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Slack 空间共计:" -#: apt-private/private-install.cc:512 -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] "下列软件包是自动安装的并且现在不需要了:" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "总占用空间:" -#: apt-private/private-install.cc:516 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, 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" +msgid "Package file %s is out of sync." +msgstr "软件包文件 %s 尚未同步。" -#: apt-private/private-install.cc:518 -#, 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-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "没有发现匹配的软件包" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "您必须明确地给出至少一个表达式" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt-get -f install”(也可" -"以指定一个解决办法)。" -#: apt-private/private-install.cc:628 -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 "" -"有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是\n" -"因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n" -"包尚未被创建或是它们已被从新到(Incoming)目录移出。" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "软件包文件:" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "破损的软件包" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "缓存尚未同步,无法交差引证(x-ref)一个软件包文件" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "将会安装下列额外的软件包:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "被锁定的软件包:" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "建议安装的软件包:" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(没有找到)" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "推荐安装的软件包:" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " 已安装:" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "忽略了 %s,它已经被安装而且没有指定要升级。\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " 候选软件包:" -#: apt-private/private-install.cc:819 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "忽略了 %s,它已经被安装而且仅请求了升级。\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(无)" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "不能重新安装 %s,因为无法下载它。\n" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " 软件包锁:" -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s 已经是最新的版本了。\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " 版本列表:" -#: apt-private/private-install.cc:884 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" - -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" - -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "软件包 %s 还未安装,因而不会被卸载\n" - -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "软件包 %s 还未安装,因而不会被卸载\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s,用于 %s 构架,编译于 %s %s\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 +#, fuzzy 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!" +"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 "" -"注意:这只是模拟!\n" -"   apt-get 需要 root 特权进行实际的执行。\n" -"   同时请记住此时并未锁定,所以请勿完全相信当前的情况!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "【警告】:下列软件包不能通过验证!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "忽略了认证警告。\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "有些软件包不能通过验证" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "不经验证就安装这些软件包吗?" +"用法: apt-cache [选项] 命令\n" +"    apt-cache [选项] add 文件1 [文件2 ...]\n" +"    apt-cache [选项] showpkg 软件包1 [软件包2 ...]\n" +"    apt-cache [选项] showsrc 软件包1 [软件包2 ...]\n" +"\n" +"apt-cache 是一个底层的工具,我们用它来操纵 APT 的二进制\n" +"缓存文件,也用来在那些文件中查询相关信息\n" +"\n" +"命令:\n" +" add - 向源缓存加入一个软件包文件\n" +" gencaches - 同时生成软件包和源代码包的缓存\n" +" showpkg - 显示某个软件包的全面信息\n" +" showsrc - 显示源文件的各项记录\n" +" stats - 显示基本的统计信息\n" +" dump - 简要显示整个缓存文件的内容\n" +" dumpavail - 把所有有效的包文件列表打印到标准输出\n" +" unmet - 显示所有未满足的依赖关系\n" +" search - 根据正则表达式搜索软件包列表\n" +" show - 以便于阅读的格式介绍该软件包\n" +" showauto - 显示自动安装的软件包的列表\n" +" depends - 显示该软件包的依赖关系信息\n" +" rdepends - 显示所有依赖于该软件包的软件包名字\n" +" pkgnames - 列出所有软件包的名字\n" +" dotty - 生成可用 GraphViz 处理的软件包关系图\n" +" xvcg - 生成可用 xvcg 处理的软件包的关系图\n" +" policy - 显示软件包的安装设置状态\n" +"\n" +"选项:\n" +" -h 本帮助文档。\n" +" -p=? 软件包的缓存。\n" +" -s=? 源代码包的缓存。\n" +" -q 关闭进度显示。\n" +" -i 仅为 unmet 命令显示重要的依赖关系。\n" +" -c=? 读取指定配置文件\n" +" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" +"若要了解更多信息,您还可以查阅 apt-cache(8) 和 apt.conf(5) 参考手册。\n" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "无法下载 %s %s\n" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "请给这张盘片起个名字,比如“Debian 5.0.3 Disk 1”" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "无法将 %s 重命名为 %s" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "请把盘片插入驱动器再按回车键" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Failed to mount '%s' to '%s'" +msgstr "无法将 %s 挂载到 %s" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "命中 " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "获取:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "忽略 " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "错误 " - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "下载 %sB,耗时 %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "请对您的盘片套件中的其它盘片重复相同的操作。" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [执行中]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "参数没有成对" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"更换介质:请把标有\n" -"“%s”\n" -"的盘片插入驱动器“%s”再按回车键\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "无法读取 %s" - -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "无法切换工作目录到 %s" +"用法:apt-config [选项] 命令\n" +"\n" +"apt-config 是一个用于读取APT 配置文件的简单工具\n" +"\n" +"命令:\n" +" shell - Shell 模式\n" +" dump - 显示配置文件\n" +"\n" +"选项:\n" +" -h 本帮助文本。\n" +" -c=? 读取指定的配置文件\n" +" -o=? 设置任意指定的配置选项,例如:-o dir::cache=/tmp\n" -#. 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" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "没有找到镜像文件 %s" +msgid "Can not find a package '%s' with version '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "没有找到镜像文件 %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:367 #, c-format -msgid "[Mirror: %s]" -msgstr "[镜像:%s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "无法为子进程创建 IPC 管道" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "连接被永久关闭" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "错误的默认设置!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "按回车键继续。" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "选择 %s 作为源代码包而非 %s\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "您想要删除之前下载的所有 .deb 文件吗?" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "忽略不可用的 %2$s 软件包的 %1$s 版" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "在解包时发生了一些错误。已经安装的软件包" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "无法找到软件包 %s" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "将被配置。这个操作可能会导致出现重复的错误" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s 被设置为手动安装。\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "或一些由于依赖关系不能满足所产生的错误。这个问题不大,只有" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s 被设置为手动安装。\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "这个提示之前的错误消息才值得您注意。请更正它们,然后再次执行 [I]nstall" - -#: dselect/update:30 -msgid "Merging available information" -msgstr "正在合并可用信息" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "把 DropNode 用在了仍在链表中的节点上" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "无法定位哈希表元素!" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "无法分配转移项" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "内部错误,问题解决工具坏事了" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "内部错误,出现在 AddDiversion" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "无法锁定下载目录" -#: apt-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "尝试覆盖一个转移项,%s -> %s 和 %s/%s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "要下载源代码,必须指定至少一个对应的软件包" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "添加了两个转移项 %s-> %s" +msgid "Unable to find a source package for %s" +msgstr "无法找到与 %s 对应的源代码包" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "重复的配置文件 %s/%s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"提示:%s 的打包工作被维护于以下位置的 %s 版本控制系统中:\n" +"%s\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "路径名 %s 太长" +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"请使用:\n" +"bzr get %s\n" +"获得该软件包的最近更新(可能尚未正式发布)。\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s 被解包了不只一次" +msgid "Skipping already downloaded file '%s'\n" +msgstr "忽略已下载过的文件“%s”\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "The directory %s is diverted" -msgstr "目录 %s 已被转移" +msgid "Couldn't determine free space in %s" +msgstr "无法获知您在 %s 上的可用空间" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "该软件包正尝试写入转移对象 %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "该转移路径太长" +msgid "You don't have enough free space in %s" +msgstr "您在 %s 上没有足够的可用空间" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#. 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:891 #, c-format -msgid "Failed to stat %s" -msgstr "无法获得 %s 的状态" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "需要下载 %sB/%sB 的源代码包。\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. 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:896 #, c-format -msgid "Failed to rename %s to %s" -msgstr "无法将 %s 重命名为 %s" +msgid "Need to get %sB of source archives.\n" +msgstr "需要下载 %sB 的源代码包。\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "目录 %s 要被一个非目录的文件替换" +msgid "Fetch source %s\n" +msgstr "下载源代码 %s\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "无法在其散列桶中分配节点" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "有一些包文件无法下载。" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "路径名太长" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "下载完毕,目前是“仅下载”模式" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "用来覆盖的软件包不属于 %s 的任何版本" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "忽略已经被解包到 %s 目录的源代码包\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:962 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "文件 %s/%s 会覆盖属于软件包 %s 中的同名文件" +msgid "Unpack command '%s' failed.\n" +msgstr "运行解包的命令“%s”出错。\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to stat %s" -msgstr "无法读取 %s 的状态" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "请检查是否安装了“dpkg-dev”软件包。\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:991 #, c-format -msgid "Failed to write file %s" -msgstr "无法写入文件 %s" +msgid "Build command '%s' failed.\n" +msgstr "执行构造软件包命令“%s”失败。\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "无法关闭文件 %s" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "子进程出错" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "要检查生成软件包的构建依赖关系,必须指定至少一个软件包" + +#: cmdline/apt-get.cc:1054 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "这不是一个有效的 DEB 包文件,其包内遗漏了“%s”" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "内部错误,无法定位包内文件 %s" +msgid "Unable to get build-dependency information for %s" +msgstr "无法获得 %s 的构建依赖关系信息" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "不能解析的主控文件" +#: cmdline/apt-get.cc:1101 +#, c-format +msgid "%s has no build depends.\n" +msgstr " %s 没有构建依赖关系信息。\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "无效的归档签名" +#: cmdline/apt-get.cc:1271 +#, 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 依赖关系" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "读取归档成员文件头出错" +#: cmdline/apt-get.cc:1289 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Invalid archive member header %s" -msgstr "归档文件中成员文件头 %s 无效" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "归档文件中成员文件头无效" +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"由于无法找到符合要求的软件包 %3$s 的可用版本,因此不能满足 %2$s 所要求的 " +"%1$s 依赖关系" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "归档文件太短" +#: cmdline/apt-get.cc:1357 +#, 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 依赖关系" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "无法读取归档文件的数据头" +#: cmdline/apt-get.cc:1380 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "无法创建管道" +#: cmdline/apt-get.cc:1395 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "不能满足软件包 %s 所要求的构建依赖关系。" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "无法执行 gzip" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "无法处理构建依赖关系" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "包文件已被损坏" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "正在连接 %s (%s)" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar 的校验和不符,文件已损坏" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "支持的模块:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "未知的 TAR 数据头类型 %u,成员 %s" +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"用法: apt-get [选项] 命令\n" +"    apt-get [选项] install|remove 软件包1 [软件包2 ...]\n" +"    apt-get [选项] source 软件包1 [软件包2 ...]\n" +"\n" +"apt-get 提供了一个用于下载和安装软件包的简易命令行界面。\n" +"最常用命令是 update 和 install。\n" +"\n" +"命令:\n" +" update - 取回更新的软件包列表信息\n" +" upgrade - 进行一次升级\n" +" install - 安装新的软件包(注:软件包名称是 libc6 而非 libc6.deb)\n" +" remove - 卸载软件包\n" +" autoremove - 卸载所有自动安装且不再使用的软件包\n" +" purge - 卸载并清除软件包的配置\n" +" source - 下载源码包文件\n" +" build-dep - 为源码包配置所需的编译依赖关系\n" +" dist-upgrade - 发布版升级,见 apt-get(8)\n" +" dselect-upgrade - 根据 dselect 的选择来进行升级\n" +" clean - 删除所有已下载的包文件\n" +" autoclean - 删除老版本的已下载的包文件\n" +" check - 核对以确认系统的依赖关系的完整性\n" +" markauto - 标记指定的软件包为自动安装\n" +" unmarkauto - 标记指定的软件包为手动安装\n" +"\n" +"选项:\n" +" -h 本帮助文档。\n" +" -q 让输出可作为日志 - 不显示进度\n" +" -qq 除了错误外,什么都不输出\n" +" -d 仅仅下载 - 【不】安装或解开包文件\n" +" -s 不作实际操作。只是依次模拟执行命令\n" +" -y 对所有询问都回答是(Yes),同时不作任何提示\n" +" -f 当出现破损的依赖关系时,程序将尝试修正系统\n" +" -m 当有包文件无法找到时,程序仍尝试继续执行\n" +" -u 显示已升级的软件包列表\n" +" -b 在下载完源码包后,编译生成相应的软件包\n" +" -V 显示详尽的版本号\n" +" -c=? 读取指定配置文件\n" +" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" +"请查阅 apt-get(8)、sources.list(5) 和 apt.conf(5)的参考手册\n" +"以获取更多信息和选项。\n" +" 本 APT 具有超级牛力。\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "无法读取 %s 的状态。" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "要下载源代码,必须指定至少一个对应的软件包" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "正在运行 dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "不支持“%s”打包系统" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "无法确定适合的打包系统类型" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "已写入 %i 条记录。\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n" - -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "已写入 %i 条记录,并有 %i 个文件不匹配\n" - -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不匹配\n" - -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "无法找到认证记录:%s" - -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash 校验和不符:%s" - -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "无法找到获取软件包的渠道 %s 所需的驱动程序。" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "请检查是否安装了“dpkg-dev”软件包。\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "但是它还没有被安装" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "获取软件包的渠道 %s 所需的驱动程序没有正常启动。" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s 被设置为手动安装。\n" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "请把标有“%s”的盘片插入驱动器“%s”再按回车键。" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s 被设置为手动安装。\n" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "无法解析或打开软件包的列表或是状态文件。" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s 已经是最新的版本了。\n" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "您可能需要运行 apt-get update 来解决这些问题" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s 已经是最新的版本了。\n" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "无法读取源列表。" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s 已设置为手动安装。\n" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "软件包缓存区是空的" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "无法打开 %s" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "软件包缓存文件损坏了" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "软件包缓存区文件的版本不兼容" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "软件包缓存文件损坏了" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "本程序目前不支持“%s”版本系统" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "软件包缓存区是为其它架构的硬件构建的" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "依赖" +msgid "Unable to read the cdrom database %s" +msgstr "无法读取盘片数据库 %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "预依赖" +#: 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 "" +"请使用 apt-cdrom,通过它就可以让 APT 能识别该盘片。apt-get upgdate 不能被用来" +"加入新的盘片。" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "建议" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "错误的 CD-ROM" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "推荐" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "无法卸载现在挂载于 %s 的 CD-ROM,它可能正在使用中。" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "冲突" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "找不到盘片。" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "替换" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "无法找到该文件" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "废弃" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "无法读取状态" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "破坏" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "无法设置文件的修改日期" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "增强" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "无效的 URI,本地的 URI 不能以 // 开头" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "重要" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "正在登录" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "必需" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "无法获知对方主机名" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "标准" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "无法获知本地主机名" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "可选" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "服务器拒绝了我们的连接,响应信息为:%s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "额外" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER 指令出错,服务器响应信息为:%s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "不支持索引文件类型“%s”" +msgid "PASS failed, server said: %s" +msgstr "PASS 指令出错,服务器响应信息为:%s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "软件包暂存区使用的是不兼容的版本控制系统" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"您指定了代理服务器,但是没有登陆脚本,Acquire::ftp::ProxyLogin 设置为空。" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "处理 %s (FindPkg)时出错" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "登录脚本命令“%s”出错,服务器响应信息为:%s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "哇,软件包数量超出了本 APT 的处理能力。" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE 指令出错,服务器响应信息为:%s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "哇,软件包版本数量超出了本 APT 的处理能力。" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "连接超时" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "哇,软件包说明数量超出了本 APT 的处理能力。" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "服务器关闭了连接" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "哇,依赖关系数量超出了本 APT 的处理能力。" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "回应超出了缓存区大小。" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "当处理文件依赖关系时,无法找到软件包 %s %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "协议有误" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "无法获取源软件包列表 %s 的状态" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "无法创建套接字" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "正在读取软件包列表" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "无法连接上数据套接字,连接超时" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "正在收集文件所提供的软件包" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "失败" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "无法写入 %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "无法连接被动模式的套接字。" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "无法读取或写入软件源缓存" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo 无法得到监听套接字" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "无法绑定套接字" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "无法在套接字上监听" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "无法确定套接字的名字" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "无法发出 PORT 指令" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "无法识别的地址族 %u (AF_*)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:811 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "无法重命名文件,%s (%s -> %s)。" +msgid "EPRT failed, server said: %s" +msgstr "EPRT 指令出错,服务器响应信息为:%s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash 校验和不符" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "数据套接字连接超时" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "大小不符" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "无法接受连接" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "无效的操作 %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "把文件加入哈希表时出错" -#: apt-pkg/acquire-item.cc:1581 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "无法解析软件包仓库 Release 文件 %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "无法获取文件,服务器响应信息为“%s”" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "以下 ID 的密钥没有可用的公钥:\n" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "数据套接字超时" -#: apt-pkg/acquire-item.cc:1677 +#: methods/ftp.cc:935 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Data transfer failed, server said '%s'" +msgstr "数据传送出错,服务器响应信息为“%s”" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "冲突的发行版:%s (期望 %s 但得到 %s)" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "查询" -#: apt-pkg/acquire-item.cc:1729 -#, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"校验签名出错。此仓库未被更新,仍然使用以前的索引文件。GPG 错误:%s: %s\n" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "无法调用 " -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:76 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG 错误:%s: %s" +msgid "Connecting to %s (%s)" +msgstr "正在连接 %s (%s)" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:87 #, 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 软件包的文件。在这种情况下可能需要您手动修正这个软件" -"包。(缘于架构缺失)" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" + +#: 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)" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:100 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "无法发起与 %s:%s (%s) 的连接" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:108 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "软件包的索引文件已损坏。找不到对应软件包 %s 的 Filename: 字段。" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "无法连接上 %s:%s (%s),连接超时" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "软件提供者数据块内 %s 没有包含指纹信息" +msgid "Could not connect to %s:%s (%s)." +msgstr "无法连接上 %s:%s (%s)。" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "List directory %spartial is missing." -msgstr "软件包列表的目录 %spartial 缺失。" +msgid "Connecting to %s" +msgstr "正在连接 %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "仓库目录 %spartial 确实。" +msgid "Could not resolve '%s'" +msgstr "无法解析域名“%s”" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "无法对目录 %s 加锁" +msgid "Temporary failure resolving '%s'" +msgstr "暂时不能解析域名“%s”" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "正在下载第 %li 个文件,共 %li 个(还剩 %s 个)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "正在下载第 %li 个文件,共 %li 个" +msgid "Unable to connect to %s:%s:" +msgstr "不能连接到 %s:%s:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: methods/gpgv.cc:168 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"有一些索引文件不能下载,它们可能被忽略了,也可能转而使用了旧的索引文件。" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "内部错误:签名正确无误,但是无法确认密钥指纹?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "您必须在您的 sources.list 写入一些“软件源”的 URI" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "至少发现一个无效的签名。" -#: apt-pkg/policy.cc:83 +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "无法运行 gpgv 以验证签名(您安装了 gpgv 吗?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "首选项文件 %s 中发现有无效的记录,无 Package 字段头" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "无法识别锁定的类型 %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "运行 gpgv 时发生未知错误" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "没有为版本锁定指定优先级(或为零)" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "下列签名无效:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "由于没有公钥,无法验证下列签名:\n" + +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"无法立即对 %s 进行配置。请查看 man 5 apt.conf 中的 APT::Immediate-Configure " -"(%d)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "无法打开文件 %s" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "写入文件出错" -#: apt-pkg/packagemanager.cc:583 -#, 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 "" -"由于这次安装存在着一个 Conflicts/Pre-Depends 循环,因而需要暂时删除一个必不可" -"少的软件包 %s。通常并不建议这样做,但是如果您确实希望如此,可以打开 APT::" -"Force-LoopBreak 选项。" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "从服务器读取数据时出错,对方关闭了连接" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "源列表 %2$s 的第 %1$u 行太长了。" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "从服务器读取数据出错" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "正在卸载 CD-ROM...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "写入文件出错" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "现把 %s 作为了 CD-ROM 的挂载点\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "select 调用出错" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "等待插入盘片……\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "连接超时" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "正在挂载 CD-ROM 文件系统……\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "写输出文件时出错" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "正在鉴别... " +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "正在等待报头" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "已归档文件的标签:%s\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "错误的报头行" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "正在盘片中查找索引文件...\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "该 HTTP 服务器发送了一个无效的应答报头" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"找到了 %zu 个软件包索引、%zu 个源代码包索引、%zu 个翻译索引和 %zu 个数字签" -"名\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "该 HTTP 服务器发送了一个无效的 Content-Length 报头" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"无法确定任何包文件的位置,可能这不是一张 Debian 盘片或者是选择了错误的硬件构" -"架。" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "该 HTTP 服务器发送了一个无效的 Content-Range 报头" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "找到标签 '%s'\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "该 HTTP 服务器的 range 支持不正常" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "这不是一个有效的名字,请重试。\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "无法识别的日期格式" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"这张盘片现在的名字是:\n" -"“%s”\n" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "错误的报头数据" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "正在复制软件包列表……" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "连接失败" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "正在写入新的源列表\n" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "内部错误" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "对应于该盘片的软件源设置项是:\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "正在对升级进行计算... " -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "软件包 %s 需要重新安装,但是我无法找到相应的安装文件。" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "完成" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"错误,pkgProblemResolver::Resolve 发生故障,这可能是有软件包被要求保持现状的" -"缘故。" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关" -"系。" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "正在分析软件包的依赖关系树" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "候选版本" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "正在更正依赖关系..." -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "生成依赖关系" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " 失败。" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "正在读取状态信息" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "无法更正依赖关系" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "无法打开状态文件 %s" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "无法最小化要升级的软件包集合" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "无法写入临时状态文件 %s" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " 完成" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "无法解析软件包文件 %s (1)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "您也许需要运行“apt-get -f install”来修正上面的错误。" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "无法解析软件包文件 %s (2)" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "不能满足依赖关系。不妨试一下 -f 选项。" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "未找到“%2$s”的“%1$s”发布版本" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "未找到“%2$s”的“%1$s”版本" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [已安装]" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "无法找到任务 %s" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [已安装]" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [已安装]" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "无法从完全虚拟的软件包 %s 中选择版本" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [已安装]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "因为软件包 %s 没有已安装或候选的版本,无法进行选择" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "因为软件包 %s 是完全的虚拟软件包,无法选择它的最新版" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:435 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "因为软件包 %s 没有候选版本,无法进行选择" +msgid "but %s is installed" +msgstr "但是 %s 已经安装" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:437 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "因为软件包 %s 没有安装,无法选择它的已安装版本" +msgid "but %s is to be installed" +msgstr "但是 %s 正要被安装" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "无法解析软件包仓库 Release 文件 %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "但无法安装它" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "软件包仓库 Release 文件 %s 内无组件章节信息" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "但是它是虚拟软件包" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "软件包仓库 Release 文件 %s 内无哈希条目" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "但是它还没有被安装" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "软件包仓库 Release 文件 %s 内 Valid-Until 条目无效" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "但是它将不会被安装" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "软件包仓库 Release 文件 %s 内 Date 条目无效" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " 或" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "下列软件包有未满足的依赖关系:" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 无法解析)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "下列【新】软件包将被安装:" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 太短)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "下列软件包将被【卸载】:" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 不是一个任务)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "下列软件包的版本将保持不变:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 没有键)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "下列软件包将被升级:" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 键 %4$s 没有值)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "下列软件包将被【降级】:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行的格式有误(URI)" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "下列被要求保持版本不变的软件包将被改变:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版)" +msgid "%s (due to %s) " +msgstr "%s (是由于 %s) " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"【警告】:下列基础软件包将被卸载。\n" +"请勿尝试,除非您确实知道您在做什么!" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "升级了 %lu 个软件包,新安装了 %lu 个软件包," -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(独立发行版)" +msgid "%lu reinstalled, " +msgstr "重新安装了 %lu 个软件包," -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:713 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版解析)" +msgid "%lu downgraded, " +msgstr "降级了 %lu 个软件包," -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:715 #, c-format -msgid "Opening %s" -msgstr "正在打开 %s" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "要卸载 %lu 个软件包,有 %lu 个软件包未被升级。\n" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:719 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "在源列表 %2$s 中第 %1$u 行的格式有误(类型)" +msgid "%lu not fully installed or removed.\n" +msgstr "有 %lu 个软件包没有被完全安装或卸载。\n" + +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "正在安装 %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr " update 命令不需要参数" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-update.cc:90 #, c-format -msgid "Configuring %s" -msgstr "正在配置 %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "正在删除 %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 +#: apt-private/private-show.cc:156 #, c-format -msgid "Completely removing %s" -msgstr "完全删除 %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "注意到 %s 已经消失" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "执行安装后执行的触发器 %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "内部错误,InstallPackages 被用在了无法安装的软件包上!" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "目录 %s 缺失" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "有软件包需要被卸载,但是卸载动作被程序设置所禁止。" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "无法打开文件 %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "内部错误,Ordering 未能完成" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "正在准备 %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "怪了……文件大小不符,请发信给 apt@packages.debian.org 吧" -#: apt-pkg/deb/dpkgpm.cc:990 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Unpacking %s" -msgstr "正在解压缩 %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "需要下载 %sB/%sB 的软件包。\n" -#: apt-pkg/deb/dpkgpm.cc:995 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing to configure %s" -msgstr "正在准备配置 %s" +msgid "Need to get %sB of archives.\n" +msgstr "需要下载 %sB 的软件包。\n" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Installed %s" -msgstr "已安装 %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "解压缩后会消耗掉 %sB 的额外空间。\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing for removal of %s" -msgstr "正在准备 %s 的删除操作" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "解压缩后将会空出 %sB 的空间。\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: apt-private/private-install.cc:200 #, c-format -msgid "Removed %s" -msgstr "已删除 %s" +msgid "You don't have enough free space in %s." +msgstr "您在 %s 上没有足够的可用空间。" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "正在准备完全删除 %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "完全删除了 %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "虽然您指定了仅执行常规操作,但这不是个常规操作。" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "是,按我说的做!" + +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"您的操作会导致潜在的危害。\n" +"若还想继续的话,就输入下面的短句“%s”\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "无法写入 %s" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "中止执行。" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "您希望继续执行吗?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "有一些文件无法下载" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项" +"再试试?" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "由于已经达到 MaxReports 限制,没有写入 apport 报告。" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "目前还不支持 --fix-missing 和介质交换" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "依赖问题 - 保持未配置" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "无法更正缺少的软件包。" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "因为错误消息指示这是由于上一个问题导致的错误,没有写入 apport 报告。" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "中止安装。" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" +"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] "以下软件包因为文件已被其他软件包覆盖而消失:" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "因为错误消息指示这是由于内存不足,没有写入 apport 报告。" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "注意:这是自动被 dpkg 有意完成的。" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "我们不应该进行删除,无法启动自动删除器" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "因为错误消息指示这是一个 dpkg I/O 错误,没有写入 apport 报告。" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "似乎自动卸载工具损坏了一些软件,这不应该发生。请向 apt 提交错误报告。" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "下列信息可能会对解决问题有所帮助:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "内部错误,自动卸载工具坏事了" + +#: apt-private/private-install.cc:513 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "无法锁定管理目录(%s),是否有其他进程正占用它?" +"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] "下列软件包是自动安装的并且现在不需要了:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "无法对状态列表目录加锁(%s),请查看您是否正以 root 用户运行?" +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" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "使用'apt-get autoremove'来卸载它们" + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:" + +#: apt-private/private-install.cc:614 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg 被中断,您必须手工运行 %s 解决此问题。" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt-get -f install”(也可" +"以指定一个解决办法)。" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "未锁定" +#: apt-private/private-install.cc:638 +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 "" +"有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是\n" +"因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n" +"包尚未被创建或是它们已被从新到(Incoming)目录移出。" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li天 %li小时 %li分 %li秒" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "破损的软件包" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%li小时 %li分 %li秒" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "将会安装下列额外的软件包:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%li分 %li秒" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "建议安装的软件包:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%li秒" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "推荐安装的软件包:" -#: apt-pkg/contrib/strutl.cc:1236 +#: apt-private/private-install.cc:825 #, c-format -msgid "Selection %s not found" -msgstr "找不到您选则的 %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "忽略了 %s,它已经被安装而且没有指定要升级。\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:829 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "由于文件系统为只读,因而无法使用文件锁 %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "忽略了 %s,它已经被安装而且仅请求了升级。\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:841 #, c-format -msgid "Could not open lock file %s" -msgstr "无法打开锁文件 %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "不能重新安装 %s,因为无法下载它。\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:846 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "无法在 nfs 文件系统上使用文件锁 %s" +msgid "%s is already the newest version.\n" +msgstr "%s 已经是最新的版本了。\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:894 #, c-format -msgid "Could not get lock %s" -msgstr "无法获得锁 %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "软件包 %s 还未安装,因而不会被卸载\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "软件包 %s 还未安装,因而不会被卸载\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" +"注意:这只是模拟!\n" +"   apt-get 需要 root 特权进行实际的执行。\n" +"   同时请记住此时并未锁定,所以请勿完全相信当前的情况!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "子进程 %s 发生了段错误" - -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "子进程 %s 收到信号 %u。" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "【警告】:下列软件包不能通过验证!" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "子进程 %s 返回了一个错误号 (%u)" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "忽略了认证警告。\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "子进程 %s 异常退出" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "有些软件包不能通过验证" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "关闭 gzip %s 文件出错" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "不经验证就安装这些软件包吗?" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "无法打开文件 %s" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "无法将 %s 重命名为 %s" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file descriptor %d" -msgstr "无法打开文件描述符 %d" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "无法创建子进程的 IPC 管道" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "无法执行压缩程序" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "命中 " -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "读取文件出错,还剩 %lu 字节没有读出" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "获取:" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "写入文件出错,还剩 %lu 字节没有保存" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "忽略 " -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "关闭文件 %s 出错" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "错误 " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "重命名文件 %s 为 %s 出错" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "下载 %sB,耗时 %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Problem unlinking the file %s" -msgstr "用 unlink 删除文件 %s 出错" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "同步文件出错" +msgid " [Working]" +msgstr " [执行中]" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... 有错误!" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"更换介质:请把标有\n" +"“%s”\n" +"的盘片插入驱动器“%s”再按回车键\n" -#: apt-pkg/contrib/progress.cc:150 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... 完成" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "No mirror file '%s' found " +msgstr "没有找到镜像文件 %s" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... 完成" +msgid "Can not read mirror file '%s'" +msgstr "没有找到镜像文件 %s" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "无法 mmap 一个空文件" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "没有找到镜像文件 %s" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "无法为复制文件描述符 %i" +msgid "[Mirror: %s]" +msgstr "[镜像:%s]" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "无法为子进程创建 IPC 管道" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "连接被永久关闭" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "错误的默认设置!" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "无法 mmap %lu 字节的数据" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "按回车键继续。" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "无法关闭 mmap" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "您想要删除之前下载的所有 .deb 文件吗?" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "无法同步 mmap " +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "在解包时发生了一些错误。已经安装的软件包" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "无法 mmap %lu 字节的数据" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "将被配置。这个操作可能会导致出现重复的错误" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "无法截断文件" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "或一些由于依赖关系不能满足所产生的错误。这个问题不大,只有" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"动态 MMap 没有空间了。请增大 APT::Cache-Start 的大小。当前值:%lu。(man 5 " -"apt.conf)" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "这个提示之前的错误消息才值得您注意。请更正它们,然后再次执行 [I]nstall" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "无法增加 MMap 的大小,因为已经达到 %lu 字节的限制。" +#: dselect/update:30 +msgid "Merging available information" +msgstr "正在合并可用信息" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "无法增加 MMap 大小,因为用户已禁用自动增加。" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "把 DropNode 用在了仍在链表中的节点上" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "无法读取文件系统挂载点 %s 的状态" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "无法定位哈希表元素!" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "无法读取盘片的状态" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "无法分配转移项" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "无法识别的类型缩写:“%c”" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "内部错误,出现在 AddDiversion" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "正在打开配置文件 %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "尝试覆盖一个转移项,%s -> %s 和 %s/%s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "语法错误 %s:%u:配置小节没有以名字开头" +msgid "Double add of diversion %s -> %s" +msgstr "添加了两个转移项 %s-> %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "语法错误 %s:%u:标签格式有误" +msgid "Duplicate conf file %s/%s" +msgstr "重复的配置文件 %s/%s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "语法错误 %s:%u:配置值后有多余的无意义数据" +msgid "The path %s is too long" +msgstr "路径名 %s 太长" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "语法错误 %s:%u:只能在顶层配置文件中使用指示" +msgid "Unpacking %s more than once" +msgstr "%s 被解包了不只一次" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "语法错误 %s:%u:太多的嵌套 include 命令" +msgid "The directory %s is diverted" +msgstr "目录 %s 已被转移" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "语法错误 %s:%u:Included from here" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "该软件包正尝试写入转移对象 %s/%s" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "语法错误 %s:%u:不支持的指令“%s”" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "该转移路径太长" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "语法错误 %s:%u:clean 指令需要一个选项树作为参数" +msgid "Failed to stat %s" +msgstr "无法获得 %s 的状态" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "语法错误 %s:%u:文件尾部有多余的无意义的数据" +msgid "Failed to rename %s to %s" +msgstr "无法将 %s 重命名为 %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:249 #, c-format -msgid "No keyring installed in %s." -msgstr "%s 中没有安装密钥环。" +msgid "The directory %s is being replaced by a non-directory" +msgstr "目录 %s 要被一个非目录的文件替换" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "无法在其散列桶中分配节点" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "路径名太长" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "未知的命令行选项“%c” [来自 %s]" +msgid "Overwrite package match with no version for %s" +msgstr "用来覆盖的软件包不属于 %s 的任何版本" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not understood" -msgstr "无法识别命令行选项 %s" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "文件 %s/%s 会覆盖属于软件包 %s 中的同名文件" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "命令行选项 %s 不是布尔值" +msgid "Unable to stat %s" +msgstr "无法读取 %s 的状态" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s requires an argument." -msgstr "选项 %s 要求有一个参数" +msgid "Failed to write file %s" +msgstr "无法写入文件 %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "选项 %s:配置项后必须包含有形如“=<变量>”的具体指定" +msgid "Failed to close file %s" +msgstr "无法关闭文件 %s" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "选项 %s 要求有一个整数作为参数,而不是“%s”" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "这不是一个有效的 DEB 包文件,其包内遗漏了“%s”" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "选项“%s”太长" +msgid "Internal error, could not locate member %s" +msgstr "内部错误,无法定位包内文件 %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "不能解析的主控文件" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "无效的归档签名" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "读取归档成员文件头出错" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "不能识别参数 %s,请用 true 或 false" +msgid "Invalid archive member header %s" +msgstr "归档文件中成员文件头 %s 无效" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "归档文件中成员文件头无效" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "归档文件太短" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "无法读取归档文件的数据头" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "无法创建管道" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "无法执行 gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "包文件已被损坏" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar 的校验和不符,文件已损坏" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "无效的操作 %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "未知的 TAR 数据头类型 %u,成员 %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3473,7 +3477,7 @@ msgstr "在计算 MD5 校验和时无法读取数据" msgid "Problem unlinking %s" msgstr "在使用 unlink 删除 %s 时出错" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3526,6 +3530,10 @@ msgstr "" " -c=? 读取指定配置文件\n" " -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "内部错误,全部升级工具坏事了" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s 不是一个有效的 DEB 软件包。" diff --git a/po/zh_TW.po b/po/zh_TW.po index 68dbb1f48..06a07182b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,3120 +8,3124 @@ msgid "" msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-06-10 15:59+0200\n" +"POT-Creation-Date: 2014-07-10 10:53+0200\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet <tetralet@gmail.com>\n" "Language-Team: Debian-user in Chinese [Big5] <debian-chinese-big5@lists." "debian.org>\n" -"Language: \n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: cmdline/apt-cache.cc:149 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "不被支援的索引檔類型 '%s'" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 +#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "套件 %s 版本 %s 未能滿足相依性:\n" +msgid "Unable to read %s" +msgstr "無法讀取 %s" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "套件名稱合計:" +#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 +#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 +#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 +#: methods/mirror.cc:101 methods/mirror.cc:130 +#, c-format +msgid "Unable to change to %s" +msgstr "無法切換至 %s" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "套件名稱合計:" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "無法取得 %s 的狀態。" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " 一般套件:" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " 完全虛擬套件:" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " 單一虛擬套件:" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "不支援的套件包裝系統 '%s'" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " 混合虛擬套件:" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "無法確認合適的套件包裝系統類型" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " 找不到:" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "寫入 %i 筆紀錄。\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "個別版本合計:" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了。\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "個別版本類別合計:" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案不符\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "相依關係合計:" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了,有 %i 個檔案不符\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "版本/檔案關聯合計:" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "類別/檔案關聯合計:" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash Sum 不符" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "提供者對應合計:" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "找不到安裝方式的驅動程式 %s。" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "所有字串合計:" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "相依版本空間合計:" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "安裝方式 %s 沒有正確啟動" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "間暇空間合計:" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "請把標籤為 '%s' 的光碟放入 '%s' 裝置中,然後按下 [Enter] 鍵。" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "統計後的空間合計:" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "無法分析或開啟套件清單或狀況檔。" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "套件檔 %s 未同步。" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "您也許得執行 apt-get update 以修正這些問題" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "未找到套件" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "無法讀取來源列表。" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "您必須明確得給定一個樣式" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "清空套件快取" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "套件快取檔損壞" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "套件快取檔版本不符" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "套件快取檔損壞" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to locate package %s" -msgstr "找不到套件 %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "本 APT 不支援 '%s' 版本系統" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "套件檔:" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "這個套件快取是用於另一種平台的" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "快取資料未同步,無法 x-ref 套件檔" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "相依關係" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "鎖定的套件:" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "預先相依關係" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(未找到)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "建議" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " 已安裝:" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "推薦" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 候選:" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "衝突" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(無)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "取代" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " 套件鎖定:" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "廢棄" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " 版本列表:" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "毀損" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:43 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s 是用於 %s 並在 %s %s 上編譯的\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -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 "" -"用法:apt-cache [選項] 指令\n" -" apt-cache [選項] add 檔案1 [檔案2 ...]\n" -" apt-cache [選項] showpkg 套件1 [套件2 ...]\n" -" apt-cache [選項] showsrc 套件1 [套件2 ...]\n" -"\n" -"apt-cache 是一個低階的工具,可用來操作 APT 的二進制快取檔,也可用來\n" -"查詢那些檔案中的相關訊息\n" -"\n" -"指令:\n" -" add - 把套件檔加入原始碼快取中\n" -" gencaches - 同時產生套件和原始碼的快取\n" -" showpkg - 顯示某單一套件的一般資訊\n" -" showsrc - 顯示原始碼報告\n" -" stats - 顯示一些基本的統計資訊\n" -" dump - 簡要得顯示整個檔案\n" -" dumpavail - 將可用的檔案列印至標準輸出\n" -" unmet - 顯示所有未滿足的相依關係\n" -" search - 根據正規表示式搜索套件列表\n" -" show - 顯示該套件的易於閱讀的報告\n" -" depends - 顯示該套件的原始相依關係的資訊\n" -" rdepends - 顯示所有相依於該套件的套件名稱\n" -" pkgnames - 列出系統中所有套件\n" -" dotty - 產生用於 GraphViz 的套件關係圖\n" -" xvcg - 產生用於 xvcg 的套件的關係圖\n" -" policy - 顯示套件的可安裝版本資訊\n" -"\n" -"選項:\n" -" -h 本幫助訊息。\n" -" -p=? 套件的快取。\n" -" -s=? 原始碼的快取。\n" -" -q 關閉進度顯示。\n" -" -i 僅為 unmet 指令顯示重要的相依關係。\n" -" -c=? 讀取指定的設定檔\n" -" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" -"請參閱 apt-cache(8) 及 apt.conf(5) 參考手冊以取得更多資訊。\n" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "重要" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "請替這張光碟取個名字,像是 'Debian 2.1r1 Disk 1'" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "必要" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "請把光碟放入光碟機,然後按下 [Enter] 鍵" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "標準" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "無法將 %s 更名為 %s" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "次要" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "額外" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "請對您的光碟組中的其它光碟重複相同的操作。" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "不被支援的索引檔類型 '%s'" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "參數並未成對" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#, c-format +msgid "Regex compilation error - %s" +msgstr "編譯正規表示式時發生錯誤 - %s" -#: cmdline/apt-config.cc:89 -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 "" -"用法:apt-config [選項] 指令\n" -"\n" -"apt-config 是一個用於讀取 APT 設定檔的簡單工具\n" -"\n" -"指令:\n" -" shell - Shell 模式\n" -" dump - 顯示設定\n" -"\n" -"選項:\n" -" -h 本幫助訊息。\n" -" -c=? 讀取指定的設定檔\n" -" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "快取使用的是不相容的版本系統" -#: cmdline/apt-get.cc:245 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "無法找到套件 %s" +msgid "Error occurred while processing %s (%s%d)" +msgstr "在處理 %s 時發生錯誤 (FindPkg)" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "無法找到套件 %s" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "哇呀,您已經超過這個 APT 所能處理的套件名稱數量了。" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "無法找到套件 %s" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "哇呀,您已經超過這個 APT 所能處理的版本數量了。" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "無法取得來源套件列表 %s 的狀態" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "哇呀,您已經超過這個 APT 所能處理的說明數量了。" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "哇呀,您已經超過這個 APT 所能處理的相依關係數量了。" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Couldn't find package %s" -msgstr "無法找到套件 %s" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "在計算檔案相依性時找不到套件 %s %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:855 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s 被設定為手動安裝。\n" +msgid "Couldn't stat source package list %s" +msgstr "無法取得來源套件列表 %s 的狀態" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s 被設定為手動安裝。\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "正在讀取套件清單" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "正在收集檔案提供者" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "內部錯誤,問題排除器造成了損壞" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "無法寫入 %s" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "無法鎖定下載目錄" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "在儲存來源快取時 IO 錯誤" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "在取得原始碼時必須至少指定一個套件" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "無法找到 %s 的原始碼套件" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "略過已下載的檔案 '%s'\n" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "無法確認 %s 的未使用空間" +msgid "rename failed, %s (%s -> %s)." +msgstr "無法重新命名,%s (%s -> %s)。" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "在 %s 裡沒有足夠的的未使用空間" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash Sum 不符" -#. 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:891 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "大小不符" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "無效的操作 %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "需要下載 %sB/%sB 的原始套件檔。\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +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:896 +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "無法辨別 Release 檔 %s" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "無法取得以下的密鑰 ID 的公鑰:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "需要下載 %sB 的原始套件檔。\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Fetch source %s\n" -msgstr "取得原始碼 %s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "發行版本衝突:%s(應當是 %s 但卻得到 %s)" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "無法取得某些套件檔。" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:313 -msgid "Download complete and in download only mode" -msgstr "下載完成,且這是『僅下載』模式" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "不解開,因原始碼已解開至 %s\n" +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 套件的某個檔案。這意味著您可能要手動修復這個套件。(因為找不到平" +"台)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "解開指令 '%s' 失敗。\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "這個套件的索引檔損壞了。沒有套件 %s 的 Filename: 欄位。" -#: cmdline/apt-get.cc:991 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "編譯指令 '%s' 失敗。\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "提供者區塊 %s 沒有包含指紋碼" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "子程序失敗" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "找不到清單目錄 %spartial。" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "在檢查編譯相依關係時必須至少指定一個套件" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "找不到套件檔目錄 %spartial。" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "無法鎖定列表目錄" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "正在取得檔案 %li/%li(還有 %s)" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "無法取得 %s 的編譯相依關係資訊" +msgid "Retrieving file %li of %li" +msgstr "正在取得檔案 %li/%li" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s 沒有編譯相依關係。\n" +msgid "Failed to fetch %s %s\n" +msgstr "無法取得 %s,%s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "有一些索引檔不能下載,它們可能被略過了,或是替而使用原有的索引檔。" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "在 sources.list 中必須包含一些 'source' URI" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "個人設定檔中有些不正確資料,沒有以 Package 開頭" + +#: apt-pkg/policy.cc:444 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "無法滿足 %2$s 的相依關係 %1$s:已安裝的套件 %3$s 太新了" +msgid "Did not understand pin type %s" +msgstr "無法分析鎖定類型 %s" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "銷定並沒有優先順序之分(或零)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"無法滿足 %2$s 所要求的 %1$s 相依關係,因為套件 %3$s 沒有版本符合其版本需求" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "無法開啟檔案 %s" + +#: apt-pkg/packagemanager.cc:583 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" +"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 "" +"此安裝因衝突或預先相依關係,需暫時刪除 %s 這個基本套件。這通常不是好主意,但" +"若您執意進行,請設定 APT::Force-LoopBreak 選項。" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "無法滿足 %2$s 的相依關係 %1$s:%3$s" +msgid "Line %u too long in source list %s." +msgstr "來源列表 %2$s 中的第 %1$u 行太長。" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "正在卸載光碟機...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "無法滿足套件 %s 的編譯相依關係。" +msgid "Using CD-ROM mount point %s\n" +msgstr "使用光碟機掛載點 %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "無法處理編譯相依關係" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "正在等待碟片...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "正和 %s (%s) 連線" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "正在掛載光碟機... \n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "已支援模組:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "正在識別..." -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "保存標籤:%s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "正在掃描碟片中的索引檔...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format 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 "" -"用法:apt-get [選項] 指令\n" -" apt-get [選項] install|remove 套件1 [套件2 ...]\n" -" apt-get [選項] source 套件1 [套件2 ...]\n" -"\n" -"apt-get 是一個用來下載和安裝套件的簡易命令列界面。\n" -"最常用指令是 update 和 install。\n" -"\n" -"指令:\n" -" update - 取得新的套件列表\n" -" upgrade - 進行升級\n" -" install - 安裝新套件(套件名稱是 libc6 而不是 libc6.deb)\n" -" remove - 移除套件\n" -" autoremove - 自動移除所有不再使用的套件\n" -" purge - 移除並清除套件\n" -" source - 下載套件原始碼\n" -" build-dep - 為原始碼套件配置編譯相依關係\n" -" dist-upgrade - 發行版本升級,請參閱 apt-get(8)\n" -" dselect-upgrade - 採用 dselect 的選項升級\n" -" clean - 刪除已下載的套件檔\n" -" auto-clean - 刪除已下載但已有新版本的套件檔\n" -" check - 檢查相依關係是否有問題\n" -"\n" -"選項:\n" -" -h 本求助訊息。\n" -" -q 讓輸出可作為記錄檔之用 - 不顯示進度\n" -" -qq 除了錯誤外,不顯示其它資訊\n" -" -d 僅下載 - 【不】安裝或解開套件檔\n" -" -s 不實際進行。只是模擬執行指令\n" -" -y 對所有詢問都回答 Yes,同時不會有任何提示\n" -" -f 嘗試修正系統上損毀的套件相依關係\n" -" -m 當有套件檔無法找到時,仍試著繼續進行\n" -" -u 顯示已升級的套件列表\n" -" -b 在取得套件原始碼後進行編譯\n" -" -V 顯示詳盡的版本號碼\n" -" -c=? 讀取指定的設定檔\n" -" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" -"請參閱 apt-get(8)、sources.list(5) 及 apt.conf(5) 的使用手冊\n" -"以取得更多資訊和選項。\n" -" 該 APT 有著超級牛力。\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "在取得原始碼時必須至少指定一個套件" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "找到了 %zu 個套件索引,%zu 個原始碼索引,%zu 個翻譯索引及 %zu 個簽章\n" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:744 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "但它卻尚未安裝" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s 被設定為手動安裝。\n" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s 被設定為手動安裝。\n" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s 已經是最新版本了。\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "找到標籤 '%s'\n" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s 已經是最新版本了。\n" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "這並不是正確的名稱,請重試。\n" -#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202 -#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "等待 %s 但是它並不存在" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"這個碟片名為:\n" +"'%s'\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s 被設定為手動安裝。\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "正在複製套件清單..." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "無法開啟 %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "正在寫入新的來源列表\n" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "該碟片的來源列表項目為:\n" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/algorithms.cc:265 +#, c-format 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" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\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 "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "套件 %s 需要重新安裝,但找不到它的套件檔。" -#: cmdline/apt.cc:47 +#: apt-pkg/algorithms.cc:1086 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"錯誤,pkgProblemResolver::Resolve 的建立中斷了,這可能肇因於保留 (hold) 套" +"件。" -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "無法讀取光碟片資料庫 %s" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "無法修正問題,您保留 (hold) 了損毀的套件。" -#: 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 "" -"請用 apt-cdrom 來讓 APT 能辨識這張光碟。apt-get update 是不能用來新增光碟的" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "正在重建相依關係" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "不正確的光碟" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "候選版本" -#: methods/cdrom.cc:249 +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "建立相依關係" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "正在讀取狀態資料" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "無法卸載 %s 裡的光碟片,或許它仍在使用中。" +msgid "Failed to open StateFile %s" +msgstr "無法開啟 StateFile %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "找不到磁碟。" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "無法寫入暫存的 StateFile %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "找不到檔案" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "無法辨識套件檔 %s (1)" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "無法取得狀態" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "無法辨識套件檔 %s (2)" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "無法設定修改時間" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "找不到 '%2$s' 的 '%1$s' 發行版" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "不正確的 URI,本機 URI 不應以 // 開頭" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "找不到 '%s' 版的 '%s'" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "登入中" +#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#, c-format +msgid "Unable to locate package %s" +msgstr "找不到套件 %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "無法解析對方主機名稱" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "無法找到主題 %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "無法解析本機名稱" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "無法找到套件 %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "伺服器不接受連線,並回應:%s" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "無法找到套件 %s" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 指令失敗,伺服器回應:%s" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 指令失敗,伺服器回應:%s" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"指定了代理伺服器,但沒有指定登入 script,Acquire::ftp::ProxyLogin 是空的。" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "登入 script 指令 '%s' 失敗,伺服器回應:%s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 指令失敗,伺服器回應:%s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "連線逾時" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "伺服器已關閉連線" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "無法辨別 Release 檔 %s" -#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 -#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 -#: apt-pkg/contrib/fileutl.cc:1492 -msgid "Read error" -msgstr "讀取錯誤" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "在 Release 檔 %s 裡沒有區段" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "回應超過緩衝區長度。" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "在 Release 檔 %s 裡沒有 Hash 項目" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "協定失敗" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "在 Release 檔 %s 裡沒有 Hash 項目" -#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 -#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 -#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 -#: apt-pkg/contrib/fileutl.cc:1639 -msgid "Write error" -msgstr "寫入錯誤" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "在 Release 檔 %s 裡沒有 Hash 項目" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "無法建立 Socket" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(URI 分析)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "無法和 data socket 連線,連線逾時" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" -#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 -msgid "Failed" -msgstr "失敗" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版)" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "無法和 passive socket 連線。" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo 無法取得監聽 socket" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "無法 bind 至 socket" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "無法監聽 socket" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤 (URI)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "無法解析 socket 名稱" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "無法送出 PORT 指令" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(URI 分析)" + +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(絕對發行版)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "未知的地址家族 %u (AF_*)" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT 指令失敗,伺服器回應:%s" +msgid "Opening %s" +msgstr "正在開啟 %s" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Data socket 連線逾時" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "來源列表 %2$s 中的第 %1$u 行的格式錯誤(類型)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "無法接受連線" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "未知的類型 '%1$s',位於在來源列表 %3$s 中的第 %2$u 行" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "有問題的雜湊檔" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "未知的類型 '%1$s',位於在來源列表 %3$s 中的第 %2$u 行" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "無法取得檔案,伺服器回應 '%s'" +msgid "Installing %s" +msgstr "正在安裝 %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Data socket 連線逾時" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "正在設定 %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "資料傳輸失敗,伺服器回應 '%s'" +msgid "Removing %s" +msgstr "正在移除 %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "查詢" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "已完整移除 %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "無法 invoke " +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Connecting to %s (%s)" -msgstr "正和 %s (%s) 連線" +msgid "Running post-installation trigger %s" +msgstr "正在執行安裝後套件後續處理程式 %s" -#: methods/connect.cc:87 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Directory '%s' missing" +msgstr "找不到 '%s' 目錄" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "無法開啟檔案 %s" + +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "無法建立 socket 指向 %s (f=%u t=%u p=%u)" +msgid "Preparing %s" +msgstr "正在準備 %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "無法初始和 %s:%s (%s) 的連線。" +msgid "Unpacking %s" +msgstr "正在解開 %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "無法和 %s:%s (%s) 連線,連線逾時" +msgid "Preparing to configure %s" +msgstr "正在準備設定 %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "無法和 %s:%s (%s) 連線。" +msgid "Installed %s" +msgstr "已安裝 %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Connecting to %s" -msgstr "正連線至 %s" +msgid "Preparing for removal of %s" +msgstr "正在準備移除 %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Could not resolve '%s'" -msgstr "無法解析 '%s'" +msgid "Removed %s" +msgstr "已移除 %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "暫時無法解析 '%s'" +msgid "Preparing to completely remove %s" +msgstr "正在準備完整移除 %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "在解析 '%s:%s' (%i) 時出了怪事" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "已完整移除 %s" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "在解析 '%s:%s' (%i) 時出了怪事" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "無法連線至 %s %s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "內部錯誤:簽章無誤,但卻無法辨識密鑰的指紋碼?!" +msgid "Can not write log (%s)" +msgstr "無法寫入 %s" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "至少發現一個無效的簽章。" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "無法執行 '%s' 來驗證簽章(gpgv 是否安裝了?)" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Waited for %s but it wasn't there" +msgstr "等待 %s 但是它並不存在" + +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "在執行 gpgv 時發生未知的錯誤" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "以下簽名無效:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1638 msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "由於無法取得它們的公鑰,以下簽章無法進行驗證:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "在寫入該檔時發生錯誤" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "在讀取伺服器時發生錯誤,遠端主機已關閉連線" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "在讀取伺服器時發生錯誤" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "在寫入檔案時發生錯誤" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "選擇失敗" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "連線逾時" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "在寫入輸出檔時發生錯誤" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "無法鎖定列表目錄" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "等待標頭" +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "標頭行錯誤" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP 伺服器傳送了一個無效的回覆標頭" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP 伺服器傳送了一個無效的 Content-Length 標頭" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP 伺服器傳送了一個無效的 Content-Range 標頭" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "這個 HTTP 伺服器的範圍支援有問題" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "未知的資料格式" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "選項 %s 找不到" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "錯誤的標頭資料" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "不在唯讀檔案 %s 上使用檔案鎖定" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "連線失敗" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "無法開啟鎖定檔 %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "內部錯誤" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "不在以 nfs 掛載的檔案 %s 上使用檔案鎖定" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "籌備升級中... " +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "無法將 %s 鎖定" -#: apt-private/private-upgrade.cc:30 -#, fuzzy -msgid "Internal error, Upgrade broke stuff" -msgstr "內部錯誤,AllUpgrade 造成了損壞" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-upgrade.cc:32 -msgid "Done" -msgstr "完成" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Sub-process %s received a segmentation fault." +msgstr "子程序 %s 收到一個記憶體錯誤。" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "正在修正相依關係..." +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "子程序 %s 收到一個記憶體錯誤。" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 失敗。" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "子程序 %s 傳回錯誤碼 (%u)" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "無法修正相依關係" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "子程序 %s 不預期得結束" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "無法將升級計劃最小化" +#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 +#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 +#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "寫入錯誤" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 完成" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "在關閉檔案時發生問題" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "您也許得執行 'apt-get -f install' 以修正這些問題。" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "無法開啟檔案 %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "未能滿足相依關係。試試 -f 選項。" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "無法開啟管線給 %s 使用" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "無法建立子程序 IPC" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "【已安裝】" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "無法執行壓縮程式" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr "【已安裝】" +#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 +#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "讀取錯誤" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "讀取,仍有 %lu 未讀但已無空間" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr "【已安裝】" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "寫入,仍有 %lu 待寫入但已沒辨法" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr "【已安裝】" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "在關閉檔案時發生問題" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "在同步檔案時發生問題" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "在刪除檔案時發生問題" -#: apt-private/private-output.cc:352 -msgid "The following packages have unmet dependencies:" -msgstr "下列的套件有未滿足的相依關係:" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "在同步檔案時發生問題" -#: apt-private/private-output.cc:442 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is installed" -msgstr "但 %s 卻已安裝" +msgid "%c%s... Error!" +msgstr "%c%s... 錯誤!" -#: apt-private/private-output.cc:444 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "but %s is to be installed" -msgstr "但 %s 卻將被安裝" - -#: apt-private/private-output.cc:451 -msgid "but it is not installable" -msgstr "但它卻無法安裝" +msgid "%c%s... Done" +msgstr "%c%s... 完成" -#: apt-private/private-output.cc:453 -msgid "but it is a virtual package" -msgstr "但它是虛擬套件" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:456 -msgid "but it is not installed" -msgstr "但它卻尚未安裝" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 完成" -#: apt-private/private-output.cc:456 -msgid "but it is not going to be installed" -msgstr "但它卻將不會被安裝" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "不能 mmap 空白檔案" -#: apt-private/private-output.cc:461 -msgid " or" -msgstr "或" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "無法開啟管線給 %s 使用" -#: apt-private/private-output.cc:490 -msgid "The following NEW packages will be installed:" -msgstr "下列【新】套件將會被安裝:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "無法 mmap 到 %lu 位元組" -#: apt-private/private-output.cc:516 -msgid "The following packages will be REMOVED:" -msgstr "下列套件將會被【移除】:" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "無法開啟 %s" -#: apt-private/private-output.cc:538 -msgid "The following packages have been kept back:" -msgstr "下列套件將會維持其原有版本:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "無法 invoke " -#: apt-private/private-output.cc:559 -msgid "The following packages will be upgraded:" -msgstr "下列套件將會被升級:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "無法 mmap 到 %lu 位元組" -#: apt-private/private-output.cc:580 -msgid "The following packages will be DOWNGRADED:" -msgstr "下列套件將會被【降級】:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "無法截短檔案" -#: apt-private/private-output.cc:600 -msgid "The following held packages will be changed:" -msgstr "下列被保留 (hold) 的套件將會被更改:" +#: 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 "" +"動態 MMap 已用完所有空間。請增加 APT::Cache-Start 的大小。目前大小為:%lu。" +"(man 5 apt.conf)" -#: apt-private/private-output.cc:655 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s(因為 %s)" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/private-output.cc:663 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"【警告】:下列的基本套件都將被移除。\n" -"除非您很清楚您在做什麼,否則請勿輕易嘗試!" -#: apt-private/private-output.cc:694 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "升級 %lu 個,新安裝 %lu 個," +msgid "Unable to stat the mount point %s" +msgstr "無法取得掛載點 %s 的狀態" -#: apt-private/private-output.cc:698 -#, c-format -msgid "%lu reinstalled, " -msgstr "重新安裝 %lu 個," +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "無法取得 CD-ROM 的狀態" -#: apt-private/private-output.cc:700 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "%lu downgraded, " -msgstr "降級 %lu 個," +msgid "Unrecognized type abbreviation: '%c'" +msgstr "無法辨識的縮寫類型:'%c'" -#: apt-private/private-output.cc:702 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "移除 %lu 個,有 %lu 個未被升級。\n" +msgid "Opening configuration file %s" +msgstr "開啟設定檔 %s" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu 個沒有完整得安裝或移除。\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:728 -msgid "[Y/n]" -msgstr "" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:734 -msgid "[y/N]" -msgstr "" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:745 -msgid "Y" -msgstr "" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "語法錯誤 %s:%u:區塊開頭沒有名稱。" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:751 -msgid "N" -msgstr "" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "語法錯誤 %s:%u:標籤格式錯誤" -#: apt-private/private-output.cc:773 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "Regex compilation error - %s" -msgstr "編譯正規表示式時發生錯誤 - %s" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "語法錯誤 %s:%u:數值後有多餘的垃圾" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "update 指令不需任何參數" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "語法錯誤 %s:%u:指令只能於最高層級執行" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "語法錯誤 %s:%u: 太多巢狀引入檔" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Syntax error %s:%u: Included from here" +msgstr "語法錯誤 %s:%u:從此引入" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "語法錯誤 %s:%u:不支援的指令 '%s'" -#: apt-private/private-install.cc:81 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "內部錯誤,在損毀的套件上執行 InstallPackages!" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "語法錯誤 %s:%u:指令只能於最高層級執行" -#: apt-private/private-install.cc:90 -msgid "Packages need to be removed but remove is disabled." -msgstr "有套件需要被移除,但卻被禁止移除。" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "語法錯誤 %s:%u:在檔案結尾有多餘的垃圾" -#: apt-private/private-install.cc:109 -msgid "Internal error, Ordering didn't finish" -msgstr "內部錯誤,排序未能完成" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "放棄安裝。" -#: apt-private/private-install.cc:147 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "怪哉... 檔案大小不符,請發信給 apt@packages.debian.org" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "未知的命令列選項 '%c' [來自 %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 -#: apt-private/private-install.cc:154 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "需要下載 %sB/%sB 的套件檔。\n" +msgid "Command line option %s is not understood" +msgstr "無法理解的命令列選項 %s" -#. 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 -#: apt-private/private-install.cc:159 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "需要下載 %sB 的套件檔。\n" +msgid "Command line option %s is not boolean" +msgstr "命令列選項 %s 不是 boolean 值" -#. 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 -#: apt-private/private-install.cc:166 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "此操作完成之後,會多佔用 %sB 的磁碟空間。\n" +msgid "Option %s requires an argument." +msgstr "需替選項 %s 指定參數。" -#. 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 -#: apt-private/private-install.cc:171 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "此操作完成之後,會空出 %sB 的磁碟空間。\n" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "選項 %s:在指定設定項目時應該有 =<val>。" -#: apt-private/private-install.cc:199 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "You don't have enough free space in %s." -msgstr "在 %s 裡沒有足夠的的未使用空間。" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "選項 %s 的參數應該是數字,而不是 '%s'" -#: apt-private/private-install.cc:209 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "發生了問題,且 -y 並沒有和 --force-yes 搭配使用" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "選項 %s 太長" -#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "雖然指定了 Trivial Only(自動答 NO)選項,但這並不是 trivial 操作。" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "偵測器 %s 無法理解,試試 true 或 false。" -#. 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) -#: apt-private/private-install.cc:219 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "無效的操作 %s" -#: apt-private/private-install.cc:221 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"您所進行的操作可能會帶來危險。\n" -"請輸入 '%s' 這個句子以繼續進行\n" -" ?] " +msgid "Package %s version %s has an unmet dep:\n" +msgstr "套件 %s 版本 %s 未能滿足相依性:\n" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 -msgid "Abort." -msgstr "放棄執行。" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "套件名稱合計:" -#: apt-private/private-install.cc:242 +#: cmdline/apt-cache.cc:279 #, fuzzy -msgid "Do you want to continue?" -msgstr "是否繼續進行 [Y/n]?" +msgid "Total package structures: " +msgstr "套件名稱合計:" -#: apt-private/private-install.cc:312 -msgid "Some files failed to download" -msgstr "有部份檔案無法下載" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " 一般套件:" -#: apt-private/private-install.cc:319 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"有部份套件檔無法取得,試著執行 apt-get update 或者試著加上 --fix-missing 選" -"項?" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " 完全虛擬套件:" -#: apt-private/private-install.cc:323 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "目前尚未支援 --fix-missing 和媒體抽換" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " 單一虛擬套件:" -#: apt-private/private-install.cc:328 -msgid "Unable to correct missing packages." -msgstr "無法修正欠缺的套件。" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " 混合虛擬套件:" -#: apt-private/private-install.cc:329 -msgid "Aborting install." -msgstr "放棄安裝。" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " 找不到:" -#: apt-private/private-install.cc:365 -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] "" -msgstr[1] "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "個別版本合計:" -#: apt-private/private-install.cc:369 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "個別版本類別合計:" -#: apt-private/private-install.cc:390 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "我們沒有計劃要刪除任何東西,無法啟動 AutoRemover" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "相依關係合計:" -#: apt-private/private-install.cc:498 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"嗯,看起來 AutoRemover 弄壞了什麼東西,而這是不該發生的。\n" -"請針對 apt 發佈錯誤回報。" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "版本/檔案關聯合計:" -#. -#. if (Packages == 1) -#. { -#. c1out << std::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.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:501 apt-private/private-install.cc:643 -msgid "The following information may help to resolve the situation:" -msgstr "以下的資訊或許有助於解決當前的情況:" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "類別/檔案關聯合計:" -#: apt-private/private-install.cc:505 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "內部錯誤,AutoRemover 處理失敗" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "提供者對應合計:" -#: apt-private/private-install.cc:512 -#, fuzzy -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] "以下套件是被自動安裝進來的,且已不再會被用到了:" -msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "所有字串合計:" -#: apt-private/private-install.cc:516 -#, fuzzy, 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] "以下套件是被自動安裝進來的,且已不再會被用到了:" -msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "相依版本空間合計:" -#: apt-private/private-install.cc:518 -#, 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-cache.cc:367 +msgid "Total slack space: " +msgstr "間暇空間合計:" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "您也許得執行 'apt-get -f install' 以修正這些問題:" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "統計後的空間合計:" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"未能滿足相依關係。請試著不指定套件來執行 'apt-get -f install'(或採取其它的解" -"決方案)。" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "套件檔 %s 未同步。" -#: apt-private/private-install.cc:628 -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 "" -"有些套件無法安裝。這可能意謂著您的要求難以解決,或是若您使用的是\n" -"unstable 發行版,可能有些必要的套件尚未建立,或是被移出 Incoming 了。" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "未找到套件" -#: apt-private/private-install.cc:649 -msgid "Broken packages" -msgstr "損毀的套件" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "您必須明確得給定一個樣式" -#: apt-private/private-install.cc:702 -msgid "The following extra packages will be installed:" -msgstr "下列的額外套件將被安裝:" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-private/private-install.cc:792 -msgid "Suggested packages:" -msgstr "建議套件:" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "套件檔:" -#: apt-private/private-install.cc:793 -msgid "Recommended packages:" -msgstr "推薦套件:" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "快取資料未同步,無法 x-ref 套件檔" -#: apt-private/private-install.cc:815 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "忽略 %s,它已被安裝且沒有計劃要進行升級。\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "鎖定的套件:" -#: apt-private/private-install.cc:819 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "忽略 %s,它已被安裝且沒有計劃要進行升級。\n" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(未找到)" -#: apt-private/private-install.cc:831 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "無法重新安裝 %s,因為它無法下載。\n" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " 已安裝:" -#: apt-private/private-install.cc:836 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s 已經是最新版本了。\n" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " 候選:" -#: apt-private/private-install.cc:884 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(無)" -#: apt-private/private-install.cc:889 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " 套件鎖定:" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:931 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " 版本列表:" -#: apt-private/private-install.cc:937 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s 是用於 %s 並在 %s %s 上編譯的\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1749 +#, fuzzy 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!" +"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 "" +"用法:apt-cache [選項] 指令\n" +" apt-cache [選項] add 檔案1 [檔案2 ...]\n" +" apt-cache [選項] showpkg 套件1 [套件2 ...]\n" +" apt-cache [選項] showsrc 套件1 [套件2 ...]\n" +"\n" +"apt-cache 是一個低階的工具,可用來操作 APT 的二進制快取檔,也可用來\n" +"查詢那些檔案中的相關訊息\n" +"\n" +"指令:\n" +" add - 把套件檔加入原始碼快取中\n" +" gencaches - 同時產生套件和原始碼的快取\n" +" showpkg - 顯示某單一套件的一般資訊\n" +" showsrc - 顯示原始碼報告\n" +" stats - 顯示一些基本的統計資訊\n" +" dump - 簡要得顯示整個檔案\n" +" dumpavail - 將可用的檔案列印至標準輸出\n" +" unmet - 顯示所有未滿足的相依關係\n" +" search - 根據正規表示式搜索套件列表\n" +" show - 顯示該套件的易於閱讀的報告\n" +" depends - 顯示該套件的原始相依關係的資訊\n" +" rdepends - 顯示所有相依於該套件的套件名稱\n" +" pkgnames - 列出系統中所有套件\n" +" dotty - 產生用於 GraphViz 的套件關係圖\n" +" xvcg - 產生用於 xvcg 的套件的關係圖\n" +" policy - 顯示套件的可安裝版本資訊\n" +"\n" +"選項:\n" +" -h 本幫助訊息。\n" +" -p=? 套件的快取。\n" +" -s=? 原始碼的快取。\n" +" -q 關閉進度顯示。\n" +" -i 僅為 unmet 指令顯示重要的相依關係。\n" +" -c=? 讀取指定的設定檔\n" +" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" +"請參閱 apt-cache(8) 及 apt.conf(5) 參考手冊以取得更多資訊。\n" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "【警告】:無法驗證下列套件!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "忽略了驗證警告。\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "有部份套件無法驗證" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "是否不經驗證就安裝這些套件?" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "請替這張光碟取個名字,像是 'Debian 2.1r1 Disk 1'" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "無法取得 %s,%s\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "請把光碟放入光碟機,然後按下 [Enter] 鍵" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " +msgid "Failed to mount '%s' to '%s'" msgstr "無法將 %s 更名為 %s" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "已有 " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "下載:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "略過 " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "錯誤 " - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "取得 %sB 用了 %s (%sB/s)\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "請對您的光碟組中的其它光碟重複相同的操作。" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [工作中]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "參數並未成對" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"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 "" -"更換媒體:請把以下名稱的光碟\n" -" '%s'\n" -"放入 '%s' 裝置,然後按 [Enter] 鍵\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:471 apt-pkg/clean.cc:40 -#: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 -#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 -#: apt-pkg/contrib/cdromutl.cc:205 -#, c-format -msgid "Unable to read %s" -msgstr "無法讀取 %s" +"用法:apt-config [選項] 指令\n" +"\n" +"apt-config 是一個用於讀取 APT 設定檔的簡單工具\n" +"\n" +"指令:\n" +" shell - Shell 模式\n" +" dump - 顯示設定\n" +"\n" +"選項:\n" +" -h 本幫助訊息。\n" +" -c=? 讀取指定的設定檔\n" +" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46 -#: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497 -#: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201 -#: apt-pkg/contrib/cdromutl.cc:235 -#, c-format -msgid "Unable to change to %s" -msgstr "無法切換至 %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "無法找到套件 %s" -#. 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 "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "無法找到套件 %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "無法開啟檔案 %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "無法找到套件 %s" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "無法開啟檔案 %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "無法取得來源套件列表 %s 的狀態" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:423 #, c-format -msgid "[Mirror: %s]" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "無法和子程序建立 IPC 管線" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "連線突然終止" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "錯誤的預設設定!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "請按 [Enter] 鍵以繼續進行。" - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "您想移除所有先前下載的 .deb 檔嗎?" - -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "在解開套件時發生錯誤。我要準備設定" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "無法找到套件 %s" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "套件已安裝過。這會造成重複錯誤" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s 被設定為手動安裝。\n" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "或是因為沒有相依關係而造成錯誤。那麼這個錯誤是無關緊要的" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s 被設定為手動安裝。\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "以上的訊息相當重要。請修正它們並重新執行安裝[I]" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: dselect/update:30 -msgid "Merging available information" -msgstr "整合現有的資料" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "內部錯誤,問題排除器造成了損壞" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode 在還有連結結點時被呼叫" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "無法鎖定下載目錄" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "找不到雜湊元件!" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "在取得原始碼時必須至少指定一個套件" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "在配置抽換資訊時失敗" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "無法找到 %s 的原始碼套件" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "在 AddDiversion 發生了內部錯誤" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "試圖改寫抽換資訊,%s -> %s 和 %s/%s" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "重複加入抽換資訊 %s -> %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "略過已下載的檔案 '%s'\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "重複的設定檔 %s/%s" +msgid "Couldn't determine free space in %s" +msgstr "無法確認 %s 的未使用空間" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:882 #, c-format -msgid "The path %s is too long" -msgstr "路徑 %s 過長" +msgid "You don't have enough free space in %s" +msgstr "在 %s 裡沒有足夠的的未使用空間" -#: apt-inst/extract.cc:132 +#. 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:891 #, c-format -msgid "Unpacking %s more than once" -msgstr "解開 %s 超過一次" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "需要下載 %sB/%sB 的原始套件檔。\n" -#: apt-inst/extract.cc:142 +#. 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:896 #, c-format -msgid "The directory %s is diverted" -msgstr "路徑 %s 已被抽換" +msgid "Need to get %sB of source archives.\n" +msgstr "需要下載 %sB 的原始套件檔。\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:902 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "此套件試圖寫至抽換後的目標 %s/%s" +msgid "Fetch source %s\n" +msgstr "取得原始碼 %s\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "要進行抽換的路徑過長" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "無法取得某些套件檔。" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "下載完成,且這是『僅下載』模式" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Failed to stat %s" -msgstr "無法取得 %s 的狀態" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "不解開,因原始碼已解開至 %s\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:962 #, c-format -msgid "Failed to rename %s to %s" -msgstr "無法將 %s 更名為 %s" +msgid "Unpack command '%s' failed.\n" +msgstr "解開指令 '%s' 失敗。\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:963 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "目錄 %s 已經被非目錄的檔案所取代" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "在雜湊表中找不到節點" +#: cmdline/apt-get.cc:991 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "編譯指令 '%s' 失敗。\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "路徑過長" +#: cmdline/apt-get.cc:1010 +msgid "Child process failed" +msgstr "子程序失敗" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1029 +msgid "Must specify at least one package to check builddeps for" +msgstr "在檢查編譯相依關係時必須至少指定一個套件" + +#: cmdline/apt-get.cc:1054 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "以無版本的 %s 覆寫原始套件" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "檔案 %s/%s 覆寫了套件 %s 中的相同檔案" +msgid "Unable to get build-dependency information for %s" +msgstr "無法取得 %s 的編譯相依關係資訊" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1101 #, c-format -msgid "Unable to stat %s" -msgstr "無法取得 %s 的狀態" +msgid "%s has no build depends.\n" +msgstr "%s 沒有編譯相依關係。\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1271 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" + +#: cmdline/apt-get.cc:1289 #, c-format -msgid "Failed to write file %s" -msgstr "寫入檔案 %s 失敗" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1312 #, c-format -msgid "Failed to close file %s" -msgstr "關閉檔案 %s 失敗" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "無法滿足 %2$s 的相依關係 %1$s:已安裝的套件 %3$s 太新了" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1351 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"無法滿足 %2$s 所要求的 %1$s 相依關係,因為套件 %3$s 沒有版本符合其版本需求" + +#: cmdline/apt-get.cc:1357 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" + +#: cmdline/apt-get.cc:1380 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "這是個不正確的 DEB 套件檔,沒有 '%s' 成員" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "無法滿足 %2$s 的相依關係 %1$s:%3$s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1395 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "內部錯誤,找不找到成員 %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "無法滿足套件 %s 的編譯相依關係。" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "無法分析的 control 檔" +#: cmdline/apt-get.cc:1400 +msgid "Failed to process build dependencies" +msgstr "無法處理編譯相依關係" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "無效的套件庫簽章" +#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "正和 %s (%s) 連線" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "讀取套件檔的成員標頭訊息時發生錯誤" +#: cmdline/apt-get.cc:1591 +msgid "Supported modules:" +msgstr "已支援模組:" + +#: cmdline/apt-get.cc:1632 +#, fuzzy +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 "" +"用法:apt-get [選項] 指令\n" +" apt-get [選項] install|remove 套件1 [套件2 ...]\n" +" apt-get [選項] source 套件1 [套件2 ...]\n" +"\n" +"apt-get 是一個用來下載和安裝套件的簡易命令列界面。\n" +"最常用指令是 update 和 install。\n" +"\n" +"指令:\n" +" update - 取得新的套件列表\n" +" upgrade - 進行升級\n" +" install - 安裝新套件(套件名稱是 libc6 而不是 libc6.deb)\n" +" remove - 移除套件\n" +" autoremove - 自動移除所有不再使用的套件\n" +" purge - 移除並清除套件\n" +" source - 下載套件原始碼\n" +" build-dep - 為原始碼套件配置編譯相依關係\n" +" dist-upgrade - 發行版本升級,請參閱 apt-get(8)\n" +" dselect-upgrade - 採用 dselect 的選項升級\n" +" clean - 刪除已下載的套件檔\n" +" auto-clean - 刪除已下載但已有新版本的套件檔\n" +" check - 檢查相依關係是否有問題\n" +"\n" +"選項:\n" +" -h 本求助訊息。\n" +" -q 讓輸出可作為記錄檔之用 - 不顯示進度\n" +" -qq 除了錯誤外,不顯示其它資訊\n" +" -d 僅下載 - 【不】安裝或解開套件檔\n" +" -s 不實際進行。只是模擬執行指令\n" +" -y 對所有詢問都回答 Yes,同時不會有任何提示\n" +" -f 嘗試修正系統上損毀的套件相依關係\n" +" -m 當有套件檔無法找到時,仍試著繼續進行\n" +" -u 顯示已升級的套件列表\n" +" -b 在取得套件原始碼後進行編譯\n" +" -V 顯示詳盡的版本號碼\n" +" -c=? 讀取指定的設定檔\n" +" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" +"請參閱 apt-get(8)、sources.list(5) 及 apt.conf(5) 的使用手冊\n" +"以取得更多資訊和選項。\n" +" 該 APT 有著超級牛力。\n" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "無效的套件檔成員標頭" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "在取得原始碼時必須至少指定一個套件" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "無效的套件檔成員標頭" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "套件檔過短" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "讀取套件檔標頭失敗" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "但它卻尚未安裝" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "無法建立管線" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s 被設定為手動安裝。\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "無法執行 gzip" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s 被設定為手動安裝。\n" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "損毀的套件檔" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s 已經是最新版本了。\n" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar checksum 失敗,套件檔已損毀" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s 已經是最新版本了。\n" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "未知的 TAR 標頭類型 %u,成員 %s" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s 被設定為手動安裝。\n" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "無法取得 %s 的狀態。" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "無法開啟 %s" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-mark.cc:392 +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" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\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 "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "不支援的套件包裝系統 '%s'" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "無法確認合適的套件包裝系統類型" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "寫入 %i 筆紀錄。\n" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了。\n" - -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案不符\n" - -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了,有 %i 個檔案不符\n" - -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash Sum 不符" - -#: apt-pkg/acquire-worker.cc:116 +#: methods/cdrom.cc:203 #, c-format -msgid "The method driver %s could not be found." -msgstr "找不到安裝方式的驅動程式 %s。" +msgid "Unable to read the cdrom database %s" +msgstr "無法讀取光碟片資料庫 %s" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" +#: 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 "" +"請用 apt-cdrom 來讓 APT 能辨識這張光碟。apt-get update 是不能用來新增光碟的" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "安裝方式 %s 沒有正確啟動" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "不正確的光碟" -#: apt-pkg/acquire-worker.cc:455 +#: methods/cdrom.cc:249 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "請把標籤為 '%s' 的光碟放入 '%s' 裝置中,然後按下 [Enter] 鍵。" - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "無法分析或開啟套件清單或狀況檔。" - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "您也許得執行 apt-get update 以修正這些問題" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "無法讀取來源列表。" - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "清空套件快取" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "套件快取檔損壞" - -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "套件快取檔版本不符" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "無法卸載 %s 裡的光碟片,或許它仍在使用中。" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "套件快取檔損壞" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "找不到磁碟。" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "本 APT 不支援 '%s' 版本系統" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "找不到檔案" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "這個套件快取是用於另一種平台的" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "無法取得狀態" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "相依關係" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "無法設定修改時間" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "預先相依關係" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "不正確的 URI,本機 URI 不應以 // 開頭" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "建議" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "登入中" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "推薦" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "無法解析對方主機名稱" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "衝突" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "無法解析本機名稱" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "取代" +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "伺服器不接受連線,並回應:%s" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "廢棄" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER 指令失敗,伺服器回應:%s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "毀損" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS 指令失敗,伺服器回應:%s" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"指定了代理伺服器,但沒有指定登入 script,Acquire::ftp::ProxyLogin 是空的。" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "重要" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "必要" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "登入 script 指令 '%s' 失敗,伺服器回應:%s" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "標準" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE 指令失敗,伺服器回應:%s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "次要" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "連線逾時" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "額外" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "伺服器已關閉連線" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "不被支援的索引檔類型 '%s'" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "回應超過緩衝區長度。" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "快取使用的是不相容的版本系統" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +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:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "在處理 %s 時發生錯誤 (FindPkg)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "無法建立 Socket" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "哇呀,您已經超過這個 APT 所能處理的套件名稱數量了。" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "無法和 data socket 連線,連線逾時" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "哇呀,您已經超過這個 APT 所能處理的版本數量了。" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "失敗" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "哇呀,您已經超過這個 APT 所能處理的說明數量了。" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "無法和 passive socket 連線。" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "哇呀,您已經超過這個 APT 所能處理的相依關係數量了。" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo 無法取得監聽 socket" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "在計算檔案相依性時找不到套件 %s %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "無法 bind 至 socket" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "無法取得來源套件列表 %s 的狀態" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "無法監聽 socket" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "正在讀取套件清單" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "無法解析 socket 名稱" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "正在收集檔案提供者" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "無法送出 PORT 指令" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr "無法寫入 %s" +msgid "Unknown address family %u (AF_*)" +msgstr "未知的地址家族 %u (AF_*)" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "在儲存來源快取時 IO 錯誤" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT 指令失敗,伺服器回應:%s" -#: apt-pkg/edsp.cc:51 apt-pkg/edsp.cc:71 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Data socket 連線逾時" -#: apt-pkg/edsp.cc:234 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "無法接受連線" -#: apt-pkg/edsp.cc:313 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "有問題的雜湊檔" -#: apt-pkg/edsp.cc:320 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "無法取得檔案,伺服器回應 '%s'" -#: apt-pkg/edsp.cc:612 apt-pkg/edsp.cc:615 apt-pkg/edsp.cc:620 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Data socket 連線逾時" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:935 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "無法重新命名,%s (%s -> %s)。" - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash Sum 不符" +msgid "Data transfer failed, server said '%s'" +msgstr "資料傳輸失敗,伺服器回應 '%s'" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "大小不符" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "查詢" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "無效的操作 %s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "無法 invoke " -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "無法辨別 Release 檔 %s" - -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "無法取得以下的密鑰 ID 的公鑰:\n" +msgid "Connecting to %s (%s)" +msgstr "正和 %s (%s) 連線" -#: apt-pkg/acquire-item.cc:1677 +#: methods/connect.cc:87 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1699 +#: methods/connect.cc:94 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "發行版本衝突:%s(應當是 %s 但卻得到 %s)" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "無法建立 socket 指向 %s (f=%u t=%u p=%u)" -#: apt-pkg/acquire-item.cc:1729 +#: methods/connect.cc:100 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "無法初始和 %s:%s (%s) 的連線。" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1739 apt-pkg/acquire-item.cc:1744 +#: methods/connect.cc:108 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "無法和 %s:%s (%s) 連線,連線逾時" -#: apt-pkg/acquire-item.cc:1867 +#: methods/connect.cc:126 #, 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 套件的某個檔案。這意味著您可能要手動修復這個套件。(因為找不到平" -"台)" +msgid "Could not connect to %s:%s (%s)." +msgstr "無法和 %s:%s (%s) 連線。" -#: apt-pkg/acquire-item.cc:1933 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Connecting to %s" +msgstr "正連線至 %s" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "這個套件的索引檔損壞了。沒有套件 %s 的 Filename: 欄位。" +msgid "Could not resolve '%s'" +msgstr "無法解析 '%s'" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "提供者區塊 %s 沒有包含指紋碼" +msgid "Temporary failure resolving '%s'" +msgstr "暫時無法解析 '%s'" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "找不到清單目錄 %spartial。" +msgid "System error resolving '%s:%s'" +msgstr "在解析 '%s:%s' (%i) 時出了怪事" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "找不到套件檔目錄 %spartial。" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "在解析 '%s:%s' (%i) 時出了怪事" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "無法鎖定列表目錄" +msgid "Unable to connect to %s:%s:" +msgstr "無法連線至 %s %s:" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "正在取得檔案 %li/%li(還有 %s)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "內部錯誤:簽章無誤,但卻無法辨識密鑰的指紋碼?!" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "正在取得檔案 %li/%li" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "至少發現一個無效的簽章。" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/gpgv.cc:174 #, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "有一些索引檔不能下載,它們可能被略過了,或是替而使用原有的索引檔。" - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "在 sources.list 中必須包含一些 'source' URI" +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "無法執行 '%s' 來驗證簽章(gpgv 是否安裝了?)" -#: apt-pkg/policy.cc:83 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "個人設定檔中有些不正確資料,沒有以 Package 開頭" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "無法分析鎖定類型 %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "在執行 gpgv 時發生未知的錯誤" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "銷定並沒有優先順序之分(或零)" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "以下簽名無效:\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: methods/gpgv.cc:231 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:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "無法開啟檔案 %s" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "由於無法取得它們的公鑰,以下簽章無法進行驗證:\n" -#: apt-pkg/packagemanager.cc:583 -#, 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." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -"此安裝因衝突或預先相依關係,需暫時刪除 %s 這個基本套件。這通常不是好主意,但" -"若您執意進行,請設定 APT::Force-LoopBreak 選項。" - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "來源列表 %2$s 中的第 %1$u 行太長。" - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "正在卸載光碟機...\n" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "使用光碟機掛載點 %s\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "在寫入該檔時發生錯誤" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "正在等待碟片...\n" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "在讀取伺服器時發生錯誤,遠端主機已關閉連線" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "正在掛載光碟機... \n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "在讀取伺服器時發生錯誤" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "正在識別..." +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "在寫入檔案時發生錯誤" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "保存標籤:%s\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "選擇失敗" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "正在掃描碟片中的索引檔...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "連線逾時" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "找到了 %zu 個套件索引,%zu 個原始碼索引,%zu 個翻譯索引及 %zu 個簽章\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "在寫入輸出檔時發生錯誤" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "等待標頭" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "找到標籤 '%s'\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "標頭行錯誤" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "這並不是正確的名稱,請重試。\n" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP 伺服器傳送了一個無效的回覆標頭" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"這個碟片名為:\n" -"'%s'\n" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP 伺服器傳送了一個無效的 Content-Length 標頭" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "正在複製套件清單..." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP 伺服器傳送了一個無效的 Content-Range 標頭" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "正在寫入新的來源列表\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "這個 HTTP 伺服器的範圍支援有問題" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "該碟片的來源列表項目為:\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "未知的資料格式" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "套件 %s 需要重新安裝,但找不到它的套件檔。" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "錯誤的標頭資料" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"錯誤,pkgProblemResolver::Resolve 的建立中斷了,這可能肇因於保留 (hold) 套" -"件。" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "連線失敗" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "無法修正問題,您保留 (hold) 了損毀的套件。" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "內部錯誤" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "正在重建相依關係" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "籌備升級中... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "候選版本" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "完成" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "建立相依關係" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "正在讀取狀態資料" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:164 #, c-format -msgid "Failed to open StateFile %s" -msgstr "無法開啟 StateFile %s" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "無法寫入暫存的 StateFile %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "正在修正相依關係..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "無法辨識套件檔 %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " 失敗。" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "無法辨識套件檔 %s (2)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "無法修正相依關係" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "找不到 '%2$s' 的 '%1$s' 發行版" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "無法將升級計劃最小化" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "找不到 '%s' 版的 '%s'" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " 完成" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "無法找到主題 %s" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "您也許得執行 'apt-get -f install' 以修正這些問題。" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "無法找到套件 %s" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "未能滿足相依關係。試試 -f 選項。" -#: apt-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "無法找到套件 %s" +msgid "[installed,upgradable to: %s]" +msgstr "【已安裝】" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr "【已安裝】" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr "【已安裝】" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr "【已安裝】" + +#: apt-private/private-output.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:435 #, c-format -msgid "Unable to parse Release file %s" -msgstr "無法辨別 Release 檔 %s" +msgid "but %s is installed" +msgstr "但 %s 卻已安裝" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:437 #, c-format -msgid "No sections in Release file %s" -msgstr "在 Release 檔 %s 裡沒有區段" +msgid "but %s is to be installed" +msgstr "但 %s 卻將被安裝" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "在 Release 檔 %s 裡沒有 Hash 項目" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "但它卻無法安裝" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "在 Release 檔 %s 裡沒有 Hash 項目" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "但它是虛擬套件" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "在 Release 檔 %s 裡沒有 Hash 項目" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "但它卻尚未安裝" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(URI 分析)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "但它卻將不會被安裝" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr "或" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "下列的套件有未滿足的相依關係:" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "下列【新】套件將會被安裝:" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "下列套件將會被【移除】:" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "下列套件將會維持其原有版本:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤 (URI)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "下列套件將會被升級:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版)" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "下列套件將會被【降級】:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "下列被保留 (hold) 的套件將會被更改:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(URI 分析)" +msgid "%s (due to %s) " +msgstr "%s(因為 %s)" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"【警告】:下列的基本套件都將被移除。\n" +"除非您很清楚您在做什麼,否則請勿輕易嘗試!" + +#: apt-private/private-output.cc:707 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(絕對發行版)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "升級 %lu 個,新安裝 %lu 個," -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:711 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +msgid "%lu reinstalled, " +msgstr "重新安裝 %lu 個," -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:713 #, c-format -msgid "Opening %s" -msgstr "正在開啟 %s" +msgid "%lu downgraded, " +msgstr "降級 %lu 個," -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:715 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "來源列表 %2$s 中的第 %1$u 行的格式錯誤(類型)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "移除 %lu 個,有 %lu 個未被升級。\n" -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:719 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "未知的類型 '%1$s',位於在來源列表 %3$s 中的第 %2$u 行" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu 個沒有完整得安裝或移除。\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "未知的類型 '%1$s',位於在來源列表 %3$s 中的第 %2$u 行" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "正在安裝 %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "正在設定 %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "正在移除 %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "已完整移除 %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "update 指令不需任何參數" -#: apt-pkg/deb/dpkgpm.cc:99 +#: apt-private/private-update.cc:90 #, c-format -msgid "Noting disappearance of %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-show.cc:156 #, c-format -msgid "Running post-installation trigger %s" -msgstr "正在執行安裝後套件後續處理程式 %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "找不到 '%s' 目錄" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "無法開啟檔案 %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "內部錯誤,在損毀的套件上執行 InstallPackages!" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "正在準備 %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "有套件需要被移除,但卻被禁止移除。" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "正在解開 %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "內部錯誤,排序未能完成" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "正在準備設定 %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "怪哉... 檔案大小不符,請發信給 apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:997 +#. 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 +#: apt-private/private-install.cc:155 #, c-format -msgid "Installed %s" -msgstr "已安裝 %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "需要下載 %sB/%sB 的套件檔。\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#. 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 +#: apt-private/private-install.cc:160 #, c-format -msgid "Preparing for removal of %s" -msgstr "正在準備移除 %s" +msgid "Need to get %sB of archives.\n" +msgstr "需要下載 %sB 的套件檔。\n" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. 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 +#: apt-private/private-install.cc:167 #, c-format -msgid "Removed %s" -msgstr "已移除 %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "此操作完成之後,會多佔用 %sB 的磁碟空間。\n" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. 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 +#: apt-private/private-install.cc:172 #, c-format -msgid "Preparing to completely remove %s" -msgstr "正在準備完整移除 %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "此操作完成之後,會空出 %sB 的磁碟空間。\n" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:200 #, c-format -msgid "Completely removed %s" -msgstr "已完整移除 %s" +msgid "You don't have enough free space in %s." +msgstr "在 %s 裡沒有足夠的的未使用空間。" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "發生了問題,且 -y 並沒有和 --force-yes 搭配使用" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "無法寫入 %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "雖然指定了 Trivial Only(自動答 NO)選項,但這並不是 trivial 操作。" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. 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) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"您所進行的操作可能會帶來危險。\n" +"請輸入 '%s' 這個句子以繼續進行\n" +" ?] " -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "放棄執行。" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "是否繼續進行 [Y/n]?" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "有部份檔案無法下載" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:320 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"有部份套件檔無法取得,試著執行 apt-get update 或者試著加上 --fix-missing 選" +"項?" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "目前尚未支援 --fix-missing 和媒體抽換" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "無法修正欠缺的套件。" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "放棄安裝。" + +#: apt-private/private-install.cc:366 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"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] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "我們沒有計劃要刪除任何東西,無法啟動 AutoRemover" + +#: apt-private/private-install.cc:499 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" +"嗯,看起來 AutoRemover 弄壞了什麼東西,而這是不該發生的。\n" +"請針對 apt 發佈錯誤回報。" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#. +#. if (Packages == 1) +#. { +#. c1out << std::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.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "以下的資訊或許有助於解決當前的情況:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "內部錯誤,AutoRemover 處理失敗" + +#: apt-private/private-install.cc:513 +#, fuzzy msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +"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] "以下套件是被自動安裝進來的,且已不再會被用到了:" +msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "無法鎖定列表目錄" +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] "以下套件是被自動安裝進來的,且已不再會被用到了:" +msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +#: apt-private/private-install.cc:519 +#, 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' 來將其移除。" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "您也許得執行 'apt-get -f install' 以修正這些問題:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"未能滿足相依關係。請試著不指定套件來執行 'apt-get -f install'(或採取其它的解" +"決方案)。" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: apt-private/private-install.cc:638 +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 "" +"有些套件無法安裝。這可能意謂著您的要求難以解決,或是若您使用的是\n" +"unstable 發行版,可能有些必要的套件尚未建立,或是被移出 Incoming 了。" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "損毀的套件" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "下列的額外套件將被安裝:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "建議套件:" -#: apt-pkg/contrib/strutl.cc:1236 -#, c-format -msgid "Selection %s not found" -msgstr "選項 %s 找不到" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "推薦套件:" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:825 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "不在唯讀檔案 %s 上使用檔案鎖定" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "忽略 %s,它已被安裝且沒有計劃要進行升級。\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "無法開啟鎖定檔 %s" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "忽略 %s,它已被安裝且沒有計劃要進行升級。\n" -#: apt-pkg/contrib/fileutl.cc:218 +#: apt-private/private-install.cc:841 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "不在以 nfs 掛載的檔案 %s 上使用檔案鎖定" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "無法重新安裝 %s,因為它無法下載。\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:846 #, c-format -msgid "Could not get lock %s" -msgstr "無法將 %s 鎖定" +msgid "%s is already the newest version.\n" +msgstr "%s 已經是最新版本了。\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" + +#: apt-private/private-main.cc:32 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"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 "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "子程序 %s 收到一個記憶體錯誤。" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "【警告】:無法驗證下列套件!" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "子程序 %s 收到一個記憶體錯誤。" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "忽略了驗證警告。\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "子程序 %s 傳回錯誤碼 (%u)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "有部份套件無法驗證" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "子程序 %s 不預期得結束" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "是否不經驗證就安裝這些套件?" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "在關閉檔案時發生問題" +msgid "Failed to parse %s. Edit again? " +msgstr "無法將 %s 更名為 %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "無法開啟檔案 %s" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "無法開啟管線給 %s 使用" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "無法建立子程序 IPC" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "無法執行壓縮程式" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "讀取,仍有 %lu 未讀但已無空間" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "寫入,仍有 %lu 待寫入但已沒辨法" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "已有 " -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "在關閉檔案時發生問題" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "下載:" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "在同步檔案時發生問題" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "略過 " -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "在刪除檔案時發生問題" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "錯誤 " -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "在同步檔案時發生問題" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "取得 %sB 用了 %s (%sB/s)\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... 錯誤!" +msgid " [Working]" +msgstr " [工作中]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... 完成" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"更換媒體:請把以下名稱的光碟\n" +" '%s'\n" +"放入 '%s' 裝置,然後按 [Enter] 鍵\n" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... 完成" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "不能 mmap 空白檔案" +msgid "Can not read mirror file '%s'" +msgstr "無法開啟檔案 %s" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "無法開啟管線給 %s 使用" +msgid "No entry found in mirror file '%s'" +msgstr "無法開啟檔案 %s" + +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "無法和子程序建立 IPC 管線" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "連線突然終止" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "錯誤的預設設定!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "請按 [Enter] 鍵以繼續進行。" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "無法 mmap 到 %lu 位元組" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "您想移除所有先前下載的 .deb 檔嗎?" -#: apt-pkg/contrib/mmap.cc:146 +#: dselect/install:102 #, fuzzy -msgid "Unable to close mmap" -msgstr "無法開啟 %s" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "在解開套件時發生錯誤。我要準備設定" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "無法 invoke " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "無法 mmap 到 %lu 位元組" +msgid "will be configured. This may result in duplicate errors" +msgstr "套件已安裝過。這會造成重複錯誤" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "無法截短檔案" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "或是因為沒有相依關係而造成錯誤。那麼這個錯誤是無關緊要的" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: dselect/install:105 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"動態 MMap 已用完所有空間。請增加 APT::Cache-Start 的大小。目前大小為:%lu。" -"(man 5 apt.conf)" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "以上的訊息相當重要。請修正它們並重新執行安裝[I]" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "整合現有的資料" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode 在還有連結結點時被呼叫" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "無法取得掛載點 %s 的狀態" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "找不到雜湊元件!" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "無法取得 CD-ROM 的狀態" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "在配置抽換資訊時失敗" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "無法辨識的縮寫類型:'%c'" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "在 AddDiversion 發生了內部錯誤" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "開啟設定檔 %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "試圖改寫抽換資訊,%s -> %s 和 %s/%s" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "語法錯誤 %s:%u:區塊開頭沒有名稱。" +msgid "Double add of diversion %s -> %s" +msgstr "重複加入抽換資訊 %s -> %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "語法錯誤 %s:%u:標籤格式錯誤" +msgid "Duplicate conf file %s/%s" +msgstr "重複的設定檔 %s/%s" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "語法錯誤 %s:%u:數值後有多餘的垃圾" +msgid "The path %s is too long" +msgstr "路徑 %s 過長" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "語法錯誤 %s:%u:指令只能於最高層級執行" +msgid "Unpacking %s more than once" +msgstr "解開 %s 超過一次" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "語法錯誤 %s:%u: 太多巢狀引入檔" +msgid "The directory %s is diverted" +msgstr "路徑 %s 已被抽換" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "語法錯誤 %s:%u:從此引入" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "此套件試圖寫至抽換後的目標 %s/%s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "要進行抽換的路徑過長" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "語法錯誤 %s:%u:不支援的指令 '%s'" +msgid "Failed to stat %s" +msgstr "無法取得 %s 的狀態" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "語法錯誤 %s:%u:指令只能於最高層級執行" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "無法將 %s 更名為 %s" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "語法錯誤 %s:%u:在檔案結尾有多餘的垃圾" +msgid "The directory %s is being replaced by a non-directory" +msgstr "目錄 %s 已經被非目錄的檔案所取代" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "放棄安裝。" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "在雜湊表中找不到節點" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "未知的命令列選項 '%c' [來自 %s]。" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "路徑過長" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option %s is not understood" -msgstr "無法理解的命令列選項 %s" +msgid "Overwrite package match with no version for %s" +msgstr "以無版本的 %s 覆寫原始套件" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/extract.cc:438 #, c-format -msgid "Command line option %s is not boolean" -msgstr "命令列選項 %s 不是 boolean 值" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "檔案 %s/%s 覆寫了套件 %s 中的相同檔案" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-inst/extract.cc:498 #, c-format -msgid "Option %s requires an argument." -msgstr "需替選項 %s 指定參數。" +msgid "Unable to stat %s" +msgstr "無法取得 %s 的狀態" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "選項 %s:在指定設定項目時應該有 =<val>。" +msgid "Failed to write file %s" +msgstr "寫入檔案 %s 失敗" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "選項 %s 的參數應該是數字,而不是 '%s'" +msgid "Failed to close file %s" +msgstr "關閉檔案 %s 失敗" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Option '%s' is too long" -msgstr "選項 %s 太長" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "這是個不正確的 DEB 套件檔,沒有 '%s' 成員" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "偵測器 %s 無法理解,試試 true 或 false。" +msgid "Internal error, could not locate member %s" +msgstr "內部錯誤,找不找到成員 %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "無法分析的 control 檔" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "無效的套件庫簽章" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "讀取套件檔的成員標頭訊息時發生錯誤" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "無效的套件檔成員標頭" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "無效的套件檔成員標頭" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "套件檔過短" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "讀取套件檔標頭失敗" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "無法建立管線" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "無法執行 gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "損毀的套件檔" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar checksum 失敗,套件檔已損毀" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Invalid operation %s" -msgstr "無效的操作 %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "未知的 TAR 標頭類型 %u,成員 %s" #: cmdline/apt-extracttemplates.cc:224 msgid "" @@ -3464,7 +3468,7 @@ msgstr "在計算 MD5 時無法讀取到資料" msgid "Problem unlinking %s" msgstr "在取消 %s 的連結時發生問題" -#: cmdline/apt-internal-solver.cc:47 +#: cmdline/apt-internal-solver.cc:49 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -3516,6 +3520,10 @@ msgstr "" " -c=? 讀取指定的設定檔\n" " -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" +#, fuzzy +#~ msgid "Internal error, Upgrade broke stuff" +#~ msgstr "內部錯誤,AllUpgrade 造成了損壞" + #~ msgid "%s not a valid DEB package." #~ msgstr "%s 並不是正確的 DEB 套件。" diff --git a/test/Makefile b/test/Makefile index 74bffccb7..35a0a51e3 100644 --- a/test/Makefile +++ b/test/Makefile @@ -7,7 +7,7 @@ ifndef NOISY endif .PHONY: startup headers library clean veryclean all binary program doc test update-po -startup all clean veryclean binary program dirs test update-po manpages debiandoc: +startup all clean veryclean binary program dirs test update-po manpages docbook: $(MAKE) -C libapt $@ $(MAKE) -C interactive-helper $@ diff --git a/test/integration/framework b/test/integration/framework index 7959699fd..3bbf440c8 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -23,30 +23,30 @@ if [ "$MSGCOLOR" != 'NO' ]; then CCMD="\033[1;35m" # pink fi -msgdie() { echo "${CERROR}E: $1${CNORMAL}" >&2; exit 1; } -msgwarn() { echo "${CWARNING}W: $1${CNORMAL}" >&2; } -msgmsg() { echo "${CMSG}$1${CNORMAL}"; } -msginfo() { echo "${CINFO}I: $1${CNORMAL}"; } -msgdebug() { echo "${CDEBUG}D: $1${CNORMAL}"; } -msgdone() { echo "${CDONE}DONE${CNORMAL}"; } -msgnwarn() { echo -n "${CWARNING}W: $1${CNORMAL}" >&2; } -msgnmsg() { echo -n "${CMSG}$1${CNORMAL}"; } -msgninfo() { echo -n "${CINFO}I: $1${CNORMAL}"; } -msgndebug() { echo -n "${CDEBUG}D: $1${CNORMAL}"; } +msgdie() { printf "${CERROR}E: $1${CNORMAL}\n" >&2; exit 1; } +msgwarn() { printf "${CWARNING}W: $1${CNORMAL}\n" >&2; } +msgmsg() { printf "${CMSG}$1${CNORMAL}\n"; } +msginfo() { printf "${CINFO}I: $1${CNORMAL}\n"; } +msgdebug() { printf "${CDEBUG}D: $1${CNORMAL}\n"; } +msgdone() { printf "${CDONE}DONE${CNORMAL}\n"; } +msgnwarn() { printf "${CWARNING}W: $1${CNORMAL}" >&2; } +msgnmsg() { printf "${CMSG}$1${CNORMAL}"; } +msgninfo() { printf "${CINFO}I: $1${CNORMAL}"; } +msgndebug() { printf "${CDEBUG}D: $1${CNORMAL}"; } msgtest() { while [ -n "$1" ]; do - echo -n "${CINFO}$1${CCMD} " - echo -n "$(echo "$2" | sed -e 's#^apt\([cgfs]\)#apt-\1#')${CINFO} " + printf "${CINFO}$1${CCMD} " + printf -- "$(echo "$2" | sed -e 's#^apt\([cgfs]\)#apt-\1#')${CINFO} " shift if [ -n "$1" ]; then shift; else break; fi done - echo -n "…${CNORMAL} " + printf "…${CNORMAL} " } -msgpass() { echo "${CPASS}PASS${CNORMAL}"; } -msgskip() { echo "${CWARNING}SKIP${CNORMAL}" >&2; } +msgpass() { printf "${CPASS}PASS${CNORMAL}\n"; } +msgskip() { printf "${CWARNING}SKIP${CNORMAL}\n" >&2; } msgfail() { - if [ $# -gt 0 ]; then echo "${CFAIL}FAIL: $*${CNORMAL}" >&2; - else echo "${CFAIL}FAIL${CNORMAL}" >&2; fi + if [ $# -gt 0 ]; then printf "${CFAIL}FAIL: $*${CNORMAL}\n" >&2; + else printf "${CFAIL}FAIL${CNORMAL}\n" >&2; fi EXIT_CODE=$((EXIT_CODE+1)); } @@ -63,12 +63,12 @@ if [ $MSGLEVEL -le 2 ]; then msgmsg() { true; } msgnmsg() { true; } msgtest() { true; } - msgpass() { echo -n " ${CPASS}P${CNORMAL}"; } - msgskip() { echo -n " ${CWARNING}S${CNORMAL}" >&2; } + msgpass() { printf " ${CPASS}P${CNORMAL}"; } + msgskip() { printf " ${CWARNING}S${CNORMAL}" >&2; } if [ -n "$CFAIL" ]; then - msgfail() { echo -n " ${CFAIL}FAIL${CNORMAL}" >&2; EXIT_CODE=$((EXIT_CODE+1)); } + msgfail() { printf " ${CFAIL}FAIL${CNORMAL}" >&2; EXIT_CODE=$((EXIT_CODE+1)); } else - msgfail() { echo -n " ###FAILED###" >&2; EXIT_CODE=$((EXIT_CODE+1)); } + msgfail() { printf " ###FAILED###" >&2; EXIT_CODE=$((EXIT_CODE+1)); } fi fi if [ $MSGLEVEL -le 3 ]; then @@ -87,7 +87,7 @@ msgdone() { [ "$1" = "die" -a $MSGLEVEL -le 0 ]; then true; else - echo "${CDONE}DONE${CNORMAL}"; + printf "${CDONE}DONE${CNORMAL}\n"; fi } getaptconfig() { @@ -120,6 +120,7 @@ apthelper() { runapt "${APTHELPERBINDIR}/apt-helper" "$@"; } aptwebserver() { runapt "${APTWEBSERVERBINDIR}/aptwebserver" "$@"; } aptitude() { runapt aptitude "$@"; } aptextracttemplates() { runapt apt-extracttemplates "$@"; } +aptinternalsolver() { runapt "${APTINTERNALSOLVER}" "$@"; } dpkg() { command dpkg --root=${TMPWORKINGDIRECTORY}/rootdir --force-not-root --force-bad-path --log=${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log "$@" @@ -154,7 +155,7 @@ exitwithstatus() { shellsetedetector() { local exit_status=$? if [ "$exit_status" != '0' ]; then - echo >&2 "${CERROR}E: Looks like the testcases ended prematurely with exitcode: ${exit_status}${CNORMAL}" + printf >&2 "${CERROR}E: Looks like the testcases ended prematurely with exitcode: ${exit_status}${CNORMAL}\n" if [ "$EXIT_CODE" = '0' ]; then EXIT_CODE="$exit_status" fi @@ -181,6 +182,7 @@ setupenvironment() { METHODSDIR=${APT_INTEGRATION_TESTS_METHODS_DIR:-"${BUILDDIRECTORY}/methods"} APTHELPERBINDIR=${APT_INTEGRATION_TESTS_LIBEXEC_DIR:-"${BUILDDIRECTORY}"} APTWEBSERVERBINDIR=${APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR:-"${BUILDDIRECTORY}"} + APTINTERNALSOLVER=${APT_INTEGRATION_TESTS_INTERNAL_SOLVER:-"${BUILDDIRECTORY}/apt-internal-solver"} test -x "${BUILDDIRECTORY}/apt-get" || msgdie "You need to build tree first" # ----- @@ -326,12 +328,12 @@ configdpkg() { configcompression() { while [ -n "$1" ]; do case "$1" in - '.') echo ".\t.\tcat";; - 'gz') echo "gzip\tgz\tgzip";; - 'bz2') echo "bzip2\tbz2\tbzip2";; - 'lzma') echo "lzma\tlzma\txz --format=lzma";; - 'xz') echo "xz\txz\txz";; - *) echo "$1\t$1\t$1";; + '.') printf ".\t.\tcat\n";; + 'gz') printf "gzip\tgz\tgzip\n";; + 'bz2') printf "bzip2\tbz2\tbzip2\n";; + 'lzma') printf "lzma\tlzma\txz --format=lzma\n";; + 'xz') printf "xz\txz\txz\n";; + *) printf "$1\t$1\t$1\n";; esac shift done > ${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf diff --git a/test/integration/run-tests b/test/integration/run-tests index d39daeee5..9dd550aa2 100755 --- a/test/integration/run-tests +++ b/test/integration/run-tests @@ -39,9 +39,9 @@ fi TOTAL="$(run-parts --list $DIR | grep '/test-' | wc -l)" for testcase in $(run-parts --list $DIR | grep '/test-'); do if [ "$MSGLEVEL" -le 2 ]; then - echo -n "($(($ALL+1))/${TOTAL}) ${CTEST}Testcase ${CHIGH}$(basename ${testcase})${CRESET}: " + printf "($(($ALL+1))/${TOTAL}) ${CTEST}Testcase ${CHIGH}$(basename ${testcase})${CRESET}: " else - echo "${CTEST}Run Testcase ($(($ALL+1))/${TOTAL}) ${CHIGH}$(basename ${testcase})${CRESET}" + printf "${CTEST}Run Testcase ($(($ALL+1))/${TOTAL}) ${CHIGH}$(basename ${testcase})${CRESET}\n" fi if ! ${testcase}; then FAIL=$((FAIL+1)) diff --git a/test/integration/test-apt-ftparchive-cachedb-lp1274466 b/test/integration/test-apt-ftparchive-cachedb-lp1274466 index 2a28d6ef0..579ae33a6 100755 --- a/test/integration/test-apt-ftparchive-cachedb-lp1274466 +++ b/test/integration/test-apt-ftparchive-cachedb-lp1274466 @@ -46,6 +46,8 @@ Description: an autogenerated dummy foo=1/test " aptftparchive --db old-format.db packages . # ensure that the db is updated and contains the new sha512 +db_dump old-format.db > old-format.dump + testsuccess grep 7da58ff901a40ecf42a730dc33198b182e9ba9ec98799fc2c2b6fabeeee40cc12a0e7cadb4b66764235c56e1009dbfe8a9a566fb1eedf47a992d1fff2cc3332c old-format.dump diff --git a/test/integration/test-dpkg-assert-multi-arch b/test/integration/test-dpkg-assert-multi-arch index 177d7489b..b3fbbf0eb 100755 --- a/test/integration/test-dpkg-assert-multi-arch +++ b/test/integration/test-dpkg-assert-multi-arch @@ -26,15 +26,17 @@ testqualifier() { fi } -# non-multiarch or "ubuntus" old multiarchified dpkg +msgmsg 'non-multiarch or "ubuntus" old multiarchified dpkg' echo 'Dir::Bin::dpkg "./dpkg-wrapper";' > rootdir/etc/apt/apt.conf.d/99dpkgwrapper -echo '#! /bin/sh -if echo "$*" | grep -q -- "--assert-multi-arch"; then +cat > ./dpkg-wrapper <<EOF +#! /bin/sh +if echo "\$*" | grep -q -- "--assert-multi-arch"; then echo >&2 'dpkg: Fehler: unbekannte Option --assert-multi-arch' echo >&1 'dpkg: Info: unbekannte Option --assert-multi-arch' - return 2; + exit 2 fi -return $*' > ./dpkg-wrapper +exec "\$@" +EOF chmod +x ./dpkg-wrapper testqualifier 'native-pkg' 'native-pkg' @@ -61,16 +63,18 @@ testqualifier 'all-foreign-pkg-' 'all-foreign-pkg' testqualifier 'always-all-pkg-' 'always-all-pkg' testqualifier 'always-all-foreign-pkg-' 'always-all-foreign-pkg' -# multiarch dpkg (new interface version) - +msgmsg 'multiarch dpkg (new interface version)' rm rootdir/var/lib/dpkg/status touch rootdir/var/lib/dpkg/status echo 'Dir::Bin::dpkg "./dpkg-wrapper";' > rootdir/etc/apt/apt.conf.d/99dpkgwrapper -echo '#! /bin/sh -if echo "$*" | grep -q -- "--assert-multi-arch"; then - return 0; +cat > ./dpkg-wrapper <<EOF +#! /bin/sh +if echo "\$*" | grep -q -- "--assert-multi-arch"; then + exit 0 fi -return $*' > ./dpkg-wrapper +exec "\$@" +EOF +chmod +x ./dpkg-wrapper testqualifier 'native-pkg' 'native-pkg:amd64' testqualifier 'native-pkg:amd64' 'native-pkg:amd64' diff --git a/test/integration/test-external-dependency-solver-protocol b/test/integration/test-external-dependency-solver-protocol index 129565993..07d2441b6 100755 --- a/test/integration/test-external-dependency-solver-protocol +++ b/test/integration/test-external-dependency-solver-protocol @@ -51,9 +51,15 @@ rm -f /tmp/dump.edsp testfailure aptget install --solver dump awesomecoolstuff:i386 -s testsuccess test -s /tmp/dump.edsp +testsuccess aptget dist-upgrade -s +testsuccess aptget dist-upgrade -s --solver apt + +testsuccess aptget upgrade -s +testsuccess aptget upgrade -s --solver apt + configarchitecture 'armel' msgtest 'Test direct calling is okay for' 'apt-internal-solver' -cat /tmp/dump.edsp | runapt apt-internal-solver > solver.result 2>&1 || true +cat /tmp/dump.edsp | aptinternalsolver > solver.result 2>&1 || true if [ "$(tail -n2 solver.result | head -n1 )" = "Message: Done" ]; then msgpass else diff --git a/test/libapt/parsedepends_test.cc b/test/libapt/parsedepends_test.cc index 1e0afb66c..52eac8232 100644 --- a/test/libapt/parsedepends_test.cc +++ b/test/libapt/parsedepends_test.cc @@ -23,7 +23,7 @@ static void parseDependency(bool const StripMultiArch, bool const ParseArchFlag "libdb-dev:any, " "gettext:native (<= 0.12), " "libcurl4-gnutls-dev:native | libcurl3-gnutls-dev (>> 7.15.5), " - "debiandoc-sgml, " + "docbook-xml, " "apt (>= 0.7.25), " "not-for-me [ !amd64 ], " "only-for-me [ amd64 ], " @@ -82,7 +82,7 @@ static void parseDependency(bool const StripMultiArch, bool const ParseArchFlag EXPECT_EQ(Null | pkgCache::Dep::Greater, Op); Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); - EXPECT_EQ("debiandoc-sgml", Package); + EXPECT_EQ("docbook-xml", Package); EXPECT_EQ("", Version); EXPECT_EQ(Null | pkgCache::Dep::NoOp, Op); diff --git a/test/libapt/strutil_test.cc b/test/libapt/strutil_test.cc index bc004fd66..e9b778c6b 100644 --- a/test/libapt/strutil_test.cc +++ b/test/libapt/strutil_test.cc @@ -70,3 +70,38 @@ TEST(StrUtilTest,EndsWith) EXPECT_FALSE(Endswith("abcd", "x")); EXPECT_FALSE(Endswith("abcd", "abcndefg")); } +TEST(StrUtilTest,SubstVar) +{ + EXPECT_EQ("", SubstVar("", "fails", "passes")); + EXPECT_EQ("test ", SubstVar("test fails", "fails", "")); + EXPECT_EQ("test passes", SubstVar("test passes", "", "fails")); + + EXPECT_EQ("test passes", SubstVar("test passes", "fails", "passes")); + EXPECT_EQ("test passes", SubstVar("test fails", "fails", "passes")); + + EXPECT_EQ("starts with", SubstVar("beginnt with", "beginnt", "starts")); + EXPECT_EQ("beginnt with", SubstVar("starts with", "starts", "beginnt")); + EXPECT_EQ("is in middle", SubstVar("is in der middle", "in der", "in")); + EXPECT_EQ("is in der middle", SubstVar("is in middle", "in", "in der")); + EXPECT_EQ("does end", SubstVar("does enden", "enden", "end")); + EXPECT_EQ("does enden", SubstVar("does end", "end", "enden")); + + EXPECT_EQ("abc", SubstVar("abc", "d", "a")); + EXPECT_EQ("abc", SubstVar("abd", "d", "c")); + EXPECT_EQ("abc", SubstVar("adc", "d", "b")); + EXPECT_EQ("abc", SubstVar("dbc", "d", "a")); + + EXPECT_EQ("b", SubstVar("b", "aa", "a")); + EXPECT_EQ("bb", SubstVar("bb", "aa", "a")); + EXPECT_EQ("bbb", SubstVar("bbb", "aa", "a")); + + EXPECT_EQ("aa", SubstVar("aaaa", "aa", "a")); + EXPECT_EQ("aaaa", SubstVar("aa", "a", "aa")); + EXPECT_EQ("aaaa", SubstVar("aaaa", "a", "a")); + EXPECT_EQ("a a a a ", SubstVar("aaaa", "a", "a ")); + + EXPECT_EQ(" bb bb bb bb ", SubstVar(" a a a a ", "a", "bb")); + EXPECT_EQ(" bb bb bb bb ", SubstVar(" aaa aaa aaa aaa ", "aaa", "bb")); + EXPECT_EQ(" bb a bb a bb a bb ", SubstVar(" aaa a aaa a aaa a aaa ", "aaa", "bb")); + +} diff --git a/vendor/makefile b/vendor/makefile index 0701a03eb..ebf5787c8 100644 --- a/vendor/makefile +++ b/vendor/makefile @@ -5,7 +5,7 @@ SUBDIR=vendor # Bring in the default rules include ../buildlib/defaults.mak -all headers library binary program doc manpages debiandoc test update-po startup dirs: current +all headers library binary program doc manpages docbook test update-po startup dirs: current all: all/subdirs binary: binary/subdirs doc: doc/subdirs